diff --git a/.env.example b/.env.example deleted file mode 100644 index 5173132..0000000 --- a/.env.example +++ /dev/null @@ -1,17 +0,0 @@ -# Local NVIDIA NIM endpoint from the API reference examples. -ALCHEMI_BMD_BASE_URL=http://localhost:8000 - -# Optional. The client sends this as Authorization: Bearer if present. -# Use whichever variable name is already standard in your environment. -NGC_API_KEY= -NVIDIA_API_KEY= -ALCHEMI_BMD_API_KEY= - -# Request timeout in seconds. -ALCHEMI_BMD_TIMEOUT=120 - -# Optional Falsiflow public release readiness inputs. -FALSIFLOW_REPO_URL= -FALSIFLOW_PUBLIC_DEMO_URL= -FALSIFLOW_PIPX_VALIDATED=0 -FALSIFLOW_WINDOWS_VALIDATED=0 diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 5ea21ac..6e72fc8 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -6,13 +6,13 @@ body: - type: markdown attributes: value: | - Thanks for reporting a concrete failure. Please include commands and generated artifacts when you can. + Thanks for reporting a concrete failure. Please include the command and generated artifacts when you can. - type: textarea id: command attributes: label: Command or workflow - description: Paste the exact command, Make target, CI job, or browser workflow that failed. - placeholder: falsiflow release-check --out-dir data/falsiflow/release_check --force + description: Paste the exact command or CI job that failed. + placeholder: falsiflow check --config project.json --evidence evidence.csv --strict validations: required: true - type: textarea @@ -20,7 +20,7 @@ body: attributes: label: Expected result description: What status, artifact, report, or behavior did you expect? - placeholder: release_ready with package_ready, dist_ready, and release_validation_ready. + placeholder: claim_ready with claim_check.json, claim_check.md, and evidence_bundle.zip. validations: required: true - type: textarea @@ -28,7 +28,7 @@ body: attributes: label: Actual result description: Include the first failing status, traceback, report excerpt, or CI link. - placeholder: release_blocked because sdist_required_files failed. + placeholder: claim_blocked because acceptance_rules failed. validations: required: true - type: textarea @@ -36,15 +36,15 @@ body: attributes: label: Environment description: Include OS, Python version, install method, and whether this was local, pipx, or CI. - placeholder: macOS 15, Python 3.12, editable install with python3 -m pip install -e . + placeholder: macOS 15, Python 3.12, pipx install falsiflow validations: required: true - type: textarea id: artifacts attributes: label: Relevant artifacts - description: Link or paste paths for release_check.json, adoption_check.json, claim_check.json, bundle verification, or template verification reports. - placeholder: data/falsiflow/release_check/release_check.json + description: Link or paste paths for claim_check.json, claim_check.md, or evidence_bundle.zip. + placeholder: falsiflow_out/claim_check.json validations: required: false - type: checkboxes @@ -52,7 +52,7 @@ body: attributes: label: Checks before filing options: - - label: I checked that this is not a claim that Falsiflow should treat as scientific proof, safety proof, regulatory approval, or clinical validation. + - label: I checked that this is a claim-readiness issue, not a request for Falsiflow to prove model quality, scientific truth, safety, or regulatory approval. required: true - label: I removed secrets, private raw data, and credentials from shared logs or artifacts. required: true diff --git a/.github/ISSUE_TEMPLATE/claim_gate_request.yml b/.github/ISSUE_TEMPLATE/claim_gate_request.yml deleted file mode 100644 index 777350c..0000000 --- a/.github/ISSUE_TEMPLATE/claim_gate_request.yml +++ /dev/null @@ -1,58 +0,0 @@ -name: Claim gate or template request -description: Request a new evidence-gated workflow, starter template, or template review. -title: "[Claim gate]: " -labels: ["template", "evidence-gate", "needs-triage"] -body: - - type: textarea - id: decision - attributes: - label: Decision to gate - description: What claim, handoff, or project decision should Falsiflow block until evidence is ready? - placeholder: Advance a coating candidate only when adhesion, cytotoxicity, impedance drift, and source provenance pass configured thresholds. - validations: - required: true - - type: textarea - id: evidence - attributes: - label: Required evidence - description: List the evidence rows, metadata, source files, and derived metrics this gate needs. - placeholder: adhesion_mpa with raw test export, cytotoxicity_percent with lab report source, impedance_drift_percent derived from day 0 and day 30 measurements. - validations: - required: true - - type: textarea - id: thresholds - attributes: - label: Acceptance rules - description: Describe the thresholds or review rules that should control claim_ready. - placeholder: adhesion_mpa >= 2.0, cytotoxicity_percent <= 10, impedance_drift_percent <= 15, every required source file present. - validations: - required: true - - type: dropdown - id: stage - attributes: - label: Current stage - options: - - Idea only - - Draft project.json exists - - Template files exist - - Template pack exists - - Template release bundle exists - validations: - required: true - - type: textarea - id: artifacts - attributes: - label: Existing artifacts - description: Link or describe any project.json, evidence CSV, raw source file, template pack, lockfile, attestation, policy, release bundle, or verification report. - placeholder: examples/falsiflow/my_template/project.json and evidence_pass_demo.csv - validations: - required: false - - type: checkboxes - id: boundaries - attributes: - label: Responsible-use boundary - options: - - label: I understand `claim_ready` means supplied evidence passed configured gates, not that the underlying scientific or commercial claim is independently true. - required: true - - label: I can provide non-sensitive sample evidence or sanitized fixtures for tests. - required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index c55a7bb..14c4c27 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,8 +1,8 @@ blank_issues_enabled: false contact_links: - - name: Responsible-use boundary - url: https://github.com/AzurLiu/falsiflow/blob/main/RESPONSIBLE_USE.md - about: Read how to interpret Falsiflow readiness before relying on a claim. + - name: Claim-readiness boundary + url: https://github.com/AzurLiu/falsiflow#what-it-is--is-not + about: Read what Falsiflow does and does not prove before relying on a claim. - name: Security and integrity reports url: https://github.com/AzurLiu/falsiflow/blob/main/SECURITY.md - about: Report provenance, bundle verification, path handling, or supply-chain issues privately. + about: Report provenance, bundle verification, path handling, or packaging issues privately. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 04a2f1d..adcaf1c 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,5 +1,5 @@ name: Feature request -description: Propose a CLI, template, documentation, or workflow improvement. +description: Propose a focused improvement to the core claim gate. title: "[Feature]: " labels: ["enhancement", "needs-triage"] body: @@ -7,16 +7,16 @@ body: id: problem attributes: label: Problem - description: What adoption, review, template-authoring, or evidence-gate problem should this solve? - placeholder: New users can run the quickstart, but template authors need a clearer install verification path. + description: What numeric-claim review or CI-gate problem should this solve? + placeholder: Reviewers need a clearer blocker when a metric row is missing baseline evidence. validations: required: true - type: textarea id: proposal attributes: label: Proposed change - description: Describe the command, report, template, documentation, or CI behavior you want. - placeholder: Add a command that verifies a template release bundle and writes a Markdown review card. + description: Describe the CLI, report, Action, schema, or packaging behavior you want. + placeholder: Add a concise blocker reason for missing source_file references in claim_check.md. validations: required: true - type: dropdown @@ -24,11 +24,11 @@ body: attributes: label: Area options: - - First-run experience - - Audit reports - - Starter templates - - Release and packaging - - Local browser app + - Core claim gate + - Evidence schema + - GitHub Action + - Reports and bundle + - Packaging - Documentation - Security or provenance validations: @@ -38,7 +38,7 @@ body: attributes: label: Success criteria description: What command, artifact, status, or documentation would show the feature is complete? - placeholder: adoption-check reports adoption_ready and release-check still reports release_ready. + placeholder: falsiflow check blocks the bad evidence row and reports the missing source_file reason. validations: required: true - type: checkboxes @@ -46,7 +46,7 @@ body: attributes: label: Contribution path options: - - label: I can help test this with `falsiflow quickstart`, `falsiflow doctor`, `falsiflow adoption-check`, or `falsiflow release-check`. + - label: I can test this with `falsiflow check` on a small config and evidence CSV. required: false - label: I can open a pull request using `.github/PULL_REQUEST_TEMPLATE.md`. required: false diff --git a/.github/ISSUE_TEMPLATE/launch_feedback.yml b/.github/ISSUE_TEMPLATE/launch_feedback.yml deleted file mode 100644 index eb0ea35..0000000 --- a/.github/ISSUE_TEMPLATE/launch_feedback.yml +++ /dev/null @@ -1,66 +0,0 @@ -name: Launch feedback -description: Report feedback from trying Falsiflow after a public launch post. -title: "[Launch feedback]: " -labels: ["launch", "needs-triage"] -body: - - type: markdown - attributes: - value: | - Use this for public-launch feedback, first-run confusion, install friction, - positioning questions, or unclear demo proof. Do not attach private - evidence files or sensitive source data. - - type: input - id: entry-point - attributes: - label: Entry point - description: Where did you first try or read about Falsiflow? - placeholder: "README, PyPI, public demo, Show HN, Reddit, LinkedIn, downstream PR" - validations: - required: true - - type: dropdown - id: feedback-type - attributes: - label: Feedback type - options: - - Install or first-run problem - - README or positioning confusion - - Public demo or downstream PR confusion - - GitHub Action adoption question - - Template or evidence-contract request - - Other launch feedback - validations: - required: true - - type: textarea - id: what-happened - attributes: - label: What happened? - description: Describe the exact confusion, failure, missing artifact, or unclear claim. - placeholder: "I expected ..., but saw ..." - validations: - required: true - - type: textarea - id: reproduction - attributes: - label: Commands or links - description: Paste commands, public links, or the GitHub Action snippet involved. - placeholder: | - pipx install falsiflow - falsiflow quickstart --template ai_claim_evaluation --out ai_claim_review --strict - validations: - required: false - - type: textarea - id: expected-improvement - attributes: - label: Expected improvement - description: What change would have made this clear or easy to verify? - validations: - required: false - - type: checkboxes - id: boundary - attributes: - label: Boundary check - options: - - label: I did not include private evidence files, secrets, or sensitive source data. - required: true - - label: I understand `claim_ready` means the configured evidence gate passed, not that the claim is scientifically or commercially true. - required: true diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 301d232..c2b7b66 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,27 +1,26 @@ ## What Changed -Describe the user-visible behavior, command, report, template, packaging, or documentation change. +Describe the user-visible change to `falsiflow check`, the GitHub Action, reports, packaging, or docs. ## Verification Paste the commands you ran and the final status: ```bash -python3 -m py_compile falsiflow/core.py falsiflow/cli.py falsiflow/adapters.py falsiflow/api.py falsiflow/mcp_server.py falsiflow/casebook_check.py scripts/falsiflow.py scripts/falsiflow_tests/regress_falsiflow_core.py +python3 -m py_compile falsiflow/core.py falsiflow/bundle.py falsiflow/claim_check.py falsiflow/cli.py scripts/falsiflow.py scripts/falsiflow_tests/regress_falsiflow_core.py python3 scripts/falsiflow_tests/regress_falsiflow_core.py -falsiflow adoption-check --out-dir data/falsiflow/adoption_check --force -falsiflow release-check --out-dir data/falsiflow/release_check --force +python3 -m build +python3 -m twine check dist/* ``` ## Evidence Boundary -- [ ] This change does not make `claim_ready` bypass missing provenance, placeholder evidence, malformed configuration, or failed gates. -- [ ] New public commands or JSON fields are documented and covered by tests or release-check expectations. -- [ ] Template distribution changes were checked with `template-check`, `template-pack`, `verify-template-pack`, `template-release`, `verify-template-release`, and `template-install` where applicable. -- [ ] Security-sensitive changes preserve bundle verification, SHA-256 integrity, path handling, and source-file provenance. -- [ ] Responsible use remains clear: Falsiflow readiness is not proof of safety, efficacy, regulatory compliance, or experimental truth. +- [ ] This change does not let `claim_ready` bypass missing provenance, placeholder evidence, malformed config, failed thresholds, or bundle verification. +- [ ] New public CLI or Action behavior is covered by a regression test or smoke check. +- [ ] The public surface remains limited to `check` and `schema`; compatibility aliases stay hidden. +- [ ] Shared artifacts and logs do not include secrets, credentials, or private raw data. ## Release Impact -- [ ] `CHANGELOG.md`, `README.md`, `RELEASE.md`, `SECURITY.md`, or `RESPONSIBLE_USE.md` were updated when relevant. -- [ ] `adoption-check` and `release-check` pass, or this PR explains why they cannot run in the current environment. +- [ ] `README.md`, `CHANGELOG.md`, `SECURITY.md`, or `CONTRIBUTING.md` were updated when relevant. +- [ ] This PR does not reintroduce launch, demo, discovery, MCP, template marketplace, or release/adoption automation systems. diff --git a/.github/workflows/falsiflow-ai-eval-demo.yml b/.github/workflows/falsiflow-ai-eval-demo.yml deleted file mode 100644 index 5cf7b6f..0000000 --- a/.github/workflows/falsiflow-ai-eval-demo.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: AI Eval Claim Gate Demo - -on: - pull_request: - paths: - - "falsiflow_ai_eval/**" - - ".github/workflows/falsiflow-ai-eval-demo.yml" - -jobs: - claim-gate: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v6 - - - name: Run Falsiflow claim gate - id: falsiflow - uses: AzurLiu/falsiflow@v0.1.29 - with: - mode: claim-check - project-dir: falsiflow_ai_eval - evidence: falsiflow_ai_eval/evidence.csv - out-dir: data/falsiflow/ai_eval_claim_check - strict: "true" - - - name: Upload Falsiflow reports - if: always() - uses: actions/upload-artifact@v7 - with: - name: falsiflow-ai-eval-claim-check - path: | - ${{ steps.falsiflow.outputs.summary-json }} - ${{ steps.falsiflow.outputs.summary-md }} - data/falsiflow/ai_eval_claim_check/evidence_bundle.zip - data/falsiflow/ai_eval_claim_check/evidence_bundle_verify.md diff --git a/.github/workflows/falsiflow-cross-platform.yml b/.github/workflows/falsiflow-cross-platform.yml index 1891ced..a8915a9 100644 --- a/.github/workflows/falsiflow-cross-platform.yml +++ b/.github/workflows/falsiflow-cross-platform.yml @@ -24,46 +24,22 @@ jobs: - windows-latest steps: - - name: Checkout public repository - shell: bash - run: | - git init . - git remote add origin "https://github.com/${GITHUB_REPOSITORY}.git" - git fetch --no-tags --depth=1 origin "+${GITHUB_REF}:${GITHUB_REF}" - git checkout --detach "${GITHUB_SHA}" + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: python-version: "3.11" - name: Compile run: | - python -m py_compile falsiflow/core.py falsiflow/cli.py falsiflow/adapters.py falsiflow/api.py falsiflow/mcp_server.py falsiflow/release.py falsiflow/adoption.py falsiflow/casebook_check.py falsiflow/bundle.py falsiflow/browser_demo.py falsiflow/demo.py falsiflow/discovery.py falsiflow/local_server.py falsiflow/public_release.py falsiflow/claim_check.py falsiflow/doctor.py falsiflow/quickstart.py falsiflow/scaffold.py falsiflow/template_discovery.py falsiflow/template_gallery.py falsiflow/template_check.py falsiflow/template_pack.py falsiflow/template_registry.py falsiflow/template_provenance.py falsiflow/template_release.py falsiflow/template_install.py scripts/falsiflow.py scripts/falsiflow_tests/regress_falsiflow_core.py - - name: Local installer smoke (Unix) - if: runner.os != 'Windows' - shell: bash - run: | - scripts/install_local.sh --from-local . --prefix "$RUNNER_TEMP/falsiflow_install" --check - - name: Local installer smoke (Windows) - if: runner.os == 'Windows' - shell: pwsh - run: | - ./scripts/install_local.ps1 -FromLocal . -Prefix "$env:RUNNER_TEMP/falsiflow_install" -Check - - name: pipx smoke - shell: bash - run: | - python -m pip install --user pipx - python -m pipx install --force . - python -m pipx run --spec . falsiflow selftest --json > "$RUNNER_TEMP/falsiflow_pipx_selftest.json" - - name: Browser entry smoke + python -m py_compile falsiflow/core.py falsiflow/bundle.py falsiflow/claim_check.py falsiflow/cli.py scripts/falsiflow.py scripts/falsiflow_tests/regress_falsiflow_core.py + - name: Check ready evidence shell: bash run: | - python scripts/falsiflow.py start --out-dir "$RUNNER_TEMP/falsiflow_start" --check --json - python scripts/falsiflow.py demo-package --out-dir "$RUNNER_TEMP/falsiflow_public_demo" --force --json - - name: External readiness smoke + python scripts/falsiflow.py check --config examples/minimal_numeric_claim/project.json --evidence examples/minimal_numeric_claim/evidence_ready.csv --out-dir "$RUNNER_TEMP/falsiflow_ready" --strict --force + - name: Check blocked evidence shell: bash - env: - FALSIFLOW_REPO_URL: https://github.com/${{ github.repository }} - FALSIFLOW_PUBLIC_DEMO_URL: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/ - FALSIFLOW_PIPX_VALIDATED: "1" - FALSIFLOW_WINDOWS_VALIDATED: ${{ runner.os == 'Windows' && '1' || '0' }} run: | - python scripts/falsiflow.py external-check --out-dir "$RUNNER_TEMP/falsiflow_external_check" --force --json + set +e + python scripts/falsiflow.py check --config examples/minimal_numeric_claim/project.json --evidence examples/minimal_numeric_claim/evidence_placeholder.csv --out-dir "$RUNNER_TEMP/falsiflow_blocked" --strict --force + status="$?" + set -e + test "$status" = "2" diff --git a/.github/workflows/falsiflow-external-evidence.yml b/.github/workflows/falsiflow-external-evidence.yml deleted file mode 100644 index bc5d03c..0000000 --- a/.github/workflows/falsiflow-external-evidence.yml +++ /dev/null @@ -1,320 +0,0 @@ -name: Falsiflow External Evidence - -on: - workflow_dispatch: - inputs: - public_demo_url: - description: "Hosted public demo URL to verify, for example https://OWNER.github.io/falsiflow/" - required: true - type: string - repo_url: - description: "Public repository URL. Defaults to the current GitHub repository." - required: false - type: string - pypi_package_url: - description: "Published PyPI project URL, for example https://pypi.org/project/falsiflow/" - required: true - type: string - expected_version: - description: "Expected PyPI package version. Defaults to pyproject.toml." - required: false - type: string - -permissions: - contents: read - -jobs: - pipx-smoke: - runs-on: ubuntu-latest - steps: - - name: Checkout public repository - shell: bash - run: | - git init . - git remote add origin "https://github.com/${GITHUB_REPOSITORY}.git" - git fetch --no-tags --depth=1 origin "+${GITHUB_REF}:${GITHUB_REF}" - git checkout --detach "${GITHUB_SHA}" - - uses: actions/setup-python@v6 - with: - python-version: "3.11" - - name: pipx install and browser-entry smoke - shell: bash - run: | - python -m pip install --user pipx - python -m pipx install --force . - python -m pipx run --spec . falsiflow start --out-dir "$RUNNER_TEMP/falsiflow_start" --check --json > "$RUNNER_TEMP/falsiflow_pipx_start.json" - - name: Upload pipx smoke artifact - uses: actions/upload-artifact@v7 - with: - name: falsiflow-pipx-smoke - path: ${{ runner.temp }}/falsiflow_pipx_start.json - - pipx-public-package: - runs-on: ubuntu-latest - steps: - - uses: actions/setup-python@v6 - with: - python-version: "3.11" - - name: pipx public package smoke - shell: bash - run: | - python -m pip install --user pipx - python -m pipx run --spec falsiflow falsiflow start --out-dir "$RUNNER_TEMP/falsiflow_public_package_start" --check --json > "$RUNNER_TEMP/falsiflow_public_package_start.json" - python -m pipx run --spec falsiflow falsiflow mcp --selftest --json > "$RUNNER_TEMP/falsiflow_public_package_mcp_selftest.json" - python -m pipx run --spec falsiflow falsiflow quickstart --template ai_claim_evaluation --out "$RUNNER_TEMP/falsiflow_public_package_first_run" --strict --json > "$RUNNER_TEMP/falsiflow_public_package_first_run_quickstart.json" - python -m pipx run --spec falsiflow falsiflow doctor --project-dir "$RUNNER_TEMP/falsiflow_public_package_first_run" --strict --json > "$RUNNER_TEMP/falsiflow_public_package_first_run_doctor.json" - python -m pipx run --spec falsiflow falsiflow claim-check --project-dir "$RUNNER_TEMP/falsiflow_public_package_first_run" --strict --force --json > "$RUNNER_TEMP/falsiflow_public_package_claim_check.json" - - name: Upload public package pipx smoke artifact - uses: actions/upload-artifact@v7 - with: - name: falsiflow-pipx-public-package-smoke - path: | - ${{ runner.temp }}/falsiflow_public_package_start.json - ${{ runner.temp }}/falsiflow_public_package_mcp_selftest.json - ${{ runner.temp }}/falsiflow_public_package_first_run_quickstart.json - ${{ runner.temp }}/falsiflow_public_package_first_run_doctor.json - ${{ runner.temp }}/falsiflow_public_package_claim_check.json - - windows-powershell: - runs-on: windows-latest - steps: - - name: Checkout public repository - shell: bash - run: | - git init . - git remote add origin "https://github.com/${GITHUB_REPOSITORY}.git" - git fetch --no-tags --depth=1 origin "+${GITHUB_REF}:${GITHUB_REF}" - git checkout --detach "${GITHUB_SHA}" - - uses: actions/setup-python@v6 - with: - python-version: "3.11" - - name: PowerShell installer smoke - shell: pwsh - run: | - ./scripts/install_local.ps1 -FromLocal . -Prefix "$env:RUNNER_TEMP/falsiflow_install" -Check - - evidence-summary: - needs: - - pipx-smoke - - pipx-public-package - - windows-powershell - runs-on: ubuntu-latest - steps: - - name: Checkout public repository - shell: bash - run: | - git init . - git remote add origin "https://github.com/${GITHUB_REPOSITORY}.git" - git fetch --no-tags --depth=1 origin "+${GITHUB_REF}:${GITHUB_REF}" - git checkout --detach "${GITHUB_SHA}" - - uses: actions/setup-python@v6 - with: - python-version: "3.11" - - name: Verify hosted demo URL - shell: bash - env: - FALSIFLOW_PUBLIC_DEMO_URL: ${{ inputs.public_demo_url }} - run: | - test -n "$FALSIFLOW_PUBLIC_DEMO_URL" - curl -fsSL "$FALSIFLOW_PUBLIC_DEMO_URL" -o "$RUNNER_TEMP/falsiflow_public_demo_index.html" - grep -E "Falsiflow|Launchpad|Try" "$RUNNER_TEMP/falsiflow_public_demo_index.html" - - name: Verify PyPI project URL - shell: bash - env: - FALSIFLOW_PYPI_PACKAGE_URL: ${{ inputs.pypi_package_url }} - FALSIFLOW_EXPECTED_VERSION: ${{ inputs.expected_version }} - run: | - test -n "$FALSIFLOW_PYPI_PACKAGE_URL" - python - <<'PY' - import os - from urllib.parse import urlparse - - url = os.environ["FALSIFLOW_PYPI_PACKAGE_URL"].strip() - parsed = urlparse(url) - expected_path = "/project/falsiflow/" - if parsed.scheme != "https" or parsed.netloc != "pypi.org" or parsed.path.rstrip("/") + "/" != expected_path: - raise SystemExit(f"Expected https://pypi.org/project/falsiflow/, got {url}") - PY - python - <<'PY' - import json - import os - import pathlib - import time - import tomllib - import urllib.request - - root = pathlib.Path.cwd() - expected_version = os.environ.get("FALSIFLOW_EXPECTED_VERSION", "").strip() - if not expected_version: - with (root / "pyproject.toml").open("rb") as handle: - expected_version = str(tomllib.load(handle).get("project", {}).get("version", "")).strip() - if not expected_version: - raise SystemExit("Expected PyPI package version was empty") - - runner_temp = pathlib.Path(os.environ["RUNNER_TEMP"]) - request = urllib.request.Request( - "https://pypi.org/pypi/falsiflow/json", - headers={"Cache-Control": "no-cache", "Pragma": "no-cache"}, - ) - payload = {} - published_version = "" - for attempt in range(1, 13): - with urllib.request.urlopen(request, timeout=20) as response: - payload = json.loads(response.read().decode("utf-8")) - info = payload.get("info", {}) - if str(info.get("name", "")).lower() != "falsiflow": - raise SystemExit("PyPI JSON did not describe the falsiflow package") - published_version = str(info.get("version", "")).strip() - if not published_version: - raise SystemExit("PyPI JSON did not include a released version") - if published_version == expected_version: - break - print(f"PyPI JSON attempt {attempt}: expected {expected_version}, got {published_version}; retrying...") - time.sleep(5) - else: - raise SystemExit(f"Expected PyPI version {expected_version}, got {published_version}") - - (runner_temp / "falsiflow_pypi_project.json").write_text(json.dumps(payload, indent=2, sort_keys=True), encoding="utf-8") - (runner_temp / "falsiflow_expected_version.txt").write_text(expected_version, encoding="utf-8") - (runner_temp / "falsiflow_pypi_version.txt").write_text(published_version, encoding="utf-8") - PY - - name: Write structured external evidence - shell: bash - env: - FALSIFLOW_REPO_URL_INPUT: ${{ inputs.repo_url }} - FALSIFLOW_PUBLIC_DEMO_URL: ${{ inputs.public_demo_url }} - FALSIFLOW_PYPI_PACKAGE_URL: ${{ inputs.pypi_package_url }} - FALSIFLOW_EXPECTED_VERSION: ${{ inputs.expected_version }} - FALSIFLOW_WORKFLOW_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} - FALSIFLOW_REPOSITORY: ${{ github.repository }} - run: | - python - <<'PY' - import json - import os - import pathlib - import tomllib - - runner_temp = pathlib.Path(os.environ["RUNNER_TEMP"]) - - def text_file_or_empty(name: str) -> str: - path = runner_temp / name - return path.read_text(encoding="utf-8").strip() if path.exists() else "" - - expected_version = text_file_or_empty("falsiflow_expected_version.txt") or os.environ.get("FALSIFLOW_EXPECTED_VERSION", "").strip() - if not expected_version: - with pathlib.Path("pyproject.toml").open("rb") as handle: - expected_version = str(tomllib.load(handle).get("project", {}).get("version", "")).strip() - published_version = text_file_or_empty("falsiflow_pypi_version.txt") - if not published_version: - payload = json.loads((runner_temp / "falsiflow_pypi_project.json").read_text(encoding="utf-8")) - published_version = str(payload.get("info", {}).get("version", "")).strip() - - repo_url = os.environ.get("FALSIFLOW_REPO_URL_INPUT") or f"https://github.com/{os.environ['FALSIFLOW_REPOSITORY']}" - demo_url = os.environ["FALSIFLOW_PUBLIC_DEMO_URL"] - pypi_url = os.environ["FALSIFLOW_PYPI_PACKAGE_URL"] - workflow_url = os.environ["FALSIFLOW_WORKFLOW_URL"] - evidence = { - "status": "external_evidence_ready", - "version": 1, - "instructions": "Generated by the Falsiflow External Evidence workflow after public demo, PyPI package, checkout pipx, public-package pipx, public-package first-run quickstart/doctor, public-package claim-check, public-package MCP selftest, and Windows smoke checks passed.", - "checks": { - "public_repo_url": { - "status": "passed", - "url": repo_url, - "evidence_url": workflow_url, - "notes": "Workflow ran from the public GitHub repository.", - }, - "public_demo_url": { - "status": "passed", - "url": demo_url, - "evidence_url": workflow_url, - "artifact": "falsiflow_public_demo_index.html", - "notes": "curl fetched the hosted static demo and found Falsiflow launch text.", - }, - "pypi_package_url": { - "status": "passed", - "url": pypi_url, - "evidence_url": workflow_url, - "artifact": "falsiflow_pypi_project.json", - "verification_url": "https://pypi.org/pypi/falsiflow/json", - "expected_version": expected_version, - "published_version": published_version, - "notes": "curl fetched the PyPI JSON API and confirmed the published package name and version matched the expected release.", - }, - "pipx_smoke": { - "status": "passed", - "command": "python -m pipx install --force . && python -m pipx run --spec . falsiflow start --check --json", - "workflow_url": workflow_url, - "artifact": "falsiflow_pipx_start.json", - "notes": "Ubuntu checkout-based pipx install and browser-entry smoke passed.", - }, - "pipx_public_package": { - "status": "passed", - "command": "python -m pipx run --spec falsiflow falsiflow start --check --json", - "workflow_url": workflow_url, - "artifact": "falsiflow_public_package_start.json", - "notes": "Ubuntu pipx run from the published package passed.", - }, - "mcp_public_package_selftest": { - "status": "passed", - "command": "python -m pipx run --spec falsiflow falsiflow mcp --selftest --json", - "workflow_url": workflow_url, - "artifact": "falsiflow_public_package_mcp_selftest.json", - "notes": "Ubuntu pipx run from the published package proved the local stdio MCP selftest without opening a network listener.", - }, - "public_package_first_run": { - "status": "passed", - "command": "python -m pipx run --spec falsiflow falsiflow quickstart --template ai_claim_evaluation --strict --json && python -m pipx run --spec falsiflow falsiflow doctor --strict --json", - "workflow_url": workflow_url, - "artifact": "falsiflow_public_package_first_run_quickstart.json and falsiflow_public_package_first_run_doctor.json", - "notes": "Ubuntu pipx run from the published package proved the README first-run quickstart and doctor path reaches ready status.", - }, - "public_package_claim_check": { - "status": "passed", - "command": "python -m pipx run --spec falsiflow falsiflow claim-check --project-dir --strict --force --json", - "workflow_url": workflow_url, - "artifact": "falsiflow_public_package_claim_check.json", - "claim_check_status": "claim_check_ready", - "bundle_verification_status": "bundle_verified", - "notes": "Ubuntu pipx run from the published package proved the generated AI eval starter claim gate reaches claim_check_ready and bundle_verified.", - }, - "windows_powershell": { - "status": "passed", - "command": ".\\scripts\\install_local.ps1 -FromLocal . -Check", - "workflow_url": workflow_url, - "notes": "Windows PowerShell installer smoke passed.", - }, - }, - } - pathlib.Path("falsiflow_external_evidence.json").write_text(json.dumps(evidence, indent=2, sort_keys=True), encoding="utf-8") - PY - - name: Verify external readiness with structured evidence - shell: bash - env: - FALSIFLOW_REPO_URL: ${{ inputs.repo_url || format('https://github.com/{0}', github.repository) }} - FALSIFLOW_PUBLIC_DEMO_URL: ${{ inputs.public_demo_url }} - FALSIFLOW_PYPI_PACKAGE_URL: ${{ inputs.pypi_package_url }} - run: | - python scripts/falsiflow.py external-check \ - --out-dir falsiflow_external_check \ - --evidence falsiflow_external_evidence.json \ - --force \ - --strict \ - --json > falsiflow_external_readiness.stdout.json - - name: Upload external evidence artifact - uses: actions/upload-artifact@v7 - with: - name: falsiflow-external-evidence - path: | - falsiflow_external_evidence.json - falsiflow_external_readiness.stdout.json - falsiflow_external_check/external_readiness.json - falsiflow_external_check/external_readiness.md - ${{ runner.temp }}/falsiflow_public_demo_index.html - ${{ runner.temp }}/falsiflow_pypi_project.json - ${{ runner.temp }}/falsiflow_expected_version.txt - ${{ runner.temp }}/falsiflow_pypi_version.txt - ${{ runner.temp }}/falsiflow_public_package_mcp_selftest.json - ${{ runner.temp }}/falsiflow_public_package_first_run_quickstart.json - ${{ runner.temp }}/falsiflow_public_package_first_run_doctor.json - ${{ runner.temp }}/falsiflow_public_package_claim_check.json diff --git a/.github/workflows/falsiflow-pages.yml b/.github/workflows/falsiflow-pages.yml deleted file mode 100644 index fce7c27..0000000 --- a/.github/workflows/falsiflow-pages.yml +++ /dev/null @@ -1,62 +0,0 @@ -name: Falsiflow Pages Demo - -on: - workflow_dispatch: - push: - branches: [main] - paths: - - ".github/workflows/falsiflow-pages.yml" - - "falsiflow/**" - - "scripts/falsiflow.py" - - "pyproject.toml" - - "docs/public_demo/**" - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: pages - cancel-in-progress: true - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout public repository - shell: bash - run: | - git init . - git remote add origin "https://github.com/${GITHUB_REPOSITORY}.git" - git fetch --no-tags --depth=1 origin "+${GITHUB_REF}:${GITHUB_REF}" - git checkout --detach "${GITHUB_SHA}" - - uses: actions/setup-python@v6 - with: - python-version: "3.11" - - name: Configure Pages - uses: actions/configure-pages@v6 - with: - enablement: true - - name: Build public demo package - run: | - python scripts/falsiflow.py demo-package \ - --out-dir public_demo \ - --force \ - --json > /tmp/falsiflow_demo_package.json - cp /tmp/falsiflow_demo_package.json public_demo/demo_package_summary.stdout.json - - name: Upload Pages artifact - uses: actions/upload-pages-artifact@v5 - with: - path: public_demo - - deploy: - needs: build - runs-on: ubuntu-latest - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v5 diff --git a/.github/workflows/falsiflow-publish.yml b/.github/workflows/falsiflow-publish.yml index 1504679..3625f67 100644 --- a/.github/workflows/falsiflow-publish.yml +++ b/.github/workflows/falsiflow-publish.yml @@ -14,13 +14,7 @@ jobs: build-dist: runs-on: ubuntu-latest steps: - - name: Checkout public repository - shell: bash - run: | - git init . - git remote add origin "https://github.com/${GITHUB_REPOSITORY}.git" - git fetch --no-tags --depth=1 origin "+${GITHUB_REF}:${GITHUB_REF}" - git checkout --detach "${GITHUB_SHA}" + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: python-version: "3.11" @@ -29,11 +23,10 @@ jobs: python -m pip install --upgrade build twine python -m build python -m twine check dist/* - - name: Release check + - name: Installed wheel smoke run: | - python scripts/falsiflow.py release-check \ - --out-dir /tmp/falsiflow_release_check \ - --json > /tmp/falsiflow_release_check.json + python -m pip install dist/*.whl + falsiflow check --config examples/minimal_numeric_claim/project.json --evidence examples/minimal_numeric_claim/evidence_ready.csv --out-dir /tmp/falsiflow_wheel_ready --strict --force - name: Upload distribution artifact uses: actions/upload-artifact@v7 with: diff --git a/.github/workflows/falsiflow.yml b/.github/workflows/falsiflow.yml index c2ba5ce..518be09 100644 --- a/.github/workflows/falsiflow.yml +++ b/.github/workflows/falsiflow.yml @@ -8,382 +8,56 @@ on: - master jobs: - regression: + core: runs-on: ubuntu-latest steps: - - name: Checkout public repository - shell: bash - run: | - git init . - git remote add origin "https://github.com/${GITHUB_REPOSITORY}.git" - git fetch --no-tags --depth=1 origin "+${GITHUB_REF}:${GITHUB_REF}" - git checkout --detach "${GITHUB_SHA}" + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: python-version: "3.11" + - name: Compile run: | python -m py_compile \ falsiflow/core.py \ - falsiflow/cli.py \ - falsiflow/adapters.py \ - falsiflow/api.py \ - falsiflow/mcp_server.py \ - falsiflow/release.py \ - falsiflow/adoption.py \ - falsiflow/casebook_check.py \ falsiflow/bundle.py \ - falsiflow/browser_demo.py \ - falsiflow/demo.py \ - falsiflow/discovery.py \ - falsiflow/local_server.py \ - falsiflow/public_release.py \ falsiflow/claim_check.py \ - falsiflow/doctor.py \ - falsiflow/quickstart.py \ - falsiflow/scaffold.py \ - falsiflow/template_discovery.py \ - falsiflow/template_gallery.py \ - falsiflow/template_check.py \ - falsiflow/template_pack.py \ - falsiflow/template_registry.py \ - falsiflow/template_provenance.py \ - falsiflow/template_release.py \ - falsiflow/template_install.py \ + falsiflow/cli.py \ scripts/falsiflow.py \ scripts/falsiflow_tests/regress_falsiflow_core.py + - name: Regression run: python scripts/falsiflow_tests/regress_falsiflow_core.py - - name: Schema contract - run: | - python scripts/falsiflow.py schema --kind project > /tmp/falsiflow_project_schema.json - python scripts/falsiflow.py schema --kind evidence-row > /tmp/falsiflow_evidence_row_schema.json - python scripts/falsiflow.py schema --kind evidence-record > /tmp/falsiflow_evidence_record_schema.json - python scripts/falsiflow.py schema --kind candidate-recipe > /tmp/falsiflow_candidate_recipe_schema.json - python scripts/falsiflow.py schema --kind discovery-summary > /tmp/falsiflow_discovery_summary_schema.json - python scripts/falsiflow.py schema --kind claim-summary > /tmp/falsiflow_claim_summary_schema.json - python scripts/falsiflow.py schema --kind audit-review > /tmp/falsiflow_audit_review_schema.json - python scripts/falsiflow.py schema --kind portfolio-summary > /tmp/falsiflow_portfolio_summary_schema.json - python scripts/falsiflow.py schema --kind import-coverage > /tmp/falsiflow_import_coverage_schema.json - python scripts/falsiflow.py schema --kind source-manifest > /tmp/falsiflow_source_manifest_schema.json - python scripts/falsiflow.py schema --kind bundle-manifest > /tmp/falsiflow_bundle_manifest_schema.json - python scripts/falsiflow.py schema --kind bundle-verification > /tmp/falsiflow_bundle_verification_schema.json - python scripts/falsiflow.py schema --kind claim-check > /tmp/falsiflow_claim_check_schema.json - python scripts/falsiflow.py schema --kind quickstart-summary > /tmp/falsiflow_quickstart_summary_schema.json - python scripts/falsiflow.py schema --kind doctor-summary > /tmp/falsiflow_doctor_summary_schema.json - python scripts/falsiflow.py schema --kind demo-summary > /tmp/falsiflow_demo_summary_schema.json - python scripts/falsiflow.py schema --kind template-check > /tmp/falsiflow_template_check_schema.json - python scripts/falsiflow.py schema --kind template-pack-manifest > /tmp/falsiflow_template_pack_manifest_schema.json - python scripts/falsiflow.py schema --kind template-pack-verification > /tmp/falsiflow_template_pack_verification_schema.json - python scripts/falsiflow.py schema --kind template-install > /tmp/falsiflow_template_install_schema.json - python scripts/falsiflow.py schema --kind template-registry > /tmp/falsiflow_template_registry_schema.json - python scripts/falsiflow.py schema --kind template-lock > /tmp/falsiflow_template_lock_schema.json - python scripts/falsiflow.py schema --kind template-attestation > /tmp/falsiflow_template_attestation_schema.json - python scripts/falsiflow.py schema --kind template-attestation-verification > /tmp/falsiflow_template_attestation_verification_schema.json - python scripts/falsiflow.py schema --kind template-policy > /tmp/falsiflow_template_policy_schema.json - python scripts/falsiflow.py schema --kind template-policy-verification > /tmp/falsiflow_template_policy_verification_schema.json - python scripts/falsiflow.py schema --kind template-release > /tmp/falsiflow_template_release_schema.json - python scripts/falsiflow.py schema --kind template-release-verification > /tmp/falsiflow_template_release_verification_schema.json - python scripts/falsiflow.py schema --kind template-gallery > /tmp/falsiflow_template_gallery_schema.json - python scripts/falsiflow.py schema --kind casebook-check > /tmp/falsiflow_casebook_check_schema.json - python scripts/falsiflow.py schema --kind adoption-check > /tmp/falsiflow_adoption_check_schema.json - python scripts/falsiflow.py schema --kind release-check > /tmp/falsiflow_release_check_schema.json - python scripts/falsiflow.py schema --kind all --out /tmp/falsiflow_schemas.json - - name: Selftest - run: | - python scripts/falsiflow.py selftest \ - --json \ - --out-dir /tmp/falsiflow_selftest > /tmp/falsiflow_selftest.json - - name: Demo walkthrough - run: | - python scripts/falsiflow.py demo \ - --out-dir /tmp/falsiflow_demo \ - --json > /tmp/falsiflow_demo.json - - name: Quickstart + + - name: Minimal example smoke run: | - python scripts/falsiflow.py quickstart \ - --template biointerface_coatings \ - --out /tmp/falsiflow_quickstart \ - --strict \ - --json > /tmp/falsiflow_quickstart.json - - name: Reusable action smoke - uses: ./ - with: - mode: quickstart - template: ai_claim_evaluation - out-dir: /tmp/falsiflow_action_quickstart - strict: "true" - - name: Prepare reusable action local LLM import smoke - run: cp -R examples/local_llm_eval_import /tmp/falsiflow_local_llm_eval_import - - name: Reusable action local LLM import smoke + python scripts/falsiflow.py check --config examples/minimal_numeric_claim/project.json --evidence examples/minimal_numeric_claim/evidence_placeholder.csv --out-dir /tmp/falsiflow_placeholder --strict --force || test "$?" = "2" + python scripts/falsiflow.py check --config examples/minimal_numeric_claim/project.json --evidence examples/minimal_numeric_claim/evidence_blocked.csv --out-dir /tmp/falsiflow_blocked --strict --force || test "$?" = "2" + python scripts/falsiflow.py check --config examples/minimal_numeric_claim/project.json --evidence examples/minimal_numeric_claim/evidence_ready.csv --out-dir /tmp/falsiflow_ready --strict --force + + - name: Local action ready smoke uses: ./ with: - mode: evidence-import - working-directory: /tmp/falsiflow_local_llm_eval_import - profile: local-llm-eval - input: falsiflow_local_llm_eval/source_files/local_eval_results.jsonl - manifest: falsiflow_local_llm_eval/local_model_manifest.json - config: falsiflow_local_llm_eval/project.json - evidence: falsiflow_local_llm_eval/evidence.csv - source-file: source_files/local_eval_results.jsonl - out-dir: data/falsiflow/local_llm_import + config: examples/minimal_numeric_claim/project.json + evidence: examples/minimal_numeric_claim/evidence_ready.csv + out-dir: /tmp/falsiflow_action_ready strict: "true" - - name: Reusable action local LLM claim smoke + + - name: Local action blocked smoke + id: blocked-action + continue-on-error: true uses: ./ with: - mode: claim-check - working-directory: /tmp/falsiflow_local_llm_eval_import - project-dir: falsiflow_local_llm_eval - evidence: falsiflow_local_llm_eval/evidence.csv - out-dir: data/falsiflow/local_llm_claim_check + config: examples/minimal_numeric_claim/project.json + evidence: examples/minimal_numeric_claim/evidence_placeholder.csv + out-dir: /tmp/falsiflow_action_blocked strict: "true" - - name: Doctor - run: | - python scripts/falsiflow.py doctor \ - --project-dir /tmp/falsiflow_quickstart \ - --strict \ - --json > /tmp/falsiflow_doctor.json - - name: Template gallery - run: | - python scripts/falsiflow.py template-gallery \ - --out /tmp/falsiflow_template_gallery.md \ - --json-out /tmp/falsiflow_template_gallery.json \ - --json > /tmp/falsiflow_template_gallery_stdout.json - - name: Casebook check - run: | - python scripts/falsiflow.py casebook-check \ - --out-dir /tmp/falsiflow_casebook_check \ - --force \ - --json > /tmp/falsiflow_casebook_check.json - - name: Browser and discovery public interfaces - run: | - python scripts/falsiflow.py start \ - --out-dir /tmp/falsiflow_start \ - --check \ - --json > /tmp/falsiflow_start.json - python scripts/falsiflow.py demo-package \ - --out-dir /tmp/falsiflow_public_demo \ - --force \ - --json > /tmp/falsiflow_demo_package.json - python scripts/falsiflow.py external-check \ - --out-dir /tmp/falsiflow_external_check \ - --force \ - --json > /tmp/falsiflow_external_check.json - python scripts/falsiflow.py discover \ - --goal "MEA neural interface material" \ - --out-dir /tmp/falsiflow_discovery \ - --force \ - --json > /tmp/falsiflow_discovery.json - python scripts/falsiflow.py agent discover \ - --goal "MEA neural interface material" \ - --out-dir /tmp/falsiflow_agent_discovery \ - --force \ - --json > /tmp/falsiflow_agent_discovery.json - python scripts/falsiflow.py candidate rank \ - --goal "MEA neural interface material" \ - --out-dir /tmp/falsiflow_candidate_rank \ - --force \ - --json > /tmp/falsiflow_candidate_rank.json - python scripts/falsiflow.py assay-plan \ - --goal "MEA neural interface material" \ - --out-dir /tmp/falsiflow_assay_plan \ - --force \ - --json > /tmp/falsiflow_assay_plan.json - printf 'sample_id,measured_at,operator,ph_initial,ph_final\nsample_001,2026-05-25T09:00:00Z,ci,7.20,7.28\n' > /tmp/falsiflow_public_lab.csv - python scripts/falsiflow.py evidence import \ - --input /tmp/falsiflow_public_lab.csv \ - --out /tmp/falsiflow_public_evidence.csv \ - --gate-id h_a_medium_stability \ - --candidate-id candidate_a \ - --sample-id-column sample_id \ - --measured-at-column measured_at \ - --operator-or-agent-column operator \ - --field ph_initial \ - --field ph_final - - name: Adoption check - run: | - python scripts/falsiflow.py adoption-check \ - --out-dir /tmp/falsiflow_adoption_check \ - --skip-dist \ - --json > /tmp/falsiflow_adoption_check.json - - name: Template check - run: | - python scripts/falsiflow.py template-check \ - --template-dir examples/falsiflow/neural_materials \ - --out-dir /tmp/falsiflow_template_check \ - --json > /tmp/falsiflow_template_check.json - - name: Template pack - run: | - python scripts/falsiflow.py template-pack \ - --template-dir examples/falsiflow/neural_materials \ - --out-dir /tmp/falsiflow_template_pack \ - --zip-out /tmp/falsiflow_template_pack.zip \ - --json > /tmp/falsiflow_template_pack.json - python scripts/falsiflow.py verify-template-pack \ - --zip /tmp/falsiflow_template_pack.zip \ - --strict - python scripts/falsiflow.py template-registry \ - --pack-zip /tmp/falsiflow_template_pack.zip \ - --out /tmp/falsiflow_template_registry.json \ - --json > /tmp/falsiflow_template_registry_summary.json - python scripts/falsiflow.py template-lock \ - --registry /tmp/falsiflow_template_registry.json \ - --template neural_materials \ - --version 0.1.0 \ - --out /tmp/falsiflow_template_lock.json \ - --json > /tmp/falsiflow_template_lock_summary.json - python scripts/falsiflow.py template-attest \ - --subject /tmp/falsiflow_template_lock.json \ - --subject-type template-lock \ - --out /tmp/falsiflow_template_lock.attestation.json \ - --builder ci \ - --key-id ci-smoke \ - --signing-key falsiflow-ci-smoke-key \ - --json > /tmp/falsiflow_template_attestation.json - python scripts/falsiflow.py verify-template-attestation \ - --attestation /tmp/falsiflow_template_lock.attestation.json \ - --subject /tmp/falsiflow_template_lock.json \ - --signing-key falsiflow-ci-smoke-key \ - --strict \ - --json > /tmp/falsiflow_template_attestation_verification.json - python scripts/falsiflow.py template-policy \ - --lock /tmp/falsiflow_template_lock.json \ - --attestation /tmp/falsiflow_template_lock.attestation.json \ - --out /tmp/falsiflow_template_policy.json \ - --policy-id ci-neural-materials \ - --owner ci \ - --signing-key falsiflow-ci-smoke-key \ - --json > /tmp/falsiflow_template_policy_summary.json - python scripts/falsiflow.py verify-template-policy \ - --policy /tmp/falsiflow_template_policy.json \ - --lock /tmp/falsiflow_template_lock.json \ - --attestation /tmp/falsiflow_template_lock.attestation.json \ - --signing-key falsiflow-ci-smoke-key \ - --strict \ - --json > /tmp/falsiflow_template_policy_verification.json - python scripts/falsiflow.py template-release \ - --pack-zip /tmp/falsiflow_template_pack.zip \ - --registry /tmp/falsiflow_template_registry.json \ - --lock /tmp/falsiflow_template_lock.json \ - --attestation /tmp/falsiflow_template_lock.attestation.json \ - --policy /tmp/falsiflow_template_policy.json \ - --out /tmp/falsiflow_template_release.zip \ - --signing-key falsiflow-ci-smoke-key \ - --json > /tmp/falsiflow_template_release.json - python scripts/falsiflow.py verify-template-release \ - --release /tmp/falsiflow_template_release.zip \ - --signing-key falsiflow-ci-smoke-key \ - --out /tmp/falsiflow_template_release_verification.json \ - --report-out /tmp/falsiflow_template_release_verification.md \ - --strict \ - --json > /tmp/falsiflow_template_release_verification_stdout.json - python scripts/falsiflow.py template-install \ - --release /tmp/falsiflow_template_release.zip \ - --signing-key falsiflow-ci-smoke-key \ - --templates-dir /tmp/falsiflow_installed_templates \ - --json > /tmp/falsiflow_template_install.json - - name: Release check - run: | - python scripts/falsiflow.py release-check \ - --out-dir /tmp/falsiflow_release_check \ - --json > /tmp/falsiflow_release_check.json - - name: Scaffold smoke - run: | - python scripts/falsiflow.py scaffold \ - --out /tmp/falsiflow_custom_project \ - --project-id ci_custom_project \ - --claim-id ci_custom_claim \ - --claim-statement "CI custom claim has source-backed evidence." \ - --gate gate_a:score,replicate_score \ - --rule "gate_a:score:>=:1" \ - --json > /tmp/falsiflow_scaffold.json - python scripts/falsiflow.py validate \ - --config /tmp/falsiflow_custom_project/project.json \ - --strict - printf 'sample_id,score,replicate_score\nsample_001,2,3\n' > /tmp/falsiflow_custom_lab.csv - python scripts/falsiflow.py ingest-wide-csv \ - --input /tmp/falsiflow_custom_lab.csv \ - --out /tmp/falsiflow_custom_evidence.csv \ - --config /tmp/falsiflow_custom_project/project.json \ - --coverage-out /tmp/falsiflow_custom_coverage.json \ - --gate-id gate_a \ - --candidate-id candidate_a \ - --sample-id-column sample_id \ - --field score \ - --field replicate_score \ - --strict - python scripts/falsiflow.py template-scaffold \ - --out /tmp/falsiflow_generated_template \ - --template-id ci_generated_template \ - --claim-statement "CI generated template has source-backed evidence." \ - --gate gate_a:score,replicate_score \ - --rule "gate_a:score:>=:1" \ - --check-out-dir /tmp/falsiflow_generated_template_check \ - --json > /tmp/falsiflow_generated_template.json - - name: Template validation - run: | - python scripts/falsiflow.py templates - python scripts/falsiflow.py validate \ - --config examples/falsiflow/neural_materials/project.json \ - --strict - python scripts/falsiflow.py validate \ - --config examples/falsiflow/rfq_vendor_evidence/project.json \ - --strict - python scripts/falsiflow.py validate \ - --config examples/falsiflow/biointerface_coatings/project.json \ - --strict - python scripts/falsiflow.py validate \ - --config examples/falsiflow/wetware_support_hardware/project.json \ - --strict - - name: Demo audit - run: | - python scripts/falsiflow.py audit \ - --config examples/falsiflow/neural_materials/project.json \ - --evidence examples/falsiflow/neural_materials/evidence_pass_demo.csv \ - --out-dir /tmp/falsiflow_neural_materials_pass \ - --strict - python scripts/falsiflow.py claim-check \ - --project-dir examples/falsiflow/neural_materials \ - --out-dir /tmp/falsiflow_neural_materials_claim_check \ - --strict - python scripts/falsiflow.py sources \ - --config examples/falsiflow/neural_materials/project.json \ - --evidence examples/falsiflow/neural_materials/evidence_pass_demo.csv \ - --out /tmp/falsiflow_neural_materials_source_manifest.json \ - --report-out /tmp/falsiflow_neural_materials_source_manifest.md \ - --strict - python scripts/falsiflow.py bundle \ - --config examples/falsiflow/neural_materials/project.json \ - --evidence examples/falsiflow/neural_materials/evidence_pass_demo.csv \ - --out-dir /tmp/falsiflow_neural_materials_bundle \ - --zip-out /tmp/falsiflow_neural_materials_bundle.zip \ - --strict - python scripts/falsiflow.py verify-bundle \ - --zip /tmp/falsiflow_neural_materials_bundle.zip \ - --out /tmp/falsiflow_neural_materials_bundle_verify.json \ - --report-out /tmp/falsiflow_neural_materials_bundle_verify.md \ - --strict - python scripts/falsiflow.py audit \ - --config examples/falsiflow/rfq_vendor_evidence/project.json \ - --evidence examples/falsiflow/rfq_vendor_evidence/evidence_pass_demo.csv \ - --out-dir /tmp/falsiflow_rfq_vendor_pass \ - --strict - python scripts/falsiflow.py audit \ - --config examples/falsiflow/biointerface_coatings/project.json \ - --evidence examples/falsiflow/biointerface_coatings/evidence_pass_demo.csv \ - --out-dir /tmp/falsiflow_biointerface_coatings_pass \ - --strict - python scripts/falsiflow.py audit \ - --config examples/falsiflow/wetware_support_hardware/project.json \ - --evidence examples/falsiflow/wetware_support_hardware/evidence_pass_demo.csv \ - --out-dir /tmp/falsiflow_wetware_support_hardware_pass \ - --strict - - name: Portfolio dashboard + + - name: Assert blocked action failed + run: test "${{ steps.blocked-action.outcome }}" = "failure" + + - name: Build distribution run: | - python scripts/falsiflow.py portfolio \ - --input /tmp/falsiflow_neural_materials_pass \ - --input /tmp/falsiflow_rfq_vendor_pass \ - --input /tmp/falsiflow_biointerface_coatings_pass \ - --input /tmp/falsiflow_wetware_support_hardware_pass \ - --out-dir /tmp/falsiflow_portfolio \ - --strict + python -m pip install --upgrade build twine + python -m build + python -m twine check dist/* diff --git a/.github/workflows/smoke.yml b/.github/workflows/smoke.yml deleted file mode 100644 index 5243ee4..0000000 --- a/.github/workflows/smoke.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: Smoke - -on: - workflow_dispatch: - pull_request: - push: - branches: [main] - -jobs: - smoke: - runs-on: ubuntu-latest - steps: - - name: Check runner - run: echo ok diff --git a/.nojekyll b/.nojekyll deleted file mode 100644 index 9c558e3..0000000 --- a/.nojekyll +++ /dev/null @@ -1 +0,0 @@ -. diff --git a/CHANGELOG.md b/CHANGELOG.md index aa53433..a5d87a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,559 +1,15 @@ # Changelog -## Unreleased +## 0.2.0 -- Added `falsiflow check` as the smallest public claim-gate entry point: - `--config` plus `--evidence` in, `claim_ready` or `claim_blocked` with - reasons out. -- Added `examples/minimal_numeric_claim` to show placeholder evidence blocked, - weak numeric lift blocked, and source-backed evidence ready without the - launch/demo machinery. -- Hid maintainer launch-material generation from the public CLI reference and - Makefile so Falsiflow's visible surface stays focused on claim gates, - evidence import, release checks, and reusable CI workflows. -- Removed launch-kit generation from `release-check`; public launch copy, - social posts, and launch metrics are no longer release readiness gates. -- Reduced public issue queue and launch execution docs so GitHub issues remain - the source of truth instead of mirroring every closed seed issue. -- Relaxed release-check coverage for narrative launch docs while keeping the - key README, reusable Action, downstream proof, and release gates protected. -- Switched long-form documentation snippets to `AzurLiu/falsiflow@vX.Y.Z` - placeholders so patch releases no longer require mechanical updates across - launch articles and guide prose. +- Reset Falsiflow to the core numeric claim gate: `falsiflow check --config --evidence`. +- Removed public demo, launch, discovery, MCP, template supply-chain, adoption, + and release-check systems from the maintained package surface. +- Kept source provenance, evidence bundles, Markdown reports, JSON summaries, + and the reusable GitHub Action for CI claim gates. ## 0.1.39 -- Linked adapter profile readers directly to the maintained local LLM and RAG - import proof paths, including `coverage_ready`, `claim_check_ready`, and the - evidence-package readiness boundary. -- Added README RAG import proof links to the published long description path so - PyPI readers can reach the same downstream RAG eval evidence story as GitHub - readers. -- Generated an evergreen social preview handoff asset without a versioned - filename for launch posts and repository profile updates. - -## 0.1.38 - -- Shortened product-metric proof `Project-URL` labels so PyPI accepts the - release metadata while preserving the live downstream demo, PR, blocked run, - and ready run links. -- Republished the `0.1.37` proof updates as a clean package release after the - GitHub release workflow exposed PyPI's 32-character project-url label limit. - -## 0.1.37 - -- Added a live downstream product-metric demo repository and PR that moves from - `claim_check_blocked` on placeholder analytics evidence to - `claim_check_ready` after source-backed metric provenance, lift, guardrail, - and rollback-readiness rows are added. -- Updated the README, public demo, proof strip, launch copy, Action examples, - and PyPI rendering checks so AI eval, RAG eval, and product-metric proof links - are all visible from the first public proof surface. -- Tightened release and regression checks so launch materials keep the - product-metric PR, blocked run, ready run, and responsible-use boundary. - -## 0.1.36 - -- Re-opened the public contribution queue with concrete active work: a - `good first issue` for adding a launch-article visual and a `help wanted` - product-metric downstream proof issue. -- Updated the public issue queue and launch execution docs so launch visitors - see #22, #29, and #30 as the current small contributor-facing queue. -- Tightened `release-check` so the queue cannot drift back to only historical - seed issues without a current good-first/help-wanted path. - -## 0.1.35 - -- Removed stale `0.1.29` wording from the static launch execution copy so - copied MLOps, LinkedIn, and short-post drafts describe the current public - release instead of an old version. -- Added launch execution guidance for generating and uploading - `social_preview.png` from `falsiflow launch-kit`. -- Tightened `release-check` so stale versioned launch-copy phrases are blocked - and generated launch posts must include the current reusable Action tag. - -## 0.1.34 - -- Added an upload-ready `social_preview.png` to `falsiflow launch-kit`, generated - with the standard library so maintainers can set GitHub's repository social - preview without extra image tooling. -- Kept `social_preview.svg` as the editable source and updated the generated - GitHub repo profile handoff to point maintainers at the PNG upload artifact. -- Added regression and release-check coverage so README, launch-kit output, and - repo-profile guidance continue to ship the PNG plus SVG source together. - -## 0.1.33 - -- Upgraded `falsiflow launch-kit` so generated Hacker News, Reddit, - LinkedIn, X, short-post, and reply-bank drafts include both live AI eval and - live RAG eval blocked-to-ready downstream PR proof. -- Added RAG downstream proof links to generated GitHub repository profile - handoff material. -- Added release-check and regression coverage so launch materials keep the - AI/RAG proof links, run IDs, and responsible-use reply framing. - -## 0.1.32 - -- Tightened the README first screen so new visitors see the claim, proof strip, - three-command quickstart, blocked-vs-ready output, and GitHub Action snippet - before longer release-proof details. -- Moved public evidence, live downstream PR links, current status, and source - contributor guidance into scannable follow-up sections. -- Corrected the live in-repo demo PR copy to describe PR #17 as the AI eval - gate story it actually proves. - -## 0.1.31 - -- Added a release-check downstream smoke replay gate that runs the maintained - AI eval, product metric, and RAG eval fixtures through both blocked - placeholder evidence and source-backed ready evidence. -- Added release reports and JSON summary fields for downstream replay status, - making fixture drift visible before a release can be tagged. -- Updated tests and release docs so source checkouts must report - `downstream_smoke_replay_ready` while installed-package release checks skip - the replay cleanly outside a source tree. - -## 0.1.30 - -- Added `examples/downstream_rag_eval_smoke`, a copy-paste downstream repo - fixture that blocks placeholder RAG eval claims in CI and turns ready after - source-backed retrieval, faithfulness, citation, and reproducibility evidence - is added. -- Linked the maintained RAG downstream fixture from the README, examples - walkthrough, GitHub Action examples, and launch plan. -- Added release-check and source-distribution coverage so future releases keep - the RAG fixture packaged and version-pinned with the reusable GitHub Action. - -## 0.1.29 - -- Updated the public launchpad and downstream proof strip so the first visible - demo now shows both live downstream stories: AI eval and RAG eval PRs moving - from `claim_check_blocked` to `claim_check_ready`. -- Regenerated the public demo package and social preview PNG with the RAG - blocked/ready run links. -- Added release-check coverage so the prebuilt public demo and generated demo - package keep the live AI/RAG downstream proof links. - -## 0.1.28 - -- Added a live downstream RAG eval demo repository and PR that moves from - `claim_check_blocked` on placeholder/missing RAG evidence to - `claim_check_ready` after source-backed rows and the raw RAG eval export are - added. -- Linked the RAG blocked and ready GitHub Actions runs from the README, GitHub - Action examples, demo PR playbook, launch execution notes, and public issue - queue. -- Updated release metadata and `release-check` coverage so future releases - keep the public RAG downstream proof visible and verifiable. - -## 0.1.27 - -- Added `falsiflow release-proof` to generate a copy-paste release-note proof - block from `falsiflow_external_evidence.json` and - `external_readiness.json`. -- Updated External Evidence metadata, README/PyPI guidance, release docs, - public issue queue docs, and release-check coverage so public proof snippets - include the exact run URL, PyPI version match, published-package claim-check - status, `claim_check_ready`, `bundle_verified`, and `external_ready`. -- Added a compact MCP client config block to the README/PyPI description. - -## 0.1.26 - -- Added copy-paste MCP client configuration examples for generic stdio clients, - Claude Desktop, and local checkout development. -- Added release-check coverage for the MCP client snippets and local - no-HTTP/no-model boundary so agent integration docs stay verifiable. - -## 0.1.25 - -- Seeded the real public contribution queue with current issues for release - proof snippet generation, a live downstream RAG eval demo PR, and MCP client - configuration examples. -- Updated `docs/falsiflow_public_issue_queue.md` with the active issue links, - labels, goals, and verification commands, and added release-check coverage so - the queue cannot silently become stale or empty again. - -## 0.1.24 - -- Moved the public proof contract into the README/PyPI first screen so visitors - see that each release links an exact External Evidence run proving - `quickstart_ready`, `doctor_ready`, `claim_check_ready`, `bundle_verified`, - `external_ready`, and `pypi_version_match`. -- Added release-check coverage so the first-screen proof contract cannot be - removed without breaking the release gate. - -## 0.1.23 - -- Required the public external-evidence workflow to prove the published PyPI - package can run the generated AI eval starter through - `claim-check --strict --force --json` and reach `claim_check_ready`. -- Added `public_package_claim_check` to the external evidence schema, - external-check gate, release evidence ledger, workflow artifacts, - release-check coverage, and README/release docs. - -## 0.1.22 - -- Required the public external-evidence workflow to prove the published PyPI - package README first-run path: `quickstart --template ai_claim_evaluation` - followed by strict `doctor`. -- Added `public_package_first_run` to the external evidence schema, - external-check gate, release evidence ledger, workflow artifacts, - release-check coverage, and README/release docs. - -## 0.1.21 - -- Added a reusable GitHub Action `evidence-import` mode so downstream CI can - convert local/private eval artifacts before running `claim-check`. -- Added the copy-paste `examples/local_llm_eval_import` fixture with a blocked - placeholder evidence file, local runner JSONL, model manifest, generated - ready evidence demo, workflow, docs, and regression coverage. -- Added JSON output for `falsiflow evidence import` so action and CI logs can - consume the import summary directly. - -## 0.1.20 - -- Required the public external-evidence workflow to prove - `falsiflow mcp --selftest --json` from the published PyPI package, so local - MCP integration claims are gated by the same public artifact chain as the - hosted demo, PyPI page, pipx smoke, and Windows smoke. -- Added `mcp_public_package_selftest` to the external evidence schema, - external-check readiness gate, release evidence ledger, README/release docs, - and regression coverage. - -## 0.1.19 - -- Added `falsiflow mcp --selftest --json` so local agent integrations can - verify MCP initialize, tool listing, resource listing, source-backed claim - checking, bundle verification, blocker explanation, and evidence todo output - before wiring a stdio client. -- Expanded MCP, README, release, roadmap, CLI reference, adoption, and - release-check coverage for the local stdio/no-network/no-model boundary. - -## 0.1.18 - -- Synced the launch execution baseline into the release line and made the - baseline wording version-neutral so future patch releases do not make the - pre-public-post launch copy stale. -- Added release-check coverage for the launch execution baseline, completed - seed queue, external-evidence workflow, and blocked-to-ready launch copy. - -## 0.1.17 - -- Added a compact downstream RAG eval GitHub Action example that shows - `claim_check_blocked` on placeholder evidence and `claim_check_ready` after - source-backed RAG eval rows are supplied. -- Recorded public PyPI README rendering proof for the v0.1.16 image URL fix - and added release-check coverage so the proof remains part of the release - runbook. - -## 0.1.16 - -- Switched README proof images to absolute HTTPS asset URLs so PyPI long - descriptions and other external renderers can show the downstream proof - strip instead of depending on repository-relative image paths. -- Added release-check coverage to keep README image embeds PyPI-renderable for - future launch hardening releases. - -## 0.1.15 - -- Updated the generated browser launchpad and checked-in public demo to lead - with the real downstream AI eval PR #1, including blocked and ready CI links, - before keeping the in-repo PR #17 replay as a secondary proof path. -- Packaged the downstream PR proof strip so `falsiflow try` and - `falsiflow demo-package` produce the same stronger public demo from source - installs and PyPI installs. -- Added a downstream proof-strip PNG for social preview metadata so shared - public demo links show the blocked-to-ready downstream PR story. - -## 0.1.14 - -- Added a local LLM eval quickstart for turning local model outputs into - Falsiflow evidence rows without sending prompts, outputs, or raw artifacts to - a hosted service. -- Added a shareable downstream PR proof strip that leads the README, launch - article, demo PR playbook, and launch plan with the real blocked-to-ready AI - eval PR story. -- Added a copy-paste downstream product-metric smoke fixture that blocks - placeholder launch evidence and passes only after source-backed metric rows - are provided. -- Promoted the bundled RAG quality gate acceptance path by supporting - `falsiflow template-check --strict` and covering it in release checks. - -## 0.1.13 - -- Updated the generated launch posts, GitHub repo profile handoff, and launch - execution copy to lead with the live downstream AI eval PR, blocked CI run, - and ready CI run. -- Added release-check coverage so generated launch-kit posts keep the - downstream proof links and `claim_check_blocked` / `claim_check_ready` - narrative in future releases. - -## 0.1.12 - -- Tightened the README/PyPI first screen around the one-sentence value - proposition, three-command install path, blocked-vs-ready output, reusable - GitHub Action snippet, and live downstream proof links. -- Reworked the launch article demo section to lead with the clean downstream - PR that fails on placeholder AI eval provenance before passing with - source-backed evidence. - -## 0.1.11 - -- Added a maintained `examples/downstream_ai_eval_smoke` fixture that can be - copied into a clean repository to show a placeholder AI eval claim failing CI - before source-backed evidence makes the same workflow pass. -- Linked the live downstream proof repository and PR that show the same - blocked-to-ready AI eval claim gate outside the Falsiflow repository. - -## 0.1.10 - -- Moved the secondary 30-second CLI visual below the install/status block so the - README first screen gets to copy-paste commands faster. -- Added PyPI project URLs for the Live PR Story, blocked CI run, ready CI run, - and launch article so package readers can jump to proof links without relying - on rendered README images. -- Pinned copy-paste GitHub Action snippets to `AzurLiu/falsiflow@v0.1.10` and - surfaced the six-file downstream AI eval smoke recipe from the README. - -## 0.1.9 - -- Added a shareable Live PR Story reel SVG that shows PR #17 moving from a - risky AI/RAG eval claim to `claim_check_blocked`, source-backed repair, and - `claim_check_ready`. -- Embedded the reel in the README, launch article, demo PR playbook, and public - demo launchpad so the blocked-to-ready story is visible without opening the - full playbook first. -- Added release-check coverage for the reel asset, README embedding, manifest - inclusion, and packaged launchpad references. - -## 0.1.8 - -- Added description, Open Graph, and Twitter card metadata to the public demo - launchpad so shared links preview the live PR story. -- Enabled automatic GitHub Pages deploys on `main` pushes that affect the demo - generator, packaged public demo, or Pages workflow. -- Sharpened README/PyPI first-screen copy around the Live PR Story proof path. - -## 0.1.7 - -- Put the live AI eval PR story on the public demo launchpad: PR #17 now appears - as a first-screen sequence from risky claim to blocked CI to source-backed - ready CI. -- Updated `falsiflow try` and `falsiflow demo-package` output so regenerated - static demos keep the same real PR proof path instead of leading with only a - static starter example. -- Refreshed the checked-in `docs/public_demo` package with the new launchpad. - -## 0.1.6 - -- Fixed `rag-eval` CSV imports so manifest and artifact rows are promoted into - provenance and reproducibility evidence, allowing the bundled RAG raw eval - export to import and pass `claim-check` without a separate JSON manifest. -- Added timestamps and explicit candidate/baseline RAG version rows to the RAG - quality gate raw export used by examples and quickstart templates. -- Added regression coverage for the real path: raw RAG eval export -> evidence - import -> `claim_check_ready`. - -## 0.1.5 - -- Updated launch execution copy from the older v0.1.2 trust baseline to the - live AI/RAG eval PR story, PyPI release path, and external-evidence workflow. -- Switched the README/PyPI long description to a stable external-evidence - workflow link so package metadata does not point at an outdated single run. -- Refreshed PyPI trusted-publishing verification guidance so future releases - check the current release version instead of carrying the original v0.1.2 - recovery wording into launch copy. - -## 0.1.4 - -- Added a live public AI/RAG eval PR demo: - [PR #17](https://github.com/AzurLiu/falsiflow/pull/17) now shows placeholder - eval evidence failing CI and source-backed evidence passing the same claim - gate. -- Added the bundled `rag_quality_gate` starter template plus `rag-eval`, - `local-llm-eval`, and `ai-eval` artifact import coverage for JSON, JSONL, - CSV, and manifest-backed eval outputs. -- Added local agent integration surfaces: `falsiflow/api.py`, - `falsiflow mcp`, and MCP documentation for local stdio use by AI coding - agents. -- Improved GitHub Action summaries with top blockers, evidence todo items, and - next evidence actions for blocked claim checks. -- Fixed the reusable GitHub Action so `evidence:` overrides the project-dir - default evidence file in `claim-check` mode. - -## 0.1.3 - -- Sharpened the README first screen around the AI/RAG eval claim-gate story: - one-line CI positioning, PyPI quickstart, blocked-vs-ready output, and a - copy-paste GitHub Action snippet. -- Reworked the public demo PR playbook into a complete failing-PR-to-ready-PR - story for AI/RAG eval claims with local rehearsal commands, expected CI - statuses, report artifacts, and a 30-second recording script. -- Rewrote the launch article `Stop Shipping Unverifiable AI Eval Claims` around - the industry failure mode first, then introduced Falsiflow as the CI evidence - gate. -- Added launch-execution copy and included it in the source distribution so - public posts, channels, and metrics review notes ship with the package. - -## 0.1.2 - -- Added the `product_metric_launch` starter template and public casebook - coverage so Falsiflow now demonstrates AI eval, product-metric, vendor, - wetware, biointerface, and neural-materials claim gates. -- Made the reusable GitHub Action install from its checked-out action path by - default, keeping downstream claim gates usable before PyPI publication. -- Updated GitHub Actions dependencies and added copy-paste AI eval action - examples for downstream repositories. -- Added a README 30-second ready-vs-blocked demo strip and release-checked it - as a first-screen visual asset. -- Added named neighboring-tool boundaries for Great Expectations, Evidently, - Deepchecks, MLflow, and plain GitHub Actions. -- Added a public demo PR playbook that rehearses an AI-eval claim moving from - `claim_check_blocked` with placeholder evidence to `claim_check_ready` with - source-backed evidence. -- Sharpened launch-kit posts, announcement copy, demo script, launch metrics, - and maintainer checklist around the demo PR path, PyPI status, and - responsible-use reply bank. -- Extended release-check and regression coverage so launch copy, demo PR - references, sdist docs, README assets, and Markdown code fences remain - checked before tagging. - -## 0.1.1 - -- Introduced the Falsiflow evidence-gated R&D workflow engine. -- Added configurable project gates, evidence CSV validation, derived metrics, - claim audits, next actions, dashboards, and portfolio aggregation. -- Added starter templates for neural materials, biointerface coatings, RFQ - vendor evidence, wetware support hardware, and AI claim evaluation. -- Added root `action.yml` so downstream GitHub Actions workflows can run - Falsiflow claim, template, casebook, release, adoption, quickstart, and - external-readiness gates with one `uses:` step. -- Added source-file provenance manifests, portable evidence bundles, - bundle zip verification, and release-check quality gates. -- Added template-check, template-scaffold, template-pack, template-registry, - template-lock, and template-install flows for authoring, verifying, - distributing, locking, and installing reusable external starter templates. -- Added versioned template locks and registry `source_url` support so published - template packs can be pinned by URL, byte count, and SHA-256 hash. -- Added template provenance attestations with optional HMAC signatures so - locked template sources can be independently verified before installation. -- Added `template-install --attestation --require-attestation` so signed - lockfile provenance can be enforced during template adoption. -- Added template adoption policies with `template-policy`, - `verify-template-policy`, and `template-install --policy`. -- Added template release bundles with `template-release`, - `verify-template-release`, and `template-install --release`. -- Hardened template release verification against unsafe artifact paths, - duplicate paths, unmanifested files, and embedded registry/lock mismatches. -- Added Markdown template release verification reports for human review in CI, - release-check, and adoption workflows. -- Added an adoption-priorities document and README first-run path to keep - optimization focused on open-source usability. -- Added `template-gallery` JSON and Markdown outputs so cross-domain starter - breadth is visible and checked by release workflows. -- Added `casebook-check` JSON and Markdown outputs so public starter casebook - positive demos, placeholder blockers, source provenance, and verified bundles - are checked by adoption and release workflows. -- Added casebook reviewer replay artifacts (`casebook_reviewer_replay.md`, - `.sh`, and `.ps1`) so launch reviewers can rerun every positive demo and - placeholder blocked-path proof from generated scripts. -- Added launch metrics artifacts (`launch_metrics.json` and - `launch_metrics.md`) so the 1k-star path has review windows for traffic, - referrers, stars, demo visits, install signals, repeated questions, and - follow-up fixes. -- Added public package evidence checks to `external-evidence`, - `external-check`, and the external evidence workflow so final external - readiness requires a PyPI project URL and a pipx smoke test from the published - package, not only a local checkout. -- Added `public_release_evidence.json` and `public_release_evidence.md` to the - publish kit so final public release evidence across repo, demo, PyPI, pipx, - Windows, Scorecard, release-check, casebook replay, and launch metrics is - reviewed from one generated ledger. -- Added `release_rehearsal.json` and `release_rehearsal.md` to the publish kit - so public release reviewers can rehearse the final command sequence, expected - artifacts, success signals, and external stop conditions before announcements. -- Added adapter profiles for generic wide CSV, vendor measurement returns, - instrument exports, and plate-reader exports in `evidence import` and - `ingest-wide-csv`. -- Added `audit_review.json` and `audit_review.md` decision cards for faster - human review of audit status, blockers, next actions, and release boundaries. -- Added `claim-check` with `claim_check.json` and `claim_check.md` so audit, - source provenance, bundle creation, and zip verification can run as one - user-facing claim gate. -- Added review artifact indexes to claim-check, bundle verification, release - check, and template release verification reports so reviewers can jump between - source manifests, bundle integrity, dashboards, and template-release artifacts. -- Added `claim-check --project-dir` so initialized starter projects can use - default `project.json`, `evidence_pass_demo.csv`, and `claim_check/` paths. -- Added `quickstart` with `quickstart_summary.json` and `quickstart_summary.md` - so first-run users can create a starter project and verify its claim gate in - one command. -- Added `next_commands` to quickstart summaries so first-run users are handed - directly to `falsiflow doctor`. -- Added `start` as the beginner-friendly local app command with a free - localhost port, automatic browser opening, `--check`, and `serve_summary.json`. -- Added `scripts/install_local.sh` plus `make install-local`, `make start`, and - `make start-check` so a local checkout or public Git repository can be pulled - into a virtual environment and launched with one command. -- Added `scripts/install_local.ps1` for the same local install/start flow on - Windows PowerShell. -- Added `pipx` Makefile shortcuts for checkout-based `pipx install --force .` +- Last release of the broad experimental surface. Use the `v0.1.39` tag for + historical quickstart, doctor, release-check, demo, template, MCP, and launch workflows. -- Added `onboard` with `onboard_summary.json` for beginner next-step guidance. -- Added `static-demo` with `static_demo_summary.json` so a zero-install browser - demo can be exported to static hosting. -- Added `demo-package` with `demo_package_summary.json`, `.nojekyll`, - `netlify.toml`, and `publish_checklist.md` for a public static-demo handoff. -- Added `publish-kit` with `publish_handoff.json`, `publish_handoff.md`, - `publish.env.example`, and `github_publish_commands.sh` for account-bound - GitHub/Pages/PyPI release handoff steps. -- Added `external-check` with `external_readiness.json` and - `external_readiness.md` so public repo/demo URLs, pipx, and - Windows/PowerShell validation are explicit external gates. -- Added GitHub Actions workflows for static demo deployment, Linux/macOS/Windows - and pipx smoke tests, and PyPI trusted-publishing release builds. -- Added a localhost `workbench.html` and API behind `falsiflow start` so browser - users can upload project/evidence/source files, run the local evidence gate, - and inspect ready/blocked results, review flow, evidence lineage, repair - checklist, and linked review artifacts without touching the terminal. -- Added `discover` with `evidence_records.json`, `candidate_queue.json`, - `ranking.md`, `assay_plan.md`, `rfq_package.md`, and a placeholder - `project_draft/` so discovery output is structured while remaining - non-AI-dependent and non-claim-ready. -- Added `agent discover`, `candidate rank`, `assay-plan`, and - `evidence import` as namespaced public interfaces for structured discovery - and evidence-import workflows. -- Added discovery schemas for evidence records, candidate recipes, and discovery - summaries. -- Added `try` with `try_summary.json`, `index.html`, and `try_report.html` so - first-run users can open a local browser launchpad, proof report, and - generated starter wizard before learning the full CLI. -- Added `serve` with `serve_summary.json` so the local launchpad, try report, - and wizard can be opened through a localhost browser demo. -- Added `wizard` so browser-first users can draft a claim gate from - plain-language presets and export the matching scaffold command, project JSON, - and evidence CSV without a server. -- Added `doctor` with `doctor_summary.json` and `doctor_summary.md` so users can - diagnose project health and next repair actions after quickstart. -- Added `repair_checklist` to doctor summaries so blocked diagnoses include a - concrete command, expected artifact, and success signal. -- Added `adoption-check` with `adoption_check.json` and `adoption_check.md` so - the five open-source adoption priorities can be audited as `adoption_ready` - or `adoption_blocked`. -- Added `repair_checklist` to adoption-check summaries so blocked priorities - and final ready rechecks include commands, expected artifacts, and success - signals. -- Hardened release-check distribution hygiene so local `build/`, `dist/`, and - `*.egg-info/` artifacts are ignored and transient build caches are cleaned. -- Surfaced distribution hygiene in the `release_and_distribution` adoption - priority so adoption reports show build-cache cleanup evidence directly. -- Embedded adoption priority evidence tables in `release_check.md` so release - reports are standalone for human review. -- Added `release_validation_status` to adoption-check summaries so fast - `--skip-dist` adoption readiness cannot be confused with full distribution - validation. -- Added top-level `release_validation_status` to release-check summaries, - reports, and CLI output so fast release smoke tests cannot be confused with - complete distribution validation. -- Required `release_validation_ready` in the release checklist gate so publishing - docs match the adoption-check validation boundary. diff --git a/CITATION.cff b/CITATION.cff deleted file mode 100644 index e0b25d1..0000000 --- a/CITATION.cff +++ /dev/null @@ -1,17 +0,0 @@ -cff-version: 1.2.0 -message: "If Falsiflow helps your research or tooling, cite the software and the version you used." -title: "Falsiflow" -type: software -version: "0.1.39" -abstract: "Evidence-gated CLI and CI action for AI eval, product-metric, and R&D claims." -authors: - - name: "Falsiflow contributors" -license: "MIT" -repository-code: "https://github.com/AzurLiu/falsiflow" -url: "https://github.com/AzurLiu/falsiflow" -keywords: - - evidence - - provenance - - research-and-development - - quality-gates - - workflow diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md deleted file mode 100644 index bba9d0d..0000000 --- a/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,44 +0,0 @@ -# Falsiflow Code of Conduct - -Falsiflow is built for careful review of high-risk technical claims. The same -care applies to project discussion: contributors should be able to ask -questions, report bugs, challenge assumptions, and review evidence boundaries -without being dismissed or harassed. - -## Expected Behavior - -- Be respectful, precise, and patient in issues, pull requests, discussions, - and review comments. -- Critique claims, evidence, code, and documentation without personal attacks. -- Assume good intent, but correct unsafe, misleading, or unsupported claims - clearly. -- Preserve the responsible-use boundary: `claim_ready` is not proof of safety, - efficacy, regulatory compliance, commercial readiness, or experimental truth. -- Help new contributors find the right template, command, or release gate when - they are blocked. - -## Unacceptable Behavior - -- Harassment, threats, insults, or discriminatory language. -- Publishing private contact details, source files, credentials, or sensitive - evidence without permission. -- Pressuring maintainers or contributors to present blocked evidence as ready. -- Repeatedly derailing technical discussion after maintainers redirect the - conversation. -- Using Falsiflow examples to imply unsupported medical, safety, regulatory, or - commercial claims. - -## Reporting - -For conduct concerns, contact the maintainers through the least-public project -channel available. For security issues, follow `SECURITY.md` instead of opening -public issues with exploit details. - -Reports should include the relevant link, a short description of the concern, -and whether immediate moderation or content removal is requested. - -## Enforcement - -Maintainers may edit or remove comments, close issues, block accounts, or limit -participation when behavior makes the project unsafe or unproductive. Serious -or repeated violations can lead to a permanent ban from project spaces. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f375283..7d31ed7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,96 +1,16 @@ -# Contributing to Falsiflow +# Contributing -Falsiflow is a conservative evidence-gated workflow engine. Contributions should -preserve the core contract: a claim only advances when configuration, evidence, -source provenance, bundles, and verification artifacts agree. +Falsiflow v0.2.0 is intentionally small. Contributions should improve the core +claim gate, not reintroduce launch, demo, discovery, MCP, or template-platform +systems. -## Development Setup +Before opening a PR, run: ```bash -python3 -m pip install -e . -falsiflow selftest -falsiflow release-check --out-dir data/falsiflow/release_check -``` - -## First Contributions - -Good first issues should be small, externally useful, and release-checkable. -The best starter contributions are usually one of these: - -- Improve a first-run doc, screenshot, demo script, or troubleshooting path. -- Add a narrow evidence-gate fixture to an existing starter template. -- Add or refine an adapter-profile example with sanitized CSV input. -- Improve GitHub Action examples, issue templates, or launch-readiness copy. - -For any first contribution, name the command that proves the change. Prefer -`falsiflow quickstart`, `falsiflow doctor`, `falsiflow casebook-check`, -`falsiflow adoption-check`, or `falsiflow release-check`. - -For a faster local loop while editing docs or small CLI behavior, use: - -```bash -falsiflow release-check --out-dir data/falsiflow/release_check --skip-dist --force -``` - -Run the full gate before proposing a release or substantial change: - -```bash -python3 -m py_compile \ - falsiflow/core.py \ - falsiflow/cli.py \ - falsiflow/adapters.py \ - falsiflow/casebook_check.py \ - scripts/falsiflow.py \ - scripts/falsiflow_tests/regress_falsiflow_core.py - +python3 -m py_compile falsiflow/core.py falsiflow/bundle.py falsiflow/claim_check.py falsiflow/cli.py scripts/falsiflow.py scripts/falsiflow_tests/regress_falsiflow_core.py python3 scripts/falsiflow_tests/regress_falsiflow_core.py -python3 scripts/falsiflow.py release-check --out-dir data/falsiflow/release_check --force +python3 -m build ``` -## Evidence-Gate Rules - -- Do not bypass `claim_ready` with warnings, placeholders, missing metadata, or - missing source files. -- Keep new workflow behavior backed by schemas, CLI output, and regression - coverage. -- Add or update starter-template evidence when changing project contracts. -- If a command emits machine-readable JSON, document and test its schema. -- If a bundle or verification artifact changes, run zip verification and update - release-check expectations. -- If import adapter profiles or CSV column mappings change, update - `docs/falsiflow_adapter_profiles.md` and the wide-ingest regression tests. -- If public starter examples or launch proof changes, run `casebook-check` and - update `docs/falsiflow_casebook_check.md`. -- If starter template authoring or distribution changes, run `template-check`, - `template-pack`, `verify-template-pack`, `template-registry`, - `template-lock`, `template-attest`, `verify-template-attestation`, and - `template-policy`, `verify-template-policy`, `template-release`, - `verify-template-release --report-out`, and `template-install` and update - release-check expectations. -- Preserve the boundaries in `RESPONSIBLE_USE.md`: Falsiflow readiness is not - proof of safety, efficacy, regulatory compliance, or experimental truth. -- Treat bundle verification, path handling, and source provenance bypasses as - security-sensitive; see `SECURITY.md`. - -## Pull Request Checklist - -- The change is scoped to Falsiflow behavior, packaging, docs, or examples. -- Regression tests pass. -- `release-check` passes, or the reason it cannot run is documented. -- New public commands or fields are reflected in `README.md`, - `docs/falsiflow_mvp.md`, and schemas. -- Data-contract changes update `docs/falsiflow_data_contract.md`. -- Adapter-profile changes update `docs/falsiflow_adapter_profiles.md`. -- Public casebook or starter-proof changes update - `docs/falsiflow_casebook_check.md`. -- Architecture-impacting changes update `docs/falsiflow_architecture.md`. -- Template authoring or template admission changes update - `docs/falsiflow_template_authoring.md`. -- User-facing failures or repair actions update - `docs/falsiflow_troubleshooting.md`. -- Version-facing changes are summarized in `CHANGELOG.md`. -- Security or responsible-use changes update `SECURITY.md` or - `RESPONSIBLE_USE.md` and keep `release-check` passing. -- Community behavior, support expectations, or project-direction changes update - `CODE_OF_CONDUCT.md`, `SUPPORT.md`, `GOVERNANCE.md`, `CITATION.cff`, or - `ROADMAP.md` when relevant. +Every behavior change should preserve this boundary: `claim_ready` means the +configured evidence package passed, not that the underlying claim is true. diff --git a/GOVERNANCE.md b/GOVERNANCE.md deleted file mode 100644 index 89b99cc..0000000 --- a/GOVERNANCE.md +++ /dev/null @@ -1,68 +0,0 @@ -# Falsiflow Governance - -Falsiflow is maintained as a conservative evidence-gated workflow project. The -governance goal is to keep the public tool easy to try, hard to misuse, and -clear about what `claim_ready` does and does not mean. - -## Maintainer Responsibilities - -Maintainers are responsible for: - -- preserving the evidence-gate contract in code, docs, examples, and release - artifacts -- reviewing changes that affect schemas, bundled templates, bundle - verification, release gates, or responsible-use wording -- keeping the first-run path, template gallery, and release-check workflow - reliable -- triaging issues according to [SUPPORT.md](SUPPORT.md), - [SECURITY.md](SECURITY.md), and [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) -- declining changes that blur `claim_ready` into scientific proof, regulatory - approval, safety proof, or commercial readiness - -## Decision Process - -Routine bug fixes, docs improvements, and template corrections can be accepted -after one maintainer review when the relevant tests or release gates pass. -Changes to project contracts, public schemas, release automation, security -behavior, or responsible-use boundaries should receive a second maintainer or -domain-reviewer pass when available. - -When tradeoffs are unclear, prefer the option that keeps evidence blocked until -source-backed data, metadata, and configured gates agree. - -## Template Admission - -New bundled templates should include: - -- a clear domain and claim that a reviewer can understand quickly -- `project.json`, evidence templates, passing demo evidence, placeholder demo - evidence, and raw source files -- at least one blocked-path story that proves missing or placeholder evidence - does not become `claim_ready` -- `template-check`, `template-pack`, `verify-template-pack`, `template-release`, - `verify-template-release`, and `template-install` coverage in release gates -- responsible-use wording when a domain could be mistaken for safety, clinical, - regulatory, or commercial validation - -Template authors should follow -[docs/falsiflow_template_authoring.md](docs/falsiflow_template_authoring.md) -before proposing a bundled template. - -## Release Ownership - -A release owner should run `falsiflow release-check --force`, inspect the -generated release artifacts, confirm the source distribution contains the -community, citation, governance, security, and support files, and verify that -external evidence is either `external_ready` or intentionally documented as -`external_blocked`. - -Public releases should not be announced as externally ready until the hosted demo -URL, pipx path, Windows/PowerShell smoke path, and public repository evidence -have passed `external-check --strict`. - -## Security And Conduct - -Security-sensitive reports follow [SECURITY.md](SECURITY.md). Conduct reports -follow [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md). Maintainers may pause, close, -or redirect issues and pull requests that publish private evidence, bypass -verification, or present blocked evidence as ready. diff --git a/MANIFEST.in b/MANIFEST.in index 3f3b864..5d51a06 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,56 +1,11 @@ include CHANGELOG.md include CONTRIBUTING.md -include CITATION.cff -include CODE_OF_CONDUCT.md -include GOVERNANCE.md -include RELEASE.md +include LICENSE +include README.md include SECURITY.md -include SUPPORT.md -include RESPONSIBLE_USE.md -include ROADMAP.md include action.yml include Makefile -include scripts/install_local.sh -include scripts/install_local.ps1 -include examples/README.md recursive-include examples/minimal_numeric_claim * -recursive-include examples/downstream_ai_eval_smoke * -recursive-include examples/downstream_ai_eval_smoke/.github/workflows *.yml -recursive-include examples/downstream_product_metric_smoke * -recursive-include examples/downstream_product_metric_smoke/.github/workflows *.yml -recursive-include examples/downstream_rag_eval_smoke * -recursive-include examples/downstream_rag_eval_smoke/.github/workflows *.yml -recursive-include examples/local_llm_eval_import * -recursive-include examples/local_llm_eval_import/.github/workflows *.yml -include docs/falsiflow_adoption_priorities.md -include docs/falsiflow_1k_launch_plan.md -include docs/falsiflow_architecture.md -include docs/falsiflow_cli_reference.md -include docs/falsiflow_data_contract.md -include docs/falsiflow_adapter_profiles.md -include docs/falsiflow_casebook_check.md -include docs/falsiflow_demo_pr_playbook.md -include docs/falsiflow_github_action_examples.md -include docs/falsiflow_launch_execution.md -include docs/falsiflow_local_llm_eval.md -include docs/falsiflow_mcp.md -include docs/falsiflow_positioning.md -include docs/falsiflow_public_issue_queue.md -include docs/falsiflow_public_casebook.md -include docs/falsiflow_rag_quality_gate_proposal.md -include docs/falsiflow_pypi_trusted_publishing.md -include docs/falsiflow_security_posture.md -include docs/falsiflow_template_authoring.md -include docs/falsiflow_troubleshooting.md -recursive-include docs/launch_articles *.md -recursive-include docs/assets *.svg -recursive-include docs/assets *.png -include docs/assets/falsiflow_downstream_pr_proof_strip.svg -include docs/assets/falsiflow_30_second_demo.svg -include docs/assets/falsiflow_live_pr_story_reel.svg -recursive-include falsiflow/assets *.svg recursive-include .github/workflows *.yml -recursive-include .github/ISSUE_TEMPLATE *.yml -include .github/ISSUE_TEMPLATE/launch_feedback.yml include .github/PULL_REQUEST_TEMPLATE.md include .github/dependabot.yml diff --git a/Makefile b/Makefile index 72c24ff..206e644 100644 --- a/Makefile +++ b/Makefile @@ -1,56 +1,13 @@ -.PHONY: install-local pipx-install pipx-start start start-check onboard-check static-demo demo-package publish-kit external-evidence external-check release-proof cli-reference casebook-check test release-check clean +.PHONY: test build clean PYTHON ?= python3 -FALSIFLOW_OUT ?= falsiflow_start - -install-local: - $(PYTHON) -m pip install -e . - -pipx-install: - pipx install --force . - -pipx-start: - falsiflow start --out-dir $(FALSIFLOW_OUT) - -start: install-local - falsiflow start --out-dir $(FALSIFLOW_OUT) - -start-check: install-local - falsiflow start --out-dir $(FALSIFLOW_OUT) --check --json - -onboard-check: install-local - falsiflow onboard --check --json - -static-demo: install-local - falsiflow static-demo --out-dir falsiflow_static_demo --force - -demo-package: install-local - falsiflow demo-package --out-dir falsiflow_public_demo --force - -publish-kit: install-local - falsiflow publish-kit --out-dir falsiflow_publish_kit --force - -external-evidence: install-local - falsiflow external-evidence --out falsiflow_external_evidence.json --force - -external-check: install-local - falsiflow external-check --out-dir falsiflow_external_check --force - -release-proof: install-local - falsiflow release-proof --evidence falsiflow_external_evidence.json --readiness falsiflow_external_check/external_readiness.json --out release_proof.md - -cli-reference: install-local - falsiflow cli-reference --out docs/falsiflow_cli_reference.md - -casebook-check: install-local - falsiflow casebook-check --out-dir data/falsiflow/casebook_check --force test: - $(PYTHON) -m py_compile falsiflow/core.py falsiflow/cli.py falsiflow/adapters.py falsiflow/api.py falsiflow/mcp_server.py falsiflow/release.py falsiflow/adoption.py falsiflow/casebook_check.py falsiflow/bundle.py falsiflow/browser_demo.py falsiflow/demo.py falsiflow/discovery.py falsiflow/local_server.py falsiflow/public_release.py falsiflow/claim_check.py falsiflow/doctor.py falsiflow/quickstart.py falsiflow/scaffold.py falsiflow/template_discovery.py falsiflow/template_gallery.py falsiflow/template_check.py falsiflow/template_pack.py falsiflow/template_registry.py falsiflow/template_provenance.py falsiflow/template_release.py falsiflow/template_install.py scripts/falsiflow.py scripts/falsiflow_tests/regress_falsiflow_core.py + $(PYTHON) -m py_compile falsiflow/core.py falsiflow/bundle.py falsiflow/claim_check.py falsiflow/cli.py scripts/falsiflow.py scripts/falsiflow_tests/regress_falsiflow_core.py $(PYTHON) scripts/falsiflow_tests/regress_falsiflow_core.py -release-check: - $(PYTHON) scripts/falsiflow.py release-check --out-dir data/falsiflow/release_check --force +build: + $(PYTHON) -m build clean: rm -rf build dist falsiflow.egg-info __pycache__ diff --git a/README.md b/README.md index d173734..8ff54c3 100644 --- a/README.md +++ b/README.md @@ -1,26 +1,22 @@ # Falsiflow -Stop unverifiable AI eval, RAG eval, product metric, and R&D claims from -passing CI. +Stop numeric claims from passing CI until the evidence is reviewable. -![Falsiflow downstream PR proof strip](https://raw.githubusercontent.com/AzurLiu/falsiflow/main/docs/assets/falsiflow_downstream_pr_proof_strip.png) - -[![Falsiflow](https://github.com/AzurLiu/falsiflow/actions/workflows/falsiflow.yml/badge.svg)](https://github.com/AzurLiu/falsiflow/actions/workflows/falsiflow.yml) -[![Cross Platform](https://github.com/AzurLiu/falsiflow/actions/workflows/falsiflow-cross-platform.yml/badge.svg)](https://github.com/AzurLiu/falsiflow/actions/workflows/falsiflow-cross-platform.yml) -[![Scorecard](https://github.com/AzurLiu/falsiflow/actions/workflows/falsiflow-scorecard.yml/badge.svg)](https://github.com/AzurLiu/falsiflow/actions/workflows/falsiflow-scorecard.yml) - -Public demo: . PyPI trusted publishing: -completed. Current release: `v0.1.39`. +Falsiflow checks a project contract, an evidence CSV, and referenced source +files. It returns `claim_ready` only when required evidence exists, placeholder +values are gone, derived metrics compute, thresholds pass, and the review bundle +verifies. ## 30 Seconds ```bash +pipx install falsiflow git clone https://github.com/AzurLiu/falsiflow cd falsiflow -pipx install . + EX=examples/minimal_numeric_claim -falsiflow check --config "$EX/project.json" --evidence "$EX/evidence_placeholder.csv" -falsiflow check --config "$EX/project.json" --evidence "$EX/evidence_blocked.csv" +falsiflow check --config "$EX/project.json" --evidence "$EX/evidence_placeholder.csv" --strict +falsiflow check --config "$EX/project.json" --evidence "$EX/evidence_blocked.csv" --strict falsiflow check --config "$EX/project.json" --evidence "$EX/evidence_ready.csv" --strict ``` @@ -30,149 +26,40 @@ weak numeric lift -> claim_blocked source-backed evidence -> claim_ready ``` -At its core, Falsiflow is a numeric-claim gate: project config, evidence CSV, -and source file -> `claim_ready` or `claim_blocked` with reasons. It turns -vague claims like "the model improved" into a checked evidence package. - -## Live Proof - -Three public PRs show the same story: placeholder claims fail in CI; source -evidence is added; the PR becomes ready. - -| Claim | Blocked | Ready | -| --- | --- | --- | -| [AI eval PR #1](https://github.com/AzurLiu/falsiflow-downstream-ai-eval-demo/pull/1) | [run 26711652990](https://github.com/AzurLiu/falsiflow-downstream-ai-eval-demo/actions/runs/26711652990) | [run 26711669112](https://github.com/AzurLiu/falsiflow-downstream-ai-eval-demo/actions/runs/26711669112) | -| [RAG eval PR #1](https://github.com/AzurLiu/falsiflow-downstream-rag-eval-demo/pull/1) | [run 26721829145](https://github.com/AzurLiu/falsiflow-downstream-rag-eval-demo/actions/runs/26721829145) | [run 26721856616](https://github.com/AzurLiu/falsiflow-downstream-rag-eval-demo/actions/runs/26721856616) | -| [Product metric PR #1](https://github.com/AzurLiu/falsiflow-downstream-product-metric-demo/pull/1) | [run 26726360229](https://github.com/AzurLiu/falsiflow-downstream-product-metric-demo/actions/runs/26726360229) | [run 26726392921](https://github.com/AzurLiu/falsiflow-downstream-product-metric-demo/actions/runs/26726392921) | - -The shareable asset is -[docs/assets/falsiflow_downstream_pr_proof_strip.svg](docs/assets/falsiflow_downstream_pr_proof_strip.svg). -The live in-repo story is [PR #17](https://github.com/AzurLiu/falsiflow/pull/17): -[blocked run](https://github.com/AzurLiu/falsiflow/actions/runs/26708459093) -then [ready run](https://github.com/AzurLiu/falsiflow/actions/runs/26708472653). - -Falsiflow proves evidence-package readiness. It does not prove benchmark -correctness, model quality, RAG answer quality, RAG safety, or product impact. - ## GitHub Action ```yaml -name: Falsiflow +name: Claim Gate on: pull_request: - workflow_dispatch: jobs: claim-gate: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - uses: AzurLiu/falsiflow@v0.1.39 + - uses: AzurLiu/falsiflow@v0.2.0 with: - mode: claim-check - project-dir: falsiflow_ai_eval - evidence: falsiflow_ai_eval/evidence.csv + config: examples/minimal_numeric_claim/project.json + evidence: examples/minimal_numeric_claim/evidence_ready.csv strict: "true" ``` -Downstream examples: -[minimal numeric claim](examples/minimal_numeric_claim), -[AI eval](examples/downstream_ai_eval_smoke), -[RAG eval](examples/downstream_rag_eval_smoke), -[product metric](examples/downstream_product_metric_smoke), and -[local LLM import](examples/local_llm_eval_import). More Action examples live -in [docs/falsiflow_github_action_examples.md](docs/falsiflow_github_action_examples.md). - -## What It Is / Is Not - -Falsiflow is: - -- a local-first Python CLI and GitHub Action for claim gates; -- an evidence-package checker for AI eval, RAG eval, product metric, vendor, and - R&D claims; -- a way to require source-backed evidence, provenance, thresholds, raw files, - and bundle verification before CI passes. - -Falsiflow is not: - -- a model runner, hosted judge, RAG framework, experiment tracker, or API - service; -- a replacement for human review, benchmark design, statistical analysis, or - deployment approval; -- a place to upload private eval output. Local/private model artifacts are - imported from files and checked in the repo or private runner. - -## Use Cases - -### AI eval - -Use Falsiflow when a PR claims "model B improved over model A" and should prove -dataset version, prompt set hash, candidate and baseline model ids, evaluator -version, raw output artifact, metric rows, thresholds, and CI run metadata. - -Start from -[examples/downstream_ai_eval_smoke](examples/downstream_ai_eval_smoke) or the -`ai_claim_evaluation` quickstart. - -### RAG eval - -Use Falsiflow when a PR claims retrieval or answer quality improved and should -prove eval-set provenance, query hash, RAG versions, judge version, retrieval -metrics, answer/source metrics, raw artifacts, and reproducibility metadata. - -RAG import proof path: -[docs/falsiflow_rag_quality_gate_proposal.md](docs/falsiflow_rag_quality_gate_proposal.md) -and [examples/downstream_rag_eval_smoke](examples/downstream_rag_eval_smoke) -show `coverage_ready`, `claim_check_ready`, and the RAG evidence-package -readiness boundary with `--profile rag-eval`. - -### Product metric - -Use Falsiflow when a launch or experiment claim says activation, retention, -conversion, or another product metric moved and the PR should prove source -metric export, baseline, lift, guardrail, rollback readiness, and review notes. - -Start from -[examples/downstream_product_metric_smoke](examples/downstream_product_metric_smoke) -or the article -[Evidence Gates For Product Metrics](docs/launch_articles/evidence_gates_for_product_metrics.md). - -## More Docs - -- Local LLM/private runner imports: - [docs/falsiflow_local_llm_eval.md](docs/falsiflow_local_llm_eval.md) and - [examples/local_llm_eval_import](examples/local_llm_eval_import). -- Adapter profiles for `vendor-measurement`, `instrument-export`, - `plate-reader`, `ai-eval`, `local-llm-eval`, and `rag-eval`: - [docs/falsiflow_adapter_profiles.md](docs/falsiflow_adapter_profiles.md). -- Data contract and schemas: - [docs/falsiflow_data_contract.md](docs/falsiflow_data_contract.md), - [docs/falsiflow_cli_reference.md](docs/falsiflow_cli_reference.md). -- Architecture and boundaries: - [docs/falsiflow_architecture.md](docs/falsiflow_architecture.md), - [docs/falsiflow_positioning.md](docs/falsiflow_positioning.md), - [RESPONSIBLE_USE.md](RESPONSIBLE_USE.md). -- MCP/local agent integration: - [docs/falsiflow_mcp.md](docs/falsiflow_mcp.md). -- Public casebook and demo playbook: - [docs/falsiflow_public_casebook.md](docs/falsiflow_public_casebook.md), - [docs/falsiflow_demo_pr_playbook.md](docs/falsiflow_demo_pr_playbook.md). -- Template authoring and casebook checks: - [docs/falsiflow_template_authoring.md](docs/falsiflow_template_authoring.md), - [docs/falsiflow_casebook_check.md](docs/falsiflow_casebook_check.md). -- Troubleshooting, security, support, roadmap, citation, and governance: - [docs/falsiflow_troubleshooting.md](docs/falsiflow_troubleshooting.md), - [docs/falsiflow_security_posture.md](docs/falsiflow_security_posture.md), - [SUPPORT.md](SUPPORT.md), [ROADMAP.md](ROADMAP.md), - [CITATION.cff](CITATION.cff), [GOVERNANCE.md](GOVERNANCE.md). - -## Release Posture - -`v0.1.39` is the current PyPI and GitHub release. Patch releases are frozen -unless a real correctness, packaging, or security issue appears. The next -planned public launch release should be: +## What It Is -```text -v0.2.0: AI/RAG/Product Claim Gate Launch -``` +Falsiflow is a small Python CLI and GitHub Action for gating numeric claims: + +- RAG recall improved by a configured threshold. +- A model eval metric beat a baseline. +- A product metric moved enough to ship. +- A vendor, lab, or instrument result meets a spec. + +It writes a machine-readable summary, Markdown report, source manifest, and +evidence bundle zip under the chosen output directory. + +## What It Is Not + +Falsiflow does not prove that a model is good, a RAG answer is safe, a product +metric is causally true, or a scientific claim is correct. It only proves that +the configured evidence package is complete enough to review. diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 59b8b03..0000000 --- a/RELEASE.md +++ /dev/null @@ -1,273 +0,0 @@ -# Falsiflow Release Checklist - -Use this checklist before tagging or publishing a Falsiflow release. - -## Preflight - -1. Confirm the version in [pyproject.toml](pyproject.toml) matches - [falsiflow/__init__.py](falsiflow/__init__.py). -2. Update [CHANGELOG.md](CHANGELOG.md) for the release version. -3. Confirm the PyPI package metadata in [pyproject.toml](pyproject.toml): - `requires-python`, keywords, classifiers, and project URLs for homepage, - docs, source, issues, changelog, demo, architecture, data contract, - casebook check, citation, and governance. -4. Confirm [README.md](README.md), [CONTRIBUTING.md](CONTRIBUTING.md), - [CITATION.cff](CITATION.cff), [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md), - [GOVERNANCE.md](GOVERNANCE.md), [SUPPORT.md](SUPPORT.md), - [ROADMAP.md](ROADMAP.md), and - [docs/falsiflow_architecture.md](docs/falsiflow_architecture.md) plus - [docs/falsiflow_data_contract.md](docs/falsiflow_data_contract.md), - [docs/falsiflow_adapter_profiles.md](docs/falsiflow_adapter_profiles.md), - [docs/falsiflow_mcp.md](docs/falsiflow_mcp.md), - [docs/falsiflow_casebook_check.md](docs/falsiflow_casebook_check.md), - [docs/falsiflow_security_posture.md](docs/falsiflow_security_posture.md), - [docs/falsiflow_template_authoring.md](docs/falsiflow_template_authoring.md), - [docs/falsiflow_troubleshooting.md](docs/falsiflow_troubleshooting.md), - and [docs/falsiflow_1k_launch_plan.md](docs/falsiflow_1k_launch_plan.md) - describe the current citation, community, governance, security, - architecture, data contract, adapter profiles, MCP agent boundary, casebook - proof, template authoring, troubleshooting, launch, supply-chain, and - release posture. -5. Confirm [SECURITY.md](SECURITY.md) and - [RESPONSIBLE_USE.md](RESPONSIBLE_USE.md) still match the release behavior and - evidence-boundary language. -6. Confirm `.github/dependabot.yml` still tracks GitHub Actions and Python - packaging inputs, and `.github/workflows/falsiflow-scorecard.yml` still runs - OpenSSF Scorecard with SARIF upload. -7. Confirm [scripts/install_local.sh](scripts/install_local.sh), - [scripts/install_local.ps1](scripts/install_local.ps1), and - [Makefile](Makefile) still install and launch the local browser app. -8. Confirm [action.yml](action.yml) still exposes the reusable GitHub Action - for `claim-check`, `template-check`, `casebook-check`, `release-check`, - `adoption-check`, `quickstart`, and `external-check` modes. -9. Confirm [docs/falsiflow_adoption_priorities.md](docs/falsiflow_adoption_priorities.md) - still matches the current optimization priorities. -10. Confirm - [docs/falsiflow_mvp.md](docs/falsiflow_mvp.md) describe any new public - commands, schemas, community expectations, support boundaries, roadmap - direction, security posture, or release gates. - -## Required Gates - -```bash -python3 -m py_compile \ - falsiflow/core.py \ - falsiflow/cli.py \ - falsiflow/adapters.py \ - falsiflow/api.py \ - falsiflow/mcp_server.py \ - falsiflow/release.py \ - falsiflow/adoption.py \ - falsiflow/casebook_check.py \ - falsiflow/bundle.py \ - falsiflow/browser_demo.py \ - falsiflow/demo.py \ - falsiflow/discovery.py \ - falsiflow/local_server.py \ - falsiflow/public_release.py \ - falsiflow/claim_check.py \ - falsiflow/doctor.py \ - falsiflow/quickstart.py \ - falsiflow/scaffold.py \ - falsiflow/template_discovery.py \ - falsiflow/template_gallery.py \ - falsiflow/template_check.py \ - falsiflow/template_pack.py \ - falsiflow/template_registry.py \ - falsiflow/template_provenance.py \ - falsiflow/template_release.py \ - falsiflow/template_install.py \ - scripts/falsiflow.py \ - scripts/falsiflow_tests/regress_falsiflow_core.py - -python3 scripts/falsiflow_tests/regress_falsiflow_core.py -python3 scripts/falsiflow.py mcp --selftest --json -scripts/install_local.sh --from-local . --prefix /tmp/falsiflow_install_check --check -python3 scripts/falsiflow.py onboard --out-dir /tmp/falsiflow_onboard_check --check --json -python3 scripts/falsiflow.py static-demo --out-dir /tmp/falsiflow_static_demo_check --force --json -python3 scripts/falsiflow.py demo-package --out-dir /tmp/falsiflow_public_demo_check --force --json -python3 scripts/falsiflow.py publish-kit --out-dir /tmp/falsiflow_publish_kit_check --force --json -python3 scripts/falsiflow.py external-evidence --out /tmp/falsiflow_external_evidence.json --force --json -python3 scripts/falsiflow.py external-check --out-dir /tmp/falsiflow_external_check --force -python3 scripts/falsiflow.py evidence import --profile local-llm-eval --input examples/local_llm_eval_import/falsiflow_local_llm_eval/source_files/local_eval_results.jsonl --manifest examples/local_llm_eval_import/falsiflow_local_llm_eval/local_model_manifest.json --out /tmp/falsiflow_local_llm_evidence.csv --summary-out /tmp/falsiflow_local_llm_import_summary.json --config examples/local_llm_eval_import/falsiflow_local_llm_eval/project.json --coverage-out /tmp/falsiflow_local_llm_import_coverage.json --source-file source_files/local_eval_results.jsonl --strict --json -python3 scripts/falsiflow.py casebook-check --out-dir data/falsiflow/casebook_check --force -python3 scripts/falsiflow.py adoption-check --out-dir data/falsiflow/adoption_check --force -python3 scripts/falsiflow.py release-check --out-dir data/falsiflow/release_check --force -``` - -The final `release-check` must report: - -- `release_ready` -- `package_ready` -- `adoption_ready` -- `release_validation_ready` -- `dist_ready` -- `demo_package_ready` -- `publish_kit_ready` for the generated release handoff kit -- `downstream_smoke_replay_ready`, proving the maintained downstream AI eval, - product metric, and RAG eval fixtures replay as placeholder - `claim_check_blocked` and source-backed `claim_check_ready` with - `bundle_verified` from `examples/downstream_ai_eval_smoke`, - `examples/downstream_product_metric_smoke`, and - `examples/downstream_rag_eval_smoke` -- reusable `action.yml` supports `evidence-import`, and - `examples/local_llm_eval_import` proves a local/private model JSONL plus - `local_model_manifest.json` can move from `claim_check_blocked` to - `coverage_ready` and `claim_check_ready` without Falsiflow running a model or - opening an API port -- `external-evidence` has produced a structured evidence file for hosted demo, - public PyPI package URL, checkout-based pipx smoke, public-package pipx - smoke, public-package first-run quickstart/doctor, public-package MCP selftest, - public-package claim-check, public-package first-run and MCP selftest proof, - Windows/PowerShell smoke results, the expected PyPI package version, - and the PyPI JSON API response -- the `Falsiflow External Evidence` workflow artifact includes - `falsiflow_external_evidence.json`, `falsiflow_pypi_project.json`, - `falsiflow_expected_version.txt`, `falsiflow_pypi_version.txt`, - `falsiflow_public_package_first_run_quickstart.json`, - `falsiflow_public_package_first_run_doctor.json`, - `falsiflow_public_package_claim_check.json`, - `falsiflow_public_package_mcp_selftest.json`, - `external_readiness.json`, and `external_readiness.md` for the final public - demo URL and PyPI package; the PyPI JSON `published_version` must match the - workflow `expected_version` input or the version in `pyproject.toml` -- after downloading the `falsiflow-external-evidence` workflow artifact, run - `falsiflow release-proof --evidence falsiflow_external_evidence.json --readiness falsiflow_external_check/external_readiness.json --out release_proof.md` - to generate a release-note proof snippet. The snippet must include the exact - External Evidence run URL, `pypi_version_match=passed`, - `public_package_claim_check=passed`, `claim_check_ready`, - `bundle_verified`, and `external_ready`. -- `external_check_status` is `external_ready` for a public release, or - `external_blocked` only while public repo/demo/PyPI URLs, pipx public-package - smoke, public-package first-run quickstart/doctor, public-package claim-check, - public-package MCP selftest, or Windows validation are intentionally pending -- if PyPI returns `invalid-publisher`, the maintainer has followed - [docs/falsiflow_pypi_trusted_publishing.md](docs/falsiflow_pypi_trusted_publishing.md) - and configured the pending publisher or existing-project trusted publisher - with project `falsiflow`, owner `AzurLiu`, repository `falsiflow`, workflow - `falsiflow-publish.yml`, and environment `pypi` -- zero package failures -- zero dist failures -- one-command `quickstart` reports `quickstart_ready` -- `quickstart_summary.json` includes doctor handoff `next_commands` -- one-command `doctor --project-dir` reports `doctor_ready` -- `doctor_summary.json` includes a `repair_checklist` -- one-command `claim-check --project-dir` reports `claim_check_ready` -- `mcp --selftest --json` reports `mcp_selftest_ready`, lists the local - claim/bundle/blocker/todo tools, lists local resources, runs a source-backed - bundled claim check, verifies its bundle, and reads the blocker context -- audit review decision cards generated and bundled -- all starter bundles verified -- template gallery ready with the bundled cross-domain starters -- `casebook_check_ready` with positive demo proofs, placeholder blockers, source - provenance, verified bundles, and reviewer replay scripts across bundled - starters -- packaged starter template pack verified -- template registry ready and template lock written -- registry `source_url` and lockfile SHA-256 source pin verified -- packaged starter template pack installed with `template_installed` -- template release bundle verified with `template_release_verified` -- packaged starter template release installed with `template_installed` -- `adoption_check.json` reports all five priorities ready -- `adoption_check.json` includes a `repair_checklist` command with expected - artifact and success signal -- PyPI metadata declares `requires-python`, discovery keywords, audience/topic - classifiers, and project URLs for homepage, docs, source, issues, changelog, - demo, architecture, data contract, adapter profiles, casebook check, citation, - and governance -- architecture documentation is present: - `docs/falsiflow_architecture.md` -- data contract documentation is present: - `docs/falsiflow_data_contract.md` -- adapter profile documentation is present: - `docs/falsiflow_adapter_profiles.md` -- casebook-check documentation is present: - `docs/falsiflow_casebook_check.md` -- template authoring documentation is present: - `docs/falsiflow_template_authoring.md` -- troubleshooting documentation is present: - `docs/falsiflow_troubleshooting.md` -- community trust files are present: `CODE_OF_CONDUCT.md`, `SUPPORT.md`, and - `ROADMAP.md` -- citation and governance files are present: `CITATION.cff` and - `GOVERNANCE.md` -- security posture files and automation are present: `SECURITY.md`, - `docs/falsiflow_security_posture.md`, `.github/dependabot.yml`, and the - `Falsiflow Scorecard` workflow with SARIF upload -- local build caches such as `build/` and `falsiflow.egg-info/` are not left - behind by the distribution gate -- zero unsafe paths, unmanifested files, or registry/lock SHA-256 mismatches in - the template release verification report -- GitHub Actions workflow files exist for full CI, GitHub Pages demo deploy, - cross-platform Windows/macOS/Linux smoke tests, pipx smoke tests, external - evidence artifact capture with PyPI JSON expected-version verification, - OpenSSF Scorecard - reporting, and PyPI trusted-publishing release builds -- `action.yml` exists for downstream GitHub Actions adoption and the main CI - workflow runs a reusable-action quickstart smoke - -## Artifact Review - -Inspect these generated files before publishing: - -- `data/falsiflow/release_check/release_check.md`, especially the - `Release Review Artifact Index` linking claim-check, source manifest, bundle - verification, evidence bundle, and template release verification artifacts -- `data/falsiflow/release_check/release_check.json` -- `data/falsiflow/release_check/release_check.md` -- `data/falsiflow/release_check/public_demo/demo_package_summary.json` -- `data/falsiflow/release_check/public_demo/publish_checklist.md` -- `data/falsiflow/publish_kit/publish_handoff.json` -- `data/falsiflow/publish_kit/github_publish_commands.sh` -- `data/falsiflow/release_check/publish_kit/public_release_evidence.json` -- `data/falsiflow/release_check/publish_kit/public_release_evidence.md` -- `data/falsiflow/release_check/publish_kit/release_rehearsal.json` -- `data/falsiflow/release_check/publish_kit/release_rehearsal.md` - for the public release rehearsal commands, expected artifacts, success - signals, and strict external stop conditions -- `data/falsiflow/release_check/publish_kit/external_evidence_template.json` -- `data/falsiflow/release_check/external_readiness/external_readiness.json` -- `data/falsiflow/release_check/external_readiness/external_readiness.md` -- `data/falsiflow/release_check/adoption_check.json` -- `data/falsiflow/release_check/adoption_check.md` -- `data/falsiflow/adoption_check/adoption_check.json` -- `data/falsiflow/adoption_check/adoption_check.md` -- `data/falsiflow/release_check/quickstart_project/quickstart_summary.json` -- `data/falsiflow/release_check/quickstart_project/quickstart_summary.md` -- `data/falsiflow/release_check/doctor/doctor_summary.json` -- `data/falsiflow/release_check/doctor/doctor_summary.md` -- `data/falsiflow/release_check/doctor/project_validation.json` -- `data/falsiflow/release_check/doctor/evidence_diagnostics.json` -- `data/falsiflow/release_check/claim_check/claim_check.json` -- `data/falsiflow/release_check/claim_check/claim_check.md` -- `data/falsiflow/release_check/claim_check/evidence_bundle_verify.md` -- the `Review Artifact Index` sections in `claim_check.md`, - `evidence_bundle_verify.md`, and `template_release_verification.md` -- `data/falsiflow/release_check/demo/audit/audit_review.json` -- `data/falsiflow/release_check/demo/audit/audit_review.md` -- `data/falsiflow/release_check/template_gallery.json` -- `data/falsiflow/release_check/template_gallery.md` -- `data/falsiflow/release_check/casebook_check/casebook_reviewer_replay.md` -- `data/falsiflow/release_check/casebook_check/casebook_reviewer_replay.sh` -- `data/falsiflow/release_check/casebook_check/casebook_reviewer_replay.ps1` -- `data/falsiflow/release_check/template_pack.zip` -- `data/falsiflow/release_check/template_pack_verification.md` -- `data/falsiflow/release_check/template_registry.json` -- `data/falsiflow/release_check/falsiflow_template_lock.json` -- `data/falsiflow/release_check/falsiflow_template_lock.attestation.json` -- `data/falsiflow/release_check/falsiflow_template_policy.json` -- `data/falsiflow/release_check/template_release.zip` -- `data/falsiflow/release_check/template_release_verification.json` -- `data/falsiflow/release_check/template_release_verification.md` -- `data/falsiflow/release_check/template_install_templates/falsiflow_template_index.json` -- `data/falsiflow/release_check/dist/wheel/*.whl` -- `data/falsiflow/release_check/dist/sdist/*.tar.gz` - -The wheel must install in isolation and pass installed-package `release-check`. -The sdist must include release docs, package modules, starter template data, -community templates, architecture documentation, template authoring -documentation, data contract documentation, adapter profile documentation, -casebook-check documentation, citation and governance files, -Dependabot config, Scorecard workflow, troubleshooting documentation, and the -security posture documentation. Security and responsible-use docs must be -present in the sdist. diff --git a/RESPONSIBLE_USE.md b/RESPONSIBLE_USE.md deleted file mode 100644 index cdfef70..0000000 --- a/RESPONSIBLE_USE.md +++ /dev/null @@ -1,46 +0,0 @@ -# Responsible Use - -Falsiflow helps make high-risk technical claims harder to advance without -evidence. It does not create experimental facts. It audits the project config, -evidence rows, source-file provenance, derived metrics, bundle manifests, and -acceptance rules supplied by the user. - -## What Falsiflow Can Say - -Falsiflow can report that a configured claim is ready under the evidence gates -you defined. It can also show why a claim is blocked, which files support the -claim, and whether a portable evidence bundle verifies against its manifest. - -## What Falsiflow Cannot Say - -Falsiflow output is not proof of: - -- biological safety -- clinical safety or efficacy -- regulatory compliance -- material biocompatibility -- experimental truth -- commercial readiness -- absence of hidden confounders or measurement error - -Use Falsiflow as an audit and handoff layer, not as a substitute for independent -experimental validation, expert review, legal review, clinical review, or -regulatory review. - -## User Responsibilities - -- Keep raw source files, chain-of-custody records, and metadata accurate. -- Define acceptance rules before interpreting results where possible. -- Preserve failed and blocked evidence instead of deleting inconvenient rows. -- Verify received bundles before relying on them. -- Document assumptions, controls, measurement limits, and known missing data. -- Avoid presenting `claim_ready` as a universal truth outside the configured - project scope. - -## High-Risk Domains - -For biomaterials, wetware, neural interfaces, medical devices, cell assays, or -other safety-sensitive work, Falsiflow should only support planning, -traceability, and review. Decisions that affect people, animals, patients, -regulated products, or paid customer claims require independent expert -judgment and appropriate external validation. diff --git a/ROADMAP.md b/ROADMAP.md deleted file mode 100644 index b7d1420..0000000 --- a/ROADMAP.md +++ /dev/null @@ -1,73 +0,0 @@ -# Falsiflow Roadmap - -This roadmap keeps the public direction narrow: make evidence-gated claims easy -to try, hard to misuse, and straightforward to verify before publication. - -## Now - -- Keep `quickstart`, `doctor`, `claim-check`, `adoption-check`, and - `release-check` reliable as the first-run path. -- Maintain bundled starter templates for coatings, neural materials, vendor - handoffs, and wetware support hardware. -- Keep template packaging, lockfiles, attestations, policies, releases, and - installs release-checked. -- Preserve the responsible-use boundary in CLI output, docs, launch copy, and - issue templates. -- Keep built-in adapter profiles for generic wide CSV, vendor measurement, - instrument export, and plate-reader imports documented and regression-tested. -- Keep the browser workbench useful for non-CLI reviewers by surfacing the - ready/blocked review flow, evidence lineage, repair checklist, and linked - artifacts from the local app. -- Keep report-level artifact indexes in `claim_check.md`, bundle verification, - release-check, and template release verification reports so reviewers can - follow source, bundle, and template-release evidence without directory hunting. -- Keep public casebook reviewer replay artifacts for Bash and PowerShell so - positive demos and placeholder blocked-path fixtures can be reproduced without - hand-copying commands from prose. -- Keep the local stdio MCP server selftestable so coding-agent integrations can - prove claim, bundle, blocker, and evidence-todo tools without opening a - network API or running models. -- Keep launch metrics artifacts in the public launch kit so GitHub traffic, - referrers, stars, forks, clones, demo visits, install/download signals, and - repeated questions are reviewed after launch instead of guessed from memory. -- Keep a public release evidence ledger in the publish kit so repo, demo, PyPI, - pipx, Windows, Scorecard, release-check, casebook replay, and launch metrics - evidence are reviewed from one place. -- Keep a public release rehearsal in the publish kit so preflight commands, - expected artifacts, success signals, and strict external stop conditions are - reviewed before public announcements. -- Use the `Falsiflow External Evidence` workflow to collect hosted demo, PyPI - package URL, checkout-based pipx, public-package pipx, and Windows smoke - evidence after public launch. -- Keep a small public queue of `good first issue`, `help wanted`, template, and - launch-readiness issues so new contributors can improve docs, demo proof, - examples, and starter gates without changing the core claim contract. - -## Next - -- Add additional import profiles only when their column mapping, provenance - behavior, and coverage checks can be documented and tested. -- Expand release evidence around PyPI, GitHub Pages, and cross-platform smoke - artifacts once the public repository is live. -- Expand the RAG quality gate proposal into a bundled starter template once the - initial PyPI and external-evidence loop is closed. -- Add more opinionated downstream examples for AI eval and product-metric - repositories after the reusable action is pinned to a public release tag. - -## Later - -- Support template registries maintained by external teams. -- Add optional signed release evidence beyond local HMAC attestations. -- Add more domain templates only when they include clear claims, evidence - contracts, source-file examples, and responsible-use boundaries. -- Explore lightweight integrations with ELN/LIMS exports, CI artifacts, and - hosted docs without turning Falsiflow into an orchestrator or database. - -## Not Planned - -- Arbitrary code execution inside project configs. -- Replacing ELN/LIMS, laboratory notebooks, regulatory systems, or expert - review. -- Treating `claim_ready` as scientific proof, safety proof, clinical evidence, - or commercial approval. -- Hidden cloud upload or hosted data processing as a default workflow. diff --git a/SECURITY.md b/SECURITY.md index a0f3623..cdffb19 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,72 +1,11 @@ -# Security Policy +# Security -Falsiflow is a local-first evidence workflow tool. It does not execute arbitrary -project-config code, but it does read project files, evidence CSVs, source-file -references, bundle archives, and generated reports. Treat those inputs as -untrusted unless they come from a source you control. +Falsiflow is local-first. It reads local project, evidence, and source files and +writes local reports and bundles. -## Reporting Security Issues +Please report issues involving path traversal, unsafe bundle extraction, hash +verification, provenance bypasses, or GitHub Action behavior through GitHub +Security Advisories. -Please avoid posting exploit details in public issues. Use the repository's -private security advisory channel when available. If no private channel exists, -contact the maintainers through the least-public project channel available and -include only enough detail to reproduce the issue safely. - -Treat a vulnerability in path handling, bundle or template-pack verification, -source provenance, or packaging as security-sensitive even when it does not -involve network access. - -Useful reports include: - -- a short impact summary -- affected Falsiflow version or commit -- operating system and Python version -- a minimal reproduction bundle, project config, or command -- whether source files, zip archives, or generated reports are involved - -## Scope - -Security-relevant issues include: - -- unsafe bundle zip extraction or path traversal -- incorrect SHA-256 or byte-size verification -- unsafe template-pack zip extraction or template substitution -- source-file provenance bypasses -- unexpected file writes outside requested output directories -- command behavior that marks blocked evidence as ready -- packaging issues that omit required templates or release documentation - -## Evidence Bundle Handling - -Run `falsiflow verify-bundle` before trusting a received bundle. Do not treat a -bundle as trustworthy just because it opens successfully; verification must -check paths, hashes, byte sizes, copied source records, and unmanifested files. - -Run `falsiflow verify-template-pack` before trusting a received starter -template. Prefer `falsiflow template-install` for adoption: it verifies the zip, -reruns `template-check`, and writes `falsiflow_template_index.json` before a -template is reused. For repeatable adoption, generate a registry with -`falsiflow template-registry`, lock an entry with `falsiflow template-lock`, and -install from `falsiflow_template_lock.json` so the source zip byte count and -SHA-256 are pinned. Treat registry `source_url` values as untrusted until the -lock and install steps re-check their hashes. For distributed locks, run -`falsiflow template-attest` and `falsiflow verify-template-attestation`; a -`template_attestation_verified` report means the lockfile bytes and optional -HMAC signature matched the expected subject. Use `template-install --attestation -... --require-attestation` when adopting templates from a signed lock. For team -allowlists, create `falsiflow template-policy`, verify it with -`falsiflow verify-template-policy`, and install with `template-install --policy`. -For distribution to another team or machine, prefer `falsiflow -template-release`, verify it with `falsiflow verify-template-release`, and -install with `template-install --release` so the pack, registry, lock, -attestation, and policy are checked together. Treat a release as untrusted if -verification reports unsafe artifact paths, duplicate artifact paths, -unmanifested files, hash mismatches, or a registry SHA-256 mismatch against the -lockfile. Use `verify-template-release --report-out` to keep a Markdown review -record alongside the machine-readable JSON report. - -## Supported Versions - -The active development version is checked by `falsiflow release-check`. Until -the project has multiple maintained release lines, security fixes target the -current release line. +Do not attach private evidence files, credentials, model outputs, customer data, +or unpublished lab data to public issues. diff --git a/SUPPORT.md b/SUPPORT.md deleted file mode 100644 index bdc07e6..0000000 --- a/SUPPORT.md +++ /dev/null @@ -1,51 +0,0 @@ -# Falsiflow Support - -Falsiflow support is focused on helping users reproduce command behavior, -understand ready/blocked reports, and adopt starter templates safely. - -Before opening an issue, check -[docs/falsiflow_troubleshooting.md](docs/falsiflow_troubleshooting.md) for the -common recovery path for install failures, `claim_check_blocked`, -`doctor_blocked`, template verification failures, `release_blocked`, and -`external_blocked`. - -## Good Support Requests - -Open an issue when you can share: - -- the exact command you ran -- operating system and Python version -- Falsiflow version or commit -- the relevant `claim_check.json`, `doctor_summary.json`, - `external_readiness.json`, or `release_check.json` -- the `repair_checklist`, `next_commands`, or `next_actions` entry you followed -- whether the issue uses bundled demo data or private evidence - -Do not attach private lab data, credentials, proprietary vendor replies, or -sensitive source files to public issues. Use sanitized fixtures or describe the -shape of the evidence instead. - -## Where To Ask - -- Bugs: use `.github/ISSUE_TEMPLATE/bug_report.yml`. -- Feature requests: use `.github/ISSUE_TEMPLATE/feature_request.yml`. -- Claim-gate or template requests: use - `.github/ISSUE_TEMPLATE/claim_gate_request.yml`. -- Security issues: follow `SECURITY.md`. -- Conduct issues: follow `CODE_OF_CONDUCT.md`. - -## What Maintainers Can Help With - -- reproducing CLI failures -- interpreting blocked readiness reports -- improving docs, templates, schemas, or release gates -- triaging template supply-chain verification issues -- identifying whether a request belongs in Falsiflow or in an ELN/LIMS, - spreadsheet, CI suite, or workflow orchestrator - -## What Maintainers Cannot Provide - -Maintainers cannot validate scientific truth, regulatory compliance, medical -safety, commercial readiness, or private experimental conclusions. Falsiflow can -audit supplied evidence against configured gates; independent expert review is -still required for high-risk decisions. diff --git a/action.yml b/action.yml index 7f7aa0a..44bdc61 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,5 @@ name: Falsiflow -description: "Install Falsiflow and run evidence gates in GitHub Actions." +description: "Install Falsiflow and block numeric claims without reviewable evidence." author: Falsiflow contributors branding: @@ -8,111 +8,49 @@ branding: inputs: mode: - description: "Gate to run: claim-check, evidence-import, template-check, casebook-check, release-check, adoption-check, quickstart, or external-check." + description: "Gate to run: check. claim-check is accepted as a legacy alias." required: false - default: claim-check + default: check python-version: description: "Python version for actions/setup-python." required: false default: "3.11" install-command: - description: "Command that installs Falsiflow before running the gate. Defaults to the versioned action checkout." + description: "Command that installs Falsiflow before running the gate." required: false default: 'python -m pip install "$GITHUB_ACTION_PATH"' working-directory: description: "Directory where the Falsiflow command should run." required: false default: "." - out-dir: - description: "Output directory for generated Falsiflow artifacts." - required: false - default: data/falsiflow/action_check - project-dir: - description: "Project directory for claim-check mode." - required: false - default: "" config: - description: "Project config path for claim-check mode when project-dir is not used." - required: false - default: "" + description: "Project config JSON path." + required: true evidence: - description: "Evidence CSV path for claim-check mode, or output evidence CSV path for evidence-import mode." - required: false - default: "" - profile: - description: "Import profile for evidence-import mode, such as local-llm-eval, ai-eval, rag-eval, or generic-wide." - required: false - default: generic-wide - input: - description: "Source artifact path for evidence-import mode. Use one path per line for multiple inputs." - required: false - default: "" - manifest: - description: "Manifest JSON path for ai-eval, local-llm-eval, and rag-eval evidence-import mode." - required: false - default: "" - source-file: - description: "Source file value to record in imported evidence rows for evidence-import mode." - required: false - default: "" - summary-out: - description: "Import summary JSON path for evidence-import mode." - required: false - default: "" - coverage-out: - description: "Coverage summary JSON path for evidence-import mode when config is provided." - required: false - default: "" - candidate-id: - description: "Candidate id override for evidence-import mode." - required: false - default: "" - baseline-candidate-id: - description: "Baseline candidate id override for ai-eval, local-llm-eval, and rag-eval evidence-import mode." - required: false - default: "" - sample-id: - description: "Eval run or sample id override for evidence-import mode." - required: false - default: "" - template-dir: - description: "Template directory for template-check mode." - required: false - default: "" - template: - description: "Starter template for quickstart mode." - required: false - default: biointerface_coatings - evidence-file: - description: "Structured external evidence JSON for external-check mode." + description: "Evidence CSV path." + required: true + out-dir: + description: "Output directory for generated Falsiflow artifacts." required: false - default: "" + default: data/falsiflow/check strict: - description: "Use strict mode for claim-check, quickstart, and external-check." + description: "Exit non-zero unless the claim is ready." required: false default: "true" force: - description: "Replace existing Falsiflow output directories." + description: "Replace an existing Falsiflow output directory." required: false default: "true" - skip-dist: - description: "Skip distribution build inside release-check." - required: false - default: "false" - extra-args: - description: "Additional shell-split arguments appended to the Falsiflow command." - required: false - default: "" outputs: out-dir: description: "Directory containing generated Falsiflow artifacts." value: ${{ steps.falsiflow.outputs.out-dir }} summary-json: - description: "Main machine-readable summary file produced by the selected mode." + description: "Machine-readable check summary." value: ${{ steps.falsiflow.outputs.summary-json }} summary-md: - description: "Main human-readable Markdown report produced by the selected mode when available." + description: "Human-readable Markdown report." value: ${{ steps.falsiflow.outputs.summary-md }} runs: @@ -136,230 +74,40 @@ runs: shell: bash env: FALSIFLOW_MODE: ${{ inputs.mode }} - FALSIFLOW_OUT_DIR: ${{ inputs.out-dir }} - FALSIFLOW_PROJECT_DIR: ${{ inputs.project-dir }} FALSIFLOW_CONFIG: ${{ inputs.config }} FALSIFLOW_EVIDENCE: ${{ inputs.evidence }} - FALSIFLOW_PROFILE: ${{ inputs.profile }} - FALSIFLOW_INPUT: ${{ inputs.input }} - FALSIFLOW_MANIFEST: ${{ inputs.manifest }} - FALSIFLOW_SOURCE_FILE: ${{ inputs.source-file }} - FALSIFLOW_SUMMARY_OUT: ${{ inputs.summary-out }} - FALSIFLOW_COVERAGE_OUT: ${{ inputs.coverage-out }} - FALSIFLOW_CANDIDATE_ID: ${{ inputs.candidate-id }} - FALSIFLOW_BASELINE_CANDIDATE_ID: ${{ inputs.baseline-candidate-id }} - FALSIFLOW_SAMPLE_ID: ${{ inputs.sample-id }} - FALSIFLOW_TEMPLATE_DIR: ${{ inputs.template-dir }} - FALSIFLOW_TEMPLATE: ${{ inputs.template }} - FALSIFLOW_EVIDENCE_FILE: ${{ inputs.evidence-file }} + FALSIFLOW_OUT_DIR: ${{ inputs.out-dir }} FALSIFLOW_STRICT: ${{ inputs.strict }} FALSIFLOW_FORCE: ${{ inputs.force }} - FALSIFLOW_SKIP_DIST: ${{ inputs.skip-dist }} - FALSIFLOW_EXTRA_ARGS: ${{ inputs.extra-args }} run: | set -euo pipefail cd "${{ inputs.working-directory }}" mode="$FALSIFLOW_MODE" - out_dir="$FALSIFLOW_OUT_DIR" - summary_json="" - summary_md="" - cmd=(falsiflow) - - add_force() { - if [ "$FALSIFLOW_FORCE" = "true" ]; then - cmd+=(--force) - fi - } - - add_strict() { - if [ "$FALSIFLOW_STRICT" = "true" ]; then - cmd+=(--strict) - fi - } - - case "$mode" in - claim-check) - cmd+=(claim-check --out-dir "$out_dir") - if [ -n "$FALSIFLOW_PROJECT_DIR" ]; then - cmd+=(--project-dir "$FALSIFLOW_PROJECT_DIR") - if [ -n "$FALSIFLOW_EVIDENCE" ]; then - cmd+=(--evidence "$FALSIFLOW_EVIDENCE") - fi - else - if [ -z "$FALSIFLOW_CONFIG" ] || [ -z "$FALSIFLOW_EVIDENCE" ]; then - echo "claim-check mode requires project-dir, or both config and evidence." >&2 - exit 2 - fi - cmd+=(--config "$FALSIFLOW_CONFIG" --evidence "$FALSIFLOW_EVIDENCE") - fi - add_force - add_strict - summary_json="$out_dir/claim_check.json" - summary_md="$out_dir/claim_check.md" - ;; - evidence-import) - if [ -z "$FALSIFLOW_INPUT" ]; then - echo "evidence-import mode requires input." >&2 - exit 2 - fi - evidence_out="$FALSIFLOW_EVIDENCE" - if [ -z "$evidence_out" ]; then - evidence_out="$out_dir/evidence.csv" - fi - summary_json="$FALSIFLOW_SUMMARY_OUT" - if [ -z "$summary_json" ]; then - summary_json="$out_dir/import_summary.json" - fi - coverage_json="$FALSIFLOW_COVERAGE_OUT" - if [ -z "$coverage_json" ]; then - coverage_json="$out_dir/import_coverage.json" - fi - cmd+=(evidence import --profile "$FALSIFLOW_PROFILE" --out "$evidence_out" --summary-out "$summary_json") - while IFS= read -r input_path; do - if [ -n "$input_path" ]; then - cmd+=(--input "$input_path") - fi - done <<< "$FALSIFLOW_INPUT" - if [ -n "$FALSIFLOW_MANIFEST" ]; then - cmd+=(--manifest "$FALSIFLOW_MANIFEST") - fi - if [ -n "$FALSIFLOW_CONFIG" ]; then - cmd+=(--config "$FALSIFLOW_CONFIG" --coverage-out "$coverage_json") - fi - if [ -n "$FALSIFLOW_SOURCE_FILE" ]; then - cmd+=(--source-file "$FALSIFLOW_SOURCE_FILE") - fi - if [ -n "$FALSIFLOW_CANDIDATE_ID" ]; then - cmd+=(--candidate-id "$FALSIFLOW_CANDIDATE_ID") - fi - if [ -n "$FALSIFLOW_BASELINE_CANDIDATE_ID" ]; then - cmd+=(--baseline-candidate-id "$FALSIFLOW_BASELINE_CANDIDATE_ID") - fi - if [ -n "$FALSIFLOW_SAMPLE_ID" ]; then - cmd+=(--sample-id "$FALSIFLOW_SAMPLE_ID") - fi - add_strict - ;; - template-check) - if [ -z "$FALSIFLOW_TEMPLATE_DIR" ]; then - echo "template-check mode requires template-dir." >&2 - exit 2 - fi - cmd+=(template-check --template-dir "$FALSIFLOW_TEMPLATE_DIR" --out-dir "$out_dir") - add_force - summary_json="$out_dir/template_check.json" - summary_md="$out_dir/template_check.md" - ;; - casebook-check) - cmd+=(casebook-check --out-dir "$out_dir") - add_force - summary_json="$out_dir/casebook_check.json" - summary_md="$out_dir/casebook_check.md" - ;; - release-check) - cmd+=(release-check --out-dir "$out_dir") - add_force - if [ "$FALSIFLOW_SKIP_DIST" = "true" ]; then - cmd+=(--skip-dist) - fi - summary_json="$out_dir/release_check.json" - summary_md="$out_dir/release_check.md" - ;; - adoption-check) - cmd+=(adoption-check --out-dir "$out_dir") - add_force - summary_json="$out_dir/adoption_check.json" - summary_md="$out_dir/adoption_check.md" - ;; - quickstart) - cmd+=(quickstart --template "$FALSIFLOW_TEMPLATE" --out "$out_dir") - add_force - add_strict - summary_json="$out_dir/quickstart_summary.json" - summary_md="$out_dir/quickstart_summary.md" - ;; - external-check) - cmd+=(external-check --out-dir "$out_dir") - if [ -n "$FALSIFLOW_EVIDENCE_FILE" ]; then - cmd+=(--evidence "$FALSIFLOW_EVIDENCE_FILE") - fi - add_force - add_strict - summary_json="$out_dir/external_readiness.json" - summary_md="$out_dir/external_readiness.md" - ;; - *) - echo "Unsupported Falsiflow action mode: $mode" >&2 - exit 2 - ;; - esac - - if [ -n "$FALSIFLOW_EXTRA_ARGS" ]; then - # shellcheck disable=SC2206 - extra_args=($FALSIFLOW_EXTRA_ARGS) - cmd+=("${extra_args[@]}") + if [ "$mode" = "claim-check" ]; then + mode="check" + fi + if [ "$mode" != "check" ]; then + echo "Unsupported Falsiflow mode: $FALSIFLOW_MODE. Use mode: check." >&2 + exit 2 + fi + if [ -z "$FALSIFLOW_CONFIG" ] || [ -z "$FALSIFLOW_EVIDENCE" ]; then + echo "Falsiflow check requires config and evidence." >&2 + exit 2 fi - cmd+=(--json) - - echo "Running: ${cmd[*]}" - set +e - "${cmd[@]}" - falsiflow_status=$? - set -e - - if [ -n "$summary_json" ] && [ -f "$summary_json" ] && [ -n "${GITHUB_STEP_SUMMARY:-}" ]; then - python - "$summary_json" "$mode" <<'PY' >> "$GITHUB_STEP_SUMMARY" - import json - import sys - - path, mode = sys.argv[1:3] - summary = json.load(open(path, encoding="utf-8")) - status = summary.get("status", "") - claim = summary.get("claim_id") or summary.get("project_id") or summary.get("template") or mode - blocking_stage = summary.get("blocking_stage", "") - print("## Falsiflow evidence gate") - print() - print(f"- Mode: `{mode}`") - print(f"- Status: `{status}`") - print(f"- Subject: `{claim}`") - if blocking_stage: - print(f"- Blocking stage: `{blocking_stage}`") - print(f"- Summary JSON: `{path}`") - - blockers = [] - for blocker in summary.get("top_blockers", [])[:5]: - if isinstance(blocker, dict): - blockers.append((blocker.get("gate_id", ""), blocker)) - if blockers: - print() - print("### Top blockers") - for gate_id, blocker in blockers: - reasons = "; ".join(str(reason) for reason in blocker.get("reasons", [])) - print(f"- `{gate_id}` `{blocker.get('sample_id', '')}` `{blocker.get('field', '')}`: {reasons}") - - actions = summary.get("next_actions", []) - if isinstance(actions, list) and actions: - print() - print("### Next evidence to add") - for action in actions[:5]: - if isinstance(action, dict): - print(f"- `{action.get('action_id', '')}`: {action.get('why', '')}") - todo = summary.get("evidence_todo", []) - if isinstance(todo, list) and todo: - print() - print("### Evidence todo") - for item in todo[:5]: - if isinstance(item, dict): - print(f"- `{item.get('gate_id', '')}/{item.get('sample_id', '')}/{item.get('field', '')}`: {item.get('repair_hint', '')}") - PY + cmd=(falsiflow check --config "$FALSIFLOW_CONFIG" --evidence "$FALSIFLOW_EVIDENCE" --out-dir "$FALSIFLOW_OUT_DIR" --json) + if [ "$FALSIFLOW_STRICT" = "true" ]; then + cmd+=(--strict) fi + if [ "$FALSIFLOW_FORCE" = "true" ]; then + cmd+=(--force) + fi + mkdir -p "$FALSIFLOW_OUT_DIR" + "${cmd[@]}" | tee "$FALSIFLOW_OUT_DIR/check_stdout.json" { - echo "out-dir=$out_dir" - echo "summary-json=$summary_json" - echo "summary-md=$summary_md" + echo "out-dir=$FALSIFLOW_OUT_DIR" + echo "summary-json=$FALSIFLOW_OUT_DIR/claim_check.json" + echo "summary-md=$FALSIFLOW_OUT_DIR/claim_check.md" } >> "$GITHUB_OUTPUT" - - exit "$falsiflow_status" diff --git a/configs/falsiflow/limina_nhi_pedot_habc/project.json b/configs/falsiflow/limina_nhi_pedot_habc/project.json deleted file mode 100644 index 58c2a4e..0000000 --- a/configs/falsiflow/limina_nhi_pedot_habc/project.json +++ /dev/null @@ -1,417 +0,0 @@ -{ - "claim": { - "id": "limina_nhi_pedot_habc_evidence_completeness", - "requires_gates": [ - "h_a_medium_stability", - "h_b_electrical_interface", - "h_c_network_response" - ], - "statement": "LIMINA NHI-PEDOT H-A/H-B/H-C evidence pack is complete enough for Falsiflow provenance audit. This is not a material suitability claim." - }, - "evidence_policy": { - "allowed_source_roots": [ - "data/source_files", - "data/source_files", - "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports" - ], - "placeholder_markers": [ - "pending_real_measurement", - "record_actual", - "record_exact", - "record_lot", - "source_file_missing", - "to_be_recorded", - "not_measured" - ], - "reject_placeholder_values": true, - "require_source_files": true, - "required_metadata_fields": [ - "source_file", - "measured_at", - "operator_or_agent" - ], - "source_file_base_dir": "../../.." - }, - "gates": [ - { - "acceptance_rules": [ - { - "field": "ph_drift_abs", - "operator": "<=", - "reason": "H-A pH drift must remain within 0.10 pH units.", - "value": 0.1 - }, - { - "field": "osmolality_drift_pct", - "operator": "<=", - "reason": "H-A osmolality drift must remain within 5 percent.", - "value": 5 - }, - { - "field": "conductivity_drift_pct", - "operator": "<=", - "reason": "H-A conductivity drift must remain within 5 percent.", - "value": 5 - }, - { - "field": "physical_inspection.visible_precipitate", - "operator": "==", - "reason": "H-A must show no visible precipitate.", - "value": false - }, - { - "field": "physical_inspection.visible_shedding", - "operator": "==", - "reason": "H-A must show no visible shedding.", - "value": false - }, - { - "field": "physical_inspection.swelling_fraction", - "operator": "<=", - "reason": "H-A swelling must remain below 20 percent.", - "value": 0.2 - } - ], - "derived_fields": [ - { - "field": "ph_drift_abs", - "left": "final.pH", - "operation": "abs_delta", - "right": "initial.pH" - }, - { - "after": "final.osmolality", - "before": "initial.osmolality", - "field": "osmolality_drift_pct", - "operation": "abs_pct_change" - }, - { - "after": "final.conductivity", - "before": "initial.conductivity", - "field": "conductivity_drift_pct", - "operation": "abs_pct_change" - } - ], - "id": "h_a_medium_stability", - "required_fields": [ - "final.conductivity", - "final.osmolality", - "final.pH", - "initial.conductivity", - "initial.osmolality", - "initial.pH", - "metadata.date", - "metadata.electrode_material", - "metadata.laminin_or_peptide_density", - "metadata.mea_coupon_id", - "metadata.medium_lot", - "metadata.medium_name", - "metadata.sterilization_or_aseptic_protocol", - "metadata.temperature_c", - "physical_inspection.delamination_score", - "physical_inspection.optical_transparency_fraction", - "physical_inspection.swelling_fraction", - "physical_inspection.visible_precipitate", - "physical_inspection.visible_shedding" - ], - "samples": [ - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - } - ], - "title": "H-A medium stability and physical integrity" - }, - { - "acceptance_rules": [ - { - "candidate_id_contains": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_reduction_pct", - "operator": ">=", - "reason": "Lead H-B electrical readout must improve impedance by at least 25 percent.", - "value": 25 - }, - { - "candidate_id_contains": "lead_nhi_pedot_low_loading", - "field": "charge_storage_gain_pct", - "operator": ">=", - "reason": "Lead H-B electrical readout must improve charge storage by at least 15 percent.", - "value": 15 - }, - { - "field": "swelling_fraction", - "operator": "<=", - "reason": "H-B swelling must remain below 20 percent.", - "value": 0.2 - }, - { - "field": "delamination_score", - "operator": "<=", - "reason": "H-B must show no delamination.", - "value": 0 - }, - { - "field": "optical_transparency_fraction", - "operator": ">=", - "reason": "H-B transparency must remain inspectable.", - "value": 0.8 - } - ], - "derived_fields": [ - { - "after": "eis_1khz_final_ohm", - "before": "eis_1khz_initial_ohm", - "field": "eis_1khz_reduction_pct", - "operation": "reduction_pct" - }, - { - "after": "charge_storage_capacity_final", - "before": "charge_storage_capacity_initial", - "field": "charge_storage_gain_pct", - "operation": "gain_pct" - } - ], - "id": "h_b_electrical_interface", - "required_fields": [ - "charge_storage_capacity_final", - "charge_storage_capacity_initial", - "crosslinking_protocol", - "date", - "delamination_score", - "eis_1khz_final_ohm", - "eis_1khz_initial_ohm", - "electrode_material", - "hydrogel_matrix", - "laminin_or_peptide_density", - "mea_coupon_id", - "medium_lot", - "medium_name", - "operator_or_agent", - "optical_transparency_fraction", - "pedot_pss_loading_fraction", - "pedot_pss_pre_rinse_protocol", - "sterilization_or_aseptic_protocol", - "swelling_fraction", - "temperature_c" - ], - "samples": [ - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - } - ], - "title": "H-B electrical and physical interface benefit" - }, - { - "acceptance_rules": [ - { - "candidate_id_contains": "lead_nhi_pedot_low_loading", - "field": "viability_fraction", - "operator": ">=", - "reason": "H-C lead viability must remain non-inferior enough to continue.", - "value": 0.85 - }, - { - "candidate_id_contains": "lead_nhi_pedot_low_loading", - "field": "ldh_fold_control", - "operator": "<=", - "reason": "H-C lead cytotoxicity must not materially exceed control.", - "value": 1.2 - }, - { - "candidate_id_contains": "lead_nhi_pedot_low_loading", - "field": "electrode_yield_fraction", - "operator": ">=", - "reason": "H-C lead electrode yield must remain acceptable.", - "value": 0.8 - } - ], - "id": "h_c_network_response", - "required_fields": [ - "burst_rate_hz", - "cell_model", - "crosslinking_protocol", - "date", - "electrode_material", - "electrode_yield_fraction", - "hydrogel_matrix", - "laminin_or_peptide_density", - "ldh_fold_control", - "mea_coupon_id", - "mean_neurite_length_um", - "medium_lot", - "medium_name", - "neurite_coverage_fraction", - "operator_or_agent", - "pedot_pss_loading_fraction", - "pedot_pss_pre_rinse_protocol", - "seeding_density", - "spike_rate_hz", - "sterilization_or_aseptic_protocol", - "temperature_c", - "viability_fraction" - ], - "samples": [ - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - } - ], - "title": "H-C cell and network response" - } - ], - "project": { - "domain": "limina-neural-materials", - "id": "limina_nhi_pedot_habc_falsiflow", - "name": "Limina Nhi Pedot Habc Falsiflow", - "version": "0.1.0" - } -} \ No newline at end of file diff --git a/data/biological_followup_schema.json b/data/biological_followup_schema.json deleted file mode 100644 index 5ad2b48..0000000 --- a/data/biological_followup_schema.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": "0.1", - "record_type": "limina_biological_followup_package", - "required_fields": [ - "id", - "parent_validation_package", - "lead_variant_id", - "title", - "objective", - "scope", - "test_articles", - "run_matrix", - "assay_panel", - "acceptance_gates", - "data_capture_fields", - "source_refs" - ], - "field_notes": { - "test_articles": "Biological follow-up conditions after non-cell gates pass.", - "run_matrix": "Design-level biological follow-up phases, not a wet-lab SOP.", - "assay_panel": "Biological readouts required to move from non-cell compatibility toward suitability.", - "acceptance_gates": "Initial biological pass/fail gates for neural wetware suitability claims.", - "data_capture_fields": "CSV fields used by the biological follow-up evaluator.", - "source_refs": "Evidence ids that motivate the package." - } -} diff --git a/data/bom_schema.json b/data/bom_schema.json deleted file mode 100644 index b54be40..0000000 --- a/data/bom_schema.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "version": "0.1", - "record_type": "limina_bom", - "required_fields": [ - "id", - "parent_validation_package", - "title", - "objective", - "items", - "source_refs" - ], - "field_notes": { - "items": "Procurement or capability anchors, not endorsements or proof of suitability.", - "source_refs": "Evidence ids or URLs that support the BOM." - } -} diff --git a/data/evidence_records.jsonl b/data/evidence_records.jsonl deleted file mode 100644 index f35957f..0000000 --- a/data/evidence_records.jsonl +++ /dev/null @@ -1,50 +0,0 @@ -{"assay_or_context": "Review of medium optimization in in vitro co-culture systems.", "claim": "A dialysis membrane can exchange low-molecular-weight nutrients and wastes while retaining high-molecular-weight growth factors in a culture compartment.", "confidence": "high", "evidence_type": "review", "id": "dialysis_medium_partitioning_2020", "material_or_component": "Dialysis membrane / size-selective medium partitioning", "readouts": ["low-MW exchange", "growth-factor retention", "lactate exchange", "ammonium exchange"], "related_priority": "LIMINA-External-1", "result_summary": "The review describes dialysis-based medium refreshment where amino acids, vitamins, lactate, and ammonium can cross depending on MWCO, while high-MW components such as growth factors are retained.", "risk_or_caveat": "MWCO-only selectivity may also remove beneficial small signaling molecules; neural medium-specific validation is required.", "source_title": "Impact of Culture Medium on Cellular Interactions in in vitro Co-culture Systems", "source_url": "https://www.frontiersin.org/articles/10.3389/fbioe.2020.00911/full"} -{"assay_or_context": "Experimental mesoscale microfluidic separation device for spent media regeneration.", "claim": "An ICP-based separator can regenerate spent culture media by removing inhibitory waste products from a side or waste stream.", "confidence": "medium", "evidence_type": "experimental", "id": "icp_spent_media_regeneration_2024", "material_or_component": "Ion concentration polarization microfluidic separator", "readouts": ["ammonium removal", "lactate removal", "spent-medium reuse", "integration in waste stream"], "related_priority": "LIMINA-External-1", "result_summary": "The study introduces a microfluidic ICP process to remove critical waste products from spent culture medium; prior electromembrane approaches drove ammonium and lactate through membranes away from cells.", "risk_or_caveat": "Electrochemical side effects, pH/conductivity shifts, and neural medium compatibility remain open validation issues.", "source_title": "Regeneration of Spent Culture Media for Sustainable and Continuous mAb Production via Ion Concentration Polarization", "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC11718426/"} -{"assay_or_context": "Review of cell culture medium cycling strategies.", "claim": "Ammonia and lactate removal plus growth-factor reuse are central challenges in recycled mammalian cell culture media.", "confidence": "medium", "evidence_type": "review", "id": "medium_cycling_review_2023", "material_or_component": "Medium recycling and waste removal strategies", "readouts": ["ammonia removal", "lactate removal", "growth-factor reuse", "medium cost", "cell growth"], "related_priority": "LIMINA-External-1", "result_summary": "The review frames ammonia and lactate as inhibitory by-products and surveys removal approaches including adsorption, biocatalysis, electrochemistry, and culture strategies.", "risk_or_caveat": "Cultured-meat and biomanufacturing lessons must be translated carefully to low-shear neural cultures and CL1-like wetware.", "source_title": "Cell culture medium cycling in cultured meat: Key factors and potential strategies", "source_url": "https://www.sciencedirect.com/science/article/pii/S0924224423002042"} -{"assay_or_context": "Minireview of ammonia toxicity and control strategies in mammalian cell culture.", "claim": "Ammonia accumulation can reduce growth rates and maximal cell densities, and removal strategies include ion-exchange resins, ion-exchange membranes, gas-permeable membranes, and electrodialysis.", "confidence": "high", "evidence_type": "review", "id": "ammonia_importance_review_1996", "material_or_component": "Ammonia/ammonium control in mammalian cell culture", "readouts": ["growth rate", "maximal cell density", "protein processing", "ammonia removal"], "related_priority": "LIMINA-External-1", "result_summary": "The review identifies ammonia as a long-standing toxic/inhibitory metabolite and summarizes process strategies for reducing or removing it from culture medium.", "risk_or_caveat": "The evidence is broad mammalian culture evidence rather than neuron-specific; thresholds vary across cell types.", "source_title": "The importance of ammonia in mammalian cell culture", "source_url": "https://www.sciencedirect.com/science/article/pii/0168165695001964"} -{"assay_or_context": "Experimental comparison across independent animal cell lines.", "claim": "Lactate and ammonia can interact synergistically at higher concentrations to inhibit growth in animal cell cultures.", "confidence": "medium", "evidence_type": "experimental", "id": "lactate_ammonia_growth_inhibition_1991", "material_or_component": "Lactate and ammonia accumulation", "readouts": ["growth inhibition", "ammonia concentration", "lactate concentration"], "related_priority": "LIMINA-External-1", "result_summary": "The study found variable cell-line sensitivity to ammonia and lactate, with synergistic growth inhibition at higher lactate and ammonia concentrations.", "risk_or_caveat": "The tested cell lines are not neural cells, but the interaction motivates monitoring both metabolites together.", "source_title": "Growth inhibition in animal cell culture. The effect of lactate and ammonia", "source_url": "https://pubmed.ncbi.nlm.nih.gov/1952924/"} -{"assay_or_context": "LC-MS/MS identification and impact testing of accumulating metabolites.", "claim": "Mammalian cell cultures can accumulate inhibitory metabolites beyond lactate and ammonia, supporting broader metabolomics-based cartridge validation.", "confidence": "medium", "evidence_type": "experimental", "id": "inhibitory_metabolites_2021", "material_or_component": "Unknown inhibitory metabolite panel", "readouts": ["LC-MS/MS metabolites", "cell growth", "protein synthesis", "toxicity"], "related_priority": "LIMINA-External-1", "result_summary": "The study identified and tested novel accumulating inhibitory metabolites, showing that late-stage culture performance can be limited by more than classic lactate/ammonia waste.", "risk_or_caveat": "CHO/HEK evidence must be rechecked against neuronal cultures; broad adsorbers risk removing beneficial molecules.", "source_title": "Identification of novel inhibitory metabolites and impact verification on growth and protein synthesis in mammalian cells", "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC8427323/"} -{"assay_or_context": "Technical note for sterile filtration of cell culture media.", "claim": "PES and hydrophilic PVDF sterile filters are commonly preferred for protein-containing cell culture media because low protein binding helps preserve critical medium components.", "confidence": "medium", "evidence_type": "technical_note", "id": "low_binding_membrane_media_technical", "material_or_component": "Low-protein-binding sterile filtration membranes", "readouts": ["protein binding", "media component preservation", "sterile filtration"], "related_priority": "LIMINA-External-1", "result_summary": "The technical note emphasizes low-protein-binding membranes for tissue-culture applications to minimize nonspecific protein adsorption.", "risk_or_caveat": "Vendor data are not a substitute for independent BDNF/NGF/albumin recovery tests in LIMINA cartridges.", "source_title": "Protein Binding in Sterile Filtration of Cell Culture Media", "source_url": "https://www.sigmaaldrich.cn/CN/en/technical-documents/technical-article/cell-culture-and-cell-culture-analysis/cell-culture-media-preparation/protein-binding-sterile-filtration-cell-culture-media"} -{"assay_or_context": "Membrane selection guide.", "claim": "Regenerated cellulose membranes are hydrophilic, low non-specific adsorption membranes suited to biological sample filtration and protein recovery.", "confidence": "low", "evidence_type": "vendor_spec", "id": "low_binding_rc_membrane_vendor", "material_or_component": "Regenerated cellulose membrane", "readouts": ["protein recovery", "extractables", "sterilization compatibility", "aqueous compatibility"], "related_priority": "LIMINA-External-1", "result_summary": "The guide describes regenerated cellulose as low-binding and compatible with biological samples where protein recovery is important.", "risk_or_caveat": "Product-class guidance does not resolve MWCO, fouling, or long-term neuronal-medium performance.", "source_title": "Membrane Selection Guide", "source_url": "https://www.membrane-solutions.com/News_65.htm"} -{"assay_or_context": "Review of zwitterionic materials for antifouling membrane construction.", "claim": "Zwitterionic materials can be incorporated onto membrane surfaces to resist fouling through strong hydration and biomimetic antifouling mechanisms.", "confidence": "medium", "evidence_type": "review", "id": "zwitterionic_membrane_antifouling_2016", "material_or_component": "Zwitterionic membrane surface", "readouts": ["protein fouling", "surface hydration", "membrane modification method"], "related_priority": "LIMINA-External-1", "result_summary": "The review summarizes antifouling mechanisms and surface grafting/coating/segregation strategies for zwitterionic membrane surfaces.", "risk_or_caveat": "Antifouling performance must be balanced with membrane permeability, coating adhesion, and extractables.", "source_title": "Zwitterionic materials for antifouling membrane surface construction", "source_url": "https://pubmed.ncbi.nlm.nih.gov/27025359/"} -{"assay_or_context": "Recent membrane-materials study on modified cellulose acetate hollow-fiber membranes.", "claim": "Cellulose-based hollow-fiber membranes can be modified with cross-linked zwitterionic polymer brush coatings to improve antifouling behavior while retaining useful membrane transport.", "confidence": "medium", "evidence_type": "experimental", "id": "zwitterionic_cellulose_acetate_hfm_2026", "material_or_component": "Zwitterionic-modified cellulose acetate hollow-fiber membrane", "readouts": ["antifouling behavior", "protein resistance", "membrane transport", "surface modification"], "related_priority": "LIMINA-External-1", "result_summary": "The study supports the feasibility of combining cellulose-family membranes with MPC-like zwitterionic chemistry, which motivates a LIMINA variant of regenerated-cellulose neurodialysis membranes.", "risk_or_caveat": "The evidence is not in neuronal medium and not necessarily at LIMINA's low MWCO range; pore-clogging and growth-factor recovery must be measured directly.", "source_title": "Improving filtration performance of cellulose acetate hollow fiber membranes by grafting crosslinked poly(MPC-silane) polymer brushes", "source_url": "https://link.springer.com/article/10.1557/s43579-026-00933-y"} -{"assay_or_context": "Recent membrane biofouling study in protein-production media context.", "claim": "Zwitterionic peptide membrane modification has been studied as a way to mitigate membrane biofouling in protein production and aged cell culture media.", "confidence": "low", "evidence_type": "experimental", "id": "zwitterionic_peptide_membrane_2025", "material_or_component": "Zwitterionic peptide-modified membrane", "readouts": ["protein adsorption", "fresh media adsorption", "aged media adsorption", "membrane fouling"], "related_priority": "LIMINA-External-1", "result_summary": "The study evaluated zwitterionic peptide-modified membranes against adsorption using protein-production and cell-culture-media conditions.", "risk_or_caveat": "This is early evidence and must be repeated with neuronal media, growth factors, and long-duration perfusion.", "source_title": "Mitigating Membrane Biofouling in Protein Production with Zwitterionic Peptides", "source_url": "https://www.ambic.org/wp-content/uploads/2025/01/71-sun-et-al-2025-mitigating-membrane-biofouling-in-protein-production-with-zwitterionic-peptides.pdf"} -{"assay_or_context": "Review of microfluidic systems for neural cell studies.", "claim": "Microfluidic flow is a central tool for neural cell systems because it shapes chemical gradients, perfusion, shear stress, co-culture, and neuronal outgrowth.", "confidence": "medium", "evidence_type": "review", "id": "neural_microfluidic_systems_2023", "material_or_component": "Neural microfluidic perfusion systems", "readouts": ["neuronal outgrowth", "chemical gradients", "perfusion", "shear stress"], "related_priority": "LIMINA-External-1", "result_summary": "The review highlights neural microfluidic systems that combine topography, perfusion, gradients, and co-culture to better simulate in vivo microenvironments.", "risk_or_caveat": "Perfusion benefits do not automatically specify the right waste cartridge material; shear and secretome dilution must be managed.", "source_title": "Microfluidic Systems for Neural Cell Studies", "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC10451731/"} -{"assay_or_context": "Review of organ-on-chip materials and engineering constraints.", "claim": "Organ-on-chip and microphysiological systems require careful material selection because perfusion, adsorption, leachables, gas transport, and optical compatibility can all affect biological readouts.", "confidence": "medium", "evidence_type": "review", "id": "organ_chip_perfusion_review_2022", "material_or_component": "Organ-on-chip perfusion and material constraints", "readouts": ["perfusion stability", "adsorption", "leachables", "gas transport", "material compatibility"], "related_priority": "LIMINA-External-1", "result_summary": "The review supports treating cartridge and fluidic materials as active determinants of biological performance rather than passive plumbing.", "risk_or_caveat": "General organ-on-chip guidance must be narrowed for neural cultures and CL1-like long-duration wetware.", "source_title": "Materials and engineering in organ-on-chip systems", "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC9966054/"} -{"assay_or_context": "Experimental 3D microfluidic cerebral organoid culture system.", "claim": "Dynamic microfluidic culture can improve oxygen/nutrient supply and waste exchange in cerebral organoids, supporting longer culture and reduced core cell death.", "confidence": "medium", "evidence_type": "experimental", "id": "cerebral_organoid_perfusion_2023", "material_or_component": "Dynamic microfluidic perfusion for cerebral organoids", "readouts": ["organoid viability", "cell death", "oxygen supply", "nutrient diffusion", "waste exchange"], "related_priority": "LIMINA-External-1", "result_summary": "The study reports long-term cerebral organoid culture with dynamic flow and oxygen supply, addressing limitations of static cultures.", "risk_or_caveat": "This supports perfusion need but not selective cartridge chemistry; organoid geometry differs from MEA-bound cultures.", "source_title": "Three-dimensional microfluidics with dynamic fluidic perturbation promotes viability and uniformity of human cerebral organoids", "source_url": "https://www.sciencedirect.com/science/article/pii/S0956566323005778"} -{"assay_or_context": "Protein reference entry used to choose dialysis MWCO screening range.", "claim": "Human BDNF is a secreted neurotrophic protein with a mature chain around the low-tens-of-kDa range and is reported as a homodimer, making trophic-factor retention sensitive to MWCO choice.", "confidence": "medium", "evidence_type": "technical_note", "id": "bdnf_uniprot_p23560", "material_or_component": "BDNF trophic factor retention target", "readouts": ["BDNF recovery", "MWCO risk", "trophic-factor retention"], "related_priority": "LIMINA-External-1", "result_summary": "BDNF is large enough that low-kDa MWCO membranes should retain it, while higher MWCO variants must be experimentally checked for loss.", "risk_or_caveat": "Exact apparent size depends on processing, dimerization, assay format, adsorption, and medium matrix; use measured recovery rather than nominal MWCO alone.", "source_title": "UniProtKB P23560 - Brain-derived neurotrophic factor", "source_url": "https://www.uniprot.org/uniprotkb/P23560/entry"} -{"assay_or_context": "Protein reference entry used to choose dialysis MWCO screening range.", "claim": "Human beta-nerve growth factor is a secreted neurotrophic protein in the low-tens-of-kDa range, so NGF recovery is a useful stress test for MWCO leakage and protein adsorption.", "confidence": "medium", "evidence_type": "technical_note", "id": "ngf_uniprot_p01138", "material_or_component": "NGF trophic factor retention target", "readouts": ["NGF recovery", "MWCO risk", "trophic-factor retention"], "related_priority": "LIMINA-External-1", "result_summary": "NGF-sized proteins are near the risk zone for higher MWCO screening options, especially if adsorption or protein processing changes apparent recovery.", "risk_or_caveat": "Nominal molecular weight is not enough; medium matrix, membrane adsorption, and protein state can dominate measured recovery.", "source_title": "UniProtKB P01138 - Beta-nerve growth factor", "source_url": "https://www.uniprot.org/uniprotkb/P01138/entry"} -{"assay_or_context": "Technical guidance for dialysis membrane selection.", "claim": "MWCO is a nominal membrane-retention property, and dialysis design should choose a cutoff far enough below the molecules intended for retention while allowing smaller solutes to exchange.", "confidence": "medium", "evidence_type": "technical_note", "id": "dialysis_mwco_principle_thermo", "material_or_component": "Dialysis MWCO selection principle", "readouts": ["MWCO selection", "small-solute exchange", "protein retention"], "related_priority": "LIMINA-External-1", "result_summary": "The guidance supports testing a MWCO gradient rather than relying on one cutoff, because retention depends on molecular size, membrane properties, and conditions.", "risk_or_caveat": "Vendor guidance is generic; neuronal media and secretome retention require direct validation.", "source_title": "Dialysis Methods for Protein Research", "source_url": "https://www.thermofisher.com/us/en/home/life-science/protein-biology/protein-biology-learning-center/protein-biology-resource-library/pierce-protein-methods/dialysis-methods-protein-research.html"} -{"assay_or_context": "Vendor product/specification page for Spectra/Por regenerated-cellulose dialysis membrane.", "claim": "Regenerated-cellulose dialysis tubing is commercially available in the 3.5 kDa MWCO class and can be used as a purchasable starting point for the ZRC-ND lead.", "confidence": "medium", "evidence_type": "vendor_spec", "id": "rc_3p5k_repligen_vendor_spec", "material_or_component": "3.5 kDa regenerated-cellulose dialysis membrane", "readouts": ["MWCO availability", "regenerated-cellulose membrane format", "procurement feasibility"], "related_priority": "LIMINA-External-1", "result_summary": "Repligen lists Standard Grade Regenerated Cellulose dialysis membrane options including Spectra/Por 3 at 3.5 kD MWCO, supporting procurement of a 3.5 kDa RC membrane for first-pass coupon testing.", "risk_or_caveat": "Vendor availability and exact format can change; the product is a specification anchor, not a final cartridge design.", "source_title": "Spectra/Por Standard RC Membranes", "source_url": "https://store.repligen.com/pages/spectra-por-standard-rc-membranes"} -{"assay_or_context": "Recent organ-on-chip technology review.", "claim": "COC and COP have emerged as alternatives to PDMS for organ-on-chip applications because of low absorption/diffusion and high optical clarity.", "confidence": "medium", "evidence_type": "review", "id": "coc_cop_ooc_material_review_2026", "material_or_component": "COC/COP cartridge housing", "readouts": ["small-molecule absorption", "optical clarity", "organ-on-chip material choice", "manufacturability"], "related_priority": "LIMINA-External-1", "result_summary": "The review summarizes COC/COP as low-absorption, optically clear materials for chip fabrication, motivating COC/COP over PDMS for a monitored neural-medium side-stream cartridge.", "risk_or_caveat": "COC/COP still require extractables, bonding, sterilization, and protein adsorption checks in the actual medium.", "source_title": "Advances and applications of organ-on-a-chip technology", "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC13030988/"} -{"assay_or_context": "Experimental study comparing sorption and release of small molecules in PDMS and COC.", "claim": "COC can reduce problematic small-molecule retention/release relative to PDMS in organ-on-chip material selection.", "confidence": "medium", "evidence_type": "experimental", "id": "coc_pdms_sorption_2025", "material_or_component": "COC versus PDMS cartridge material", "readouts": ["small-molecule sorption", "compound release", "material memory", "media integrity"], "related_priority": "LIMINA-External-1", "result_summary": "The study reports that PDMS retains lipophilic compounds through bulk absorption and slow release, while COC facilitates easier desorption, supporting COC/COP as the first housing class for LIMINA waste-cartridge testing.", "risk_or_caveat": "The tested compounds and organ-chip conditions are not identical to neuronal medium; direct media blank and extractables testing remain mandatory.", "source_title": "Sorption and release of small molecules in PDMS and COC for Organs on chip", "source_url": "https://www.nature.com/articles/s41598-025-97111-2"} -{"assay_or_context": "Vendor assay specification for colorimetric L-lactate quantification.", "claim": "Commercial quantitative lactate assay kits support cell culture supernatant or culture media sample types.", "confidence": "medium", "evidence_type": "vendor_spec", "id": "lactate_assay_cell_culture_vendor", "material_or_component": "Lactate readout assay", "readouts": ["lactate concentration", "cell culture supernatant", "microplate readout"], "related_priority": "LIMINA-External-1", "result_summary": "Abcam's L-Lactate assay product page lists quantitative colorimetric detection and sample compatibility including cell culture supernatant and cell culture/fermentation media.", "risk_or_caveat": "Culture medium matrix, phenol red, serum, and sample deproteinization can affect assay performance; run spike/recovery controls.", "source_title": "L-Lactate Assay Kit (Colorimetric) ab65331", "source_url": "https://www.abcam.com/en-us/products/assay-kits/l-lactate-assay-kit-colorimetric-ab65331"} -{"assay_or_context": "Vendor assay specification for colorimetric ammonia/ammonium quantification.", "claim": "Commercial ammonia assay kits can quantify ammonia/ammonium in cell culture media or related biological samples.", "confidence": "medium", "evidence_type": "vendor_spec", "id": "ammonia_assay_cell_culture_vendor", "material_or_component": "Ammonia/ammonium readout assay", "readouts": ["ammonia concentration", "ammonium concentration", "cell culture media", "microplate readout"], "related_priority": "LIMINA-External-1", "result_summary": "Abcam's ammonia assay pages list cell culture media among compatible sample types and note quantitative microplate readout for ammonia/ammonium.", "risk_or_caveat": "Total ammonia nitrogen depends on pH and matrix chemistry; record pH and run standards in matched medium.", "source_title": "Ammonia Assay Kit ab83360", "source_url": "https://www.abcam.com/en-us/products/assay-kits/ammonia-assay-kit-ab83360"} -{"assay_or_context": "Vendor assay specification for BDNF ELISA.", "claim": "Commercial BDNF ELISA kits support quantitative measurement in cell culture supernatant.", "confidence": "medium", "evidence_type": "vendor_spec", "id": "bdnf_elisa_cell_culture_vendor", "material_or_component": "BDNF retention assay", "readouts": ["BDNF recovery", "cell culture supernatant", "trophic-factor retention"], "related_priority": "LIMINA-External-1", "result_summary": "Abcam's human BDNF ELISA product page lists quantitative measurement in human serum, plasma, and cell culture supernatant and reports recovery data for cell culture supernatant.", "risk_or_caveat": "Species, matrix, mature/pro-BDNF specificity, and adsorption can alter apparent recovery; use matched spike/recovery controls.", "source_title": "Human BDNF ELISA Kit ab212166", "source_url": "https://www.abcam.com/en-us/products/elisa-kits/human-bdnf-elisa-kit-ab212166"} -{"assay_or_context": "Vendor assay specification for beta-NGF ELISA.", "claim": "Commercial beta-NGF ELISA kits can analyze cell culture supernate samples.", "confidence": "medium", "evidence_type": "vendor_spec", "id": "ngf_elisa_cell_culture_vendor", "material_or_component": "NGF retention assay", "readouts": ["NGF recovery", "cell culture supernate", "trophic-factor retention"], "related_priority": "LIMINA-External-1", "result_summary": "R&D Systems' Human beta-NGF DuoSet ELISA product page indicates suitability of its suggested diluent for most cell culture supernate samples.", "risk_or_caveat": "The assay must match the species and NGF form used in the spike panel; medium matrix effects require spike/recovery validation.", "source_title": "Human beta-NGF DuoSet ELISA DY256", "source_url": "https://www.rndsystems.com/products/human-beta-ngf-duoset-elisa_dy256"} -{"assay_or_context": "Langmuir membrane-modification study using a nitrogen backflow polymer-prevention apparatus.", "claim": "Controlled deposition can add polyMPC or PEG antifouling chemistry to ultrafiltration membranes while retaining membrane selectivity and, for polyMPC, reducing BSA fouling and bacterial attachment.", "confidence": "medium", "evidence_type": "experimental", "id": "polympc_polyprev_retained_pore_2019", "material_or_component": "PDA/polyMPC controlled surface-only membrane coating", "readouts": ["MWCO retention", "pure water flux", "BSA fouling", "E. coli attachment", "pore protection"], "related_priority": "LIMINA-External-1", "result_summary": "The study used backflow to keep antifouling chemistry out of membrane pores; polyMPC-functionalized membranes retained MWCO relative to unmodified membranes and reduced fouling/attachment.", "risk_or_caveat": "The work was not done on 3.5 kDa regenerated cellulose or neural medium, and PDA/polyMPC extractables must be checked before cell exposure.", "source_title": "Antifouling Ultrafiltration Membranes with Retained Pore Size by Controlled Deposition of Zwitterionic Polymers and Poly(ethylene glycol)", "source_url": "https://pubs.acs.org/doi/10.1021/acs.langmuir.8b02184"} -{"assay_or_context": "Open-access Journal of Membrane Science study on density-controllable zwitterionic membrane modification.", "claim": "Polydopamine-mediated click chemistry can tune zwitterionic polymer brush density on membranes and improve antifouling evaluation reproducibility.", "confidence": "medium", "evidence_type": "experimental", "id": "pda_click_pmpc_membrane_2025", "material_or_component": "PDA-mediated PMPC grafting-to membrane coating", "readouts": ["polymer density", "dynamic fouling", "protein adsorption", "PDA durability", "thermal annealing"], "related_priority": "LIMINA-External-1", "result_summary": "The study reports a PDA primer followed by polymer immobilization through click chemistry, with thermal annealing used to improve PDA durability and dynamic tests used to assess antifouling performance.", "risk_or_caveat": "The route adds process complexity and must be adapted carefully to low-MWCO RC membranes without blocking transport.", "source_title": "Tuning membrane surfaces via polydopamine-mediated click reaction and analysis of antifouling properties", "source_url": "https://www.sciencedirect.com/science/article/pii/S0376738825002091"} -{"assay_or_context": "Polymer Chemistry study on cellulose membrane hemocompatibility and antibiofouling.", "claim": "Sulfobetaine brushes can be grafted from cellulose membranes by SI-RAFT polymerization to reduce protein adsorption and cell/bacterial adhesion.", "confidence": "medium", "evidence_type": "experimental", "id": "psbma_cellulose_si_raft_2013", "material_or_component": "Polysulfobetaine brush-grafted cellulose membrane", "readouts": ["protein adsorption", "platelet adhesion", "hemolysis", "bacterial adhesion", "cell adhesion resistance"], "related_priority": "LIMINA-External-1", "result_summary": "The study grafted polysulfobetaine brushes onto cellulose membranes and reported lower protein adsorption and improved hemocompatibility/antibiofouling behavior.", "risk_or_caveat": "SI-RAFT is less accessible for a first CL1-adjacent cartridge screen and may introduce initiator/chain-transfer residue concerns that need extractables testing.", "source_title": "Surface-initiated RAFT polymerization of sulfobetaine from cellulose membranes to improve hemocompatibility and antibiofouling property", "source_url": "https://pubs.rsc.org/en/content/articlelanding/2013/py/c3py00565h"} -{"assay_or_context": "FDA biocompatibility guidance and ISO 10993-5 cytotoxicity context.", "claim": "In vitro cytotoxicity testing for medical-device materials is commonly expected to follow ISO 10993-5-style extract or direct-contact methods before stronger biological claims are made.", "confidence": "medium", "evidence_type": "technical_note", "id": "iso_10993_5_cytotoxicity_extract_fda", "material_or_component": "Material extract cytotoxicity screen", "readouts": ["extract cytotoxicity", "cell viability", "cell lysis", "material biocompatibility"], "related_priority": "LIMINA-Bio-1", "result_summary": "The guidance frames in vitro cytotoxicity as a core biological evaluation endpoint for materials, supporting a medium-extract toxicity gate before exposing neural cultures to ZRC-ND-conditioned media.", "risk_or_caveat": "ZRC-ND is not being claimed as a medical device; this is a conservative biological-risk screen, not regulatory clearance.", "source_title": "Use of International Standard ISO 10993-1, Biological evaluation of medical devices - Part 1", "source_url": "https://www.fda.gov/media/85865/download"} -{"assay_or_context": "Experimental material biocompatibility study using primary neuronal networks and MEA recordings.", "claim": "Living cortical neuronal networks on MEAs can act as functional assays for material biocompatibility by detecting material-driven changes in network activity.", "confidence": "medium", "evidence_type": "experimental", "id": "neuronal_network_material_biocompatibility_mea_2013", "material_or_component": "Functional neuronal-network biocompatibility assay", "readouts": ["network spike rate", "functional activity", "material controls", "neural interface biocompatibility"], "related_priority": "LIMINA-Bio-1", "result_summary": "The study reports that negative-control materials such as gold and polyethylene did not significantly change neuronal activity, while positive controls such as copper and PVC reduced network spike rate.", "risk_or_caveat": "Material extract and neural-medium cartridge tests are not identical to implantable neural-interface tests, but functional network readouts are relevant to CL1-like wetware.", "source_title": "Use of cortical neuronal networks for in vitro material biocompatibility testing", "source_url": "https://pubmed.ncbi.nlm.nih.gov/24176966/"} -{"assay_or_context": "Review/integration of in vitro developmental neurotoxicity NAMs.", "claim": "Neurodevelopmental new-approach-method batteries combine metabolic/LDH viability, neurite outgrowth/maturation, synaptogenesis, apoptosis, and MEA network activity endpoints.", "confidence": "medium", "evidence_type": "review", "id": "dnt_nam_viability_neurite_mea_2022", "material_or_component": "Neural viability, neurite, and MEA follow-up battery", "readouts": ["alamarBlue viability", "LDH release", "neurite outgrowth", "synaptogenesis", "MEA network activity"], "related_priority": "LIMINA-Bio-1", "result_summary": "The review describes a battery including high-content imaging endpoints and an MEA network-formation assay, with alamarBlue and LDH as cytotoxicity measures.", "risk_or_caveat": "DNT batteries are not CL1 assays; endpoint selection and thresholds must be adapted to the actual neural culture model.", "source_title": "Integrating data from in vitro New Approach Methodologies for Developmental Neurotoxicity", "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC9421662/"} -{"assay_or_context": "Recent review of PEDOT:PSS-based organic bioelectronics for brain neural monitoring and modulation.", "claim": "PEDOT:PSS-based materials are widely investigated for brain monitoring and modulation because they combine conductivity, flexibility, and neural-interface compatibility.", "confidence": "medium", "evidence_type": "review", "id": "pedot_brain_monitoring_2025", "material_or_component": "PEDOT:PSS neural bioelectronic interface", "readouts": ["electrode impedance", "charge transfer", "biocompatibility", "mechanical compliance", "long-term stability"], "related_priority": "LIMINA-Cell-1", "result_summary": "The review frames PEDOT:PSS hydrogels and films as major formats for neural bioelectronics and emphasizes strategies to improve conductivity, compatibility, and stability.", "risk_or_caveat": "Review-level support does not prove a specific hydrogel formulation is safe for CL1-like cultures; leachables, delamination, and chronic culture stability must be tested.", "source_title": "PEDOT:PSS-based bioelectronics for brain monitoring and modulation", "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC12075682/"} -{"assay_or_context": "Conceptual neural-interface review using the bio-solid-electrolyte-interphase framing.", "claim": "PEDOT:PSS can be treated as a hydrated mixed ionic/electronic interphase whose chemistry should be optimized for selective transport, chemical stability, and biocompatible durability.", "confidence": "medium", "evidence_type": "review", "id": "pedot_bio_sei_2026", "material_or_component": "PEDOT:PSS bio-solid-electrolyte interphase", "readouts": ["mixed conduction", "hydration", "chemical stability", "interfacial durability", "biocompatibility"], "related_priority": "LIMINA-Cell-1", "result_summary": "The review argues that PEDOT:PSS neural interfaces should be designed as adaptive interphases rather than only as conductivity boosters, motivating controlled microdomain and top-layer designs.", "risk_or_caveat": "This is a design framework, not direct validation of any one LIMINA formulation.", "source_title": "PEDOT:PSS as a Bio-Solid Electrolyte Interphase for Neural Interfaces: From Molecular Design to Interfacial Intelligence", "source_url": "https://www.mdpi.com/2073-4360/18/1/20"} -{"assay_or_context": "Comprehensive review of conductive hydrogel design strategies and biomedical applications.", "claim": "Conductive hydrogels can provide soft, hydrated, electrically active microenvironments for monitoring or modulating biological activity.", "confidence": "medium", "evidence_type": "review", "id": "conductive_hydrogels_2025", "material_or_component": "Conductive hydrogel soft biointerface", "readouts": ["conductivity", "biocompatibility", "soft mechanics", "neural engineering", "cell regulation"], "related_priority": "LIMINA-Cell-1", "result_summary": "The review summarizes conductive mechanisms, fabrication methods, and biomedical applications including neural repair and cell regulation, supporting conductive hydrogels as a LIMINA candidate class.", "risk_or_caveat": "The class is broad; formulation-specific toxicity, swelling, sterilization, and electrical stability must be measured.", "source_title": "Conductive Hydrogels in Biomedical Engineering: Recent Advances and a Comprehensive Review", "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC12840763/"} -{"assay_or_context": "Review of hydrogel systems for neural tissue engineering.", "claim": "Hydrogels can be tuned for neural tissue engineering through softness, hydration, ligand presentation, and ECM-like structure.", "confidence": "medium", "evidence_type": "review", "id": "hydrogel_neural_tissue_2020", "material_or_component": "Neural hydrogel scaffold properties", "readouts": ["cell adhesion", "neurite outgrowth", "matrix stiffness", "ligand functionalization", "neural support"], "related_priority": "LIMINA-Cell-1", "result_summary": "The review supports using hydrogel chemistry and mechanics as active design variables for neural cell survival and maturation.", "risk_or_caveat": "Neural tissue engineering scaffolds do not automatically translate to MEA-bound long-duration biological computing cultures.", "source_title": "Hydrogel systems and their role in neural tissue engineering", "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC7014813/"} -{"assay_or_context": "Review of cellular stiffness sensing and mechanotransduction.", "claim": "Cells sense substrate stiffness, making mechanical matching a core design variable for neural interface materials.", "confidence": "medium", "evidence_type": "review", "id": "stiffness_sensing_2020", "material_or_component": "Brain-like mechanical cue design", "readouts": ["cell spreading", "mechanotransduction", "substrate stiffness", "neurite behavior", "matrix mechanics"], "related_priority": "LIMINA-Cell-1", "result_summary": "The review supports treating hydrogel modulus and viscoelasticity as material parameters rather than cosmetic properties.", "risk_or_caveat": "Optimal stiffness depends on cell type, geometry, coating, and culture format; direct CL1-like neural readouts remain required.", "source_title": "Stiffness Sensing by Cells", "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC7276923/"} -{"assay_or_context": "Experimental GelMA/PEDOT:PSS composite hydrogel synthesis and characterization.", "claim": "PEDOT:PSS can be dispersed in GelMA to tune hydrogel electrical and mechanical properties while retaining short-term cell compatibility in a model cell system.", "confidence": "medium", "evidence_type": "experimental", "id": "gelma_pedot_composite_2018", "material_or_component": "GelMA/PEDOT:PSS conductive hydrogel", "readouts": ["impedance", "mechanics", "swelling", "cell viability", "electrical stimulation"], "related_priority": "LIMINA-Cell-1", "result_summary": "The study reported lower hydrogel impedance with PEDOT:PSS loading and found that 0.1 percent PEDOT:PSS composites supported C2C12 viability and spreading comparable to GelMA controls.", "risk_or_caveat": "The cells were not CL1-like neurons, and PEDOT:PSS loading, photoinitiator exposure, and leachables must be rechecked in neural medium.", "source_title": "Electroconductive Gelatin Methacryloyl-PEDOT:PSS Composite Hydrogels: Design, Synthesis, and Properties", "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC11150039/"} -{"assay_or_context": "Experimental electrically active hydrogel engineered for in vitro neural cell cultures.", "claim": "A laminin-containing PEDOT:PSS hydrogel can remain stable under neural culture conditions and support human iPSC-derived cortical neuron culture for 28 days.", "confidence": "high", "evidence_type": "experimental", "id": "pedot_neural_culture_hydrogel_2025", "material_or_component": "Alginate-laminin-PEDOT:PSS neural culture hydrogel", "readouts": ["hiPSC cortical neuron culture", "neurite population", "network formation", "electrochemical impedance", "charge storage", "optical transparency", "culture stability"], "related_priority": "LIMINA-Cell-1", "result_summary": "The study reported alginate-laminin-PEDOT:PSS hydrogels with 1-10 kPa viscoelasticity, improved conductivity/charge storage, stable electrochemical behavior, and cortical neuron cytocompatibility over 28 days.", "risk_or_caveat": "The formulation and assay format must be adapted to the actual MEA geometry, sterilization, and CL1-like long-duration culture requirements.", "source_title": "Electrically active hydrogels based on PEDOT:PSS for neural cultures", "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC12620795/"} -{"assay_or_context": "Experimental two-photon lithography study of PEDOT:PSS/GelMA hydrogel micropatterning.", "claim": "GelMA/PEDOT:PSS conductive hydrogels can be micropatterned for soft bioelectronics, offering structural control for future neural interface formats.", "confidence": "medium", "evidence_type": "experimental", "id": "gelma_pedot_micropatterning_2026", "material_or_component": "Micropatterned GelMA/PEDOT:PSS conductive hydrogel", "readouts": ["micropatterning", "conductivity", "mechanical compliance", "short-term viability", "morphology"], "related_priority": "LIMINA-Cell-1", "result_summary": "The study supports the feasibility of structurally tunable GelMA/PEDOT:PSS hydrogels, while noting that short-term biological validation needs follow-up functional assays.", "risk_or_caveat": "Short-term viability and morphology are not enough for LIMINA suitability; neurite, MEA, extractables, and long-duration stability gates remain mandatory.", "source_title": "3D micropatterning of PEDOT:PSS/Gelatin conductive hydrogels via two-photon lithography for soft bioelectronics", "source_url": "https://www.nature.com/articles/s41528-026-00529-5"} -{"assay_or_context": "Experimental coating study covering substrate-independent deposition, ex vivo biofluid exposure, and in vivo-relevant testing.", "claim": "All-dry zwitterionic gradient coatings can provide robust antifouling behavior across varied substrates and biofluid exposure conditions.", "confidence": "medium", "evidence_type": "experimental", "id": "all_dry_zwitterionic_gradient_2024", "material_or_component": "Substrate-independent zwitterionic gradient coating", "readouts": ["protein adsorption", "biofouling", "coating robustness", "substrate independence"], "related_priority": "LIMINA-External-1", "result_summary": "The study supports using substrate-independent zwitterionic coatings as a surface-engineering route for low-fouling device or cartridge surfaces.", "risk_or_caveat": "The coating is not validated on regenerated-cellulose MWCO membranes or CL1-like neuronal medium; transport, extractables, and trophic-factor recovery remain mandatory tests.", "source_title": "Substrate-independent, all-dry, zwitterionic gradient coatings", "source_url": "https://pubmed.ncbi.nlm.nih.gov/39567918/"} -{"assay_or_context": "Preprint describing a hydrogel interface with electrochemical, mechanical, in vitro, and in vivo evaluation claims.", "claim": "A filler-free polysaccharide/peptide-amphiphile hydrogel has been proposed as a self-adaptive, stable, mechanically compliant bioelectronic interface.", "confidence": "low", "evidence_type": "experimental", "id": "op_apa_self_adaptive_hydrogel_2026", "material_or_component": "Okra mucilage polysaccharide and alpha-helical peptide amphiphile hydrogel", "readouts": ["mechanical compliance", "electrochemical stability", "biocompatibility", "neural-interface performance"], "related_priority": "LIMINA-Cell-1", "result_summary": "The preprint frames the material as a filler-free alternative to particle-loaded conductive hydrogels, which could reduce conductive-particle leachability concerns if reproduced.", "risk_or_caveat": "Preprint status, limited CL1-like neural culture evidence, procurement uncertainty, and formulation reproducibility make it a watch candidate rather than an immediate claim path.", "source_title": "A self-adaptive bioelectronic hydrogel interface for neuromodulation", "source_url": "https://arxiv.org/abs/2604.23945"} -{"assay_or_context": "Experimental in vivo electrophysiology hydrogel-electrode study.", "claim": "Zwitterionic PEDOT:PSS hydrogel electrodes have been reported for stable high-performance neural electrophysiology in rats.", "confidence": "medium", "evidence_type": "experimental", "id": "zwitterionic_pedot_eeg_hydrogel_2025", "material_or_component": "Zwitterionic PEDOT:PSS hydrogel electrode", "readouts": ["EEG recording stability", "electrode impedance", "biocompatibility", "hydrated conductive interface"], "related_priority": "LIMINA-Cell-1", "result_summary": "The study supports a hybrid design direction that combines zwitterionic hydration chemistry with PEDOT:PSS mixed conduction for neural interfaces.", "risk_or_caveat": "In vivo recording evidence does not prove compatibility with long-lived in vitro neuronal cultures; cell-contact extractables, swelling, and network activity remain open.", "source_title": "Zwitterionic hydrogel electrodes enable stable and high-performance electroencephalogram recording in rats", "source_url": "https://pubmed.ncbi.nlm.nih.gov/40801064/"} -{"assay_or_context": "Experimental conductive hydrogel study for brain-machine-interface sensing applications.", "claim": "MXene-containing adhesive hydrogels can improve soft bioelectronic signal coupling, suggesting a high-conductivity but higher-risk design space for neural interface materials.", "confidence": "low", "evidence_type": "experimental", "id": "mxene_adhesive_hydrogel_bmi_2025", "material_or_component": "MXene-based conductive adhesive hydrogel", "readouts": ["adhesion", "conductivity", "signal quality", "mechanical compliance"], "related_priority": "LIMINA-Cell-1", "result_summary": "The material class is attractive for high signal coupling but introduces nanomaterial-leachability and cell-contact toxicity risks that must be resolved before CL1-like use.", "risk_or_caveat": "MXene exposure is a major uncertainty for direct neural cultures; treat as a later comparator or sensor-side material until extract and neural health gates are favorable.", "source_title": "MXene-based conductive and adhesive hydrogel for brain-machine interfaces", "source_url": "https://www.sciencedirect.com/science/article/abs/pii/S0021979725000863"} -{"assay_or_context": "Advanced Materials 2026 experimental study of PEDOT:sGAGh coatings and OECT-integrated hydrogels.", "claim": "A sulfated-glycosaminoglycan PEDOT hydrogel can combine soft ECM-like structure, tunable electrochemistry, and electrically modulated growth-factor retention or release.", "confidence": "medium", "evidence_type": "experimental", "id": "pedot_sgagh_electronic_ecm_2026", "material_or_component": "PEDOT:sGAGh electronic extracellular-matrix hydrogel", "readouts": ["growth-factor sequestration", "electrochemical behavior", "softness", "water content", "cell differentiation cues"], "related_priority": "LIMINA-Cell-1", "result_summary": "The study reports ultra-low PEDOT content around 1 wt percent, high water content, growth-factor affinity, and low-voltage modulation of macromolecular cues, making it a high-novelty biohybrid-circuit material direction.", "risk_or_caveat": "It is not yet direct evidence for long-duration human neuronal-network culture on CL1-like MEAs, and synthesis uses chemistries that require extractables and reproducibility gates.", "source_title": "Conductive Hydrogels for Exogenous Sensing and Cell Fate Control", "source_url": "https://pubmed.ncbi.nlm.nih.gov/41883146/"} -{"assay_or_context": "Journal of Materials Chemistry B 2026 open-access biointerface hydrogel study.", "claim": "Alginate-gelatin hydrogels incorporating PEDOT:PSS, PPy/PSS, or both can provide tunable softness, high conductivity, electrochemical stability, and short-term cytocompatibility.", "confidence": "medium", "evidence_type": "experimental", "id": "alg_gel_pedot_ppy_biointerface_2026", "material_or_component": "Alginate-gelatin PEDOT:PSS and PPy/PSS conductive hydrogel family", "readouts": ["conductivity", "impedance", "electrochemical stability", "swelling", "28-day wet-weight stability", "fibroblast cytocompatibility"], "related_priority": "LIMINA-Cell-1", "result_summary": "The study reports 5-70 kPa moduli, 0.1-3.7 S/cm conductivities, 380-830 ohm cm2 impedance at 1 kHz, improved 28-day wet-weight stability versus pristine Alg-GEL, and NIH3T3 cytocompatibility.", "risk_or_caveat": "Fibroblast compatibility and neural-interface framing do not prove CL1-like neuronal network compatibility; PPy synthesis residue, swelling, and leachables remain first-order risks.", "source_title": "Electroconductive and highly biocompatible PEDOT- and polypyrrole-alginate-gelatin hydrogels with enhanced electrochemical performance for biointerfaces", "source_url": "https://pubs.rsc.org/en/content/articlelanding/2026/tb/d5tb02148k"} -{"assay_or_context": "npj Biosensing 2026 experimental organoid electrophysiology platform.", "claim": "Carbon nanotube microelectrode arrays have been proposed as a scalable, biocompatible route for electrophysiology of cerebral organoids.", "confidence": "medium", "evidence_type": "experimental", "id": "cameo_cnt_organoid_mea_2026", "material_or_component": "Carbon-nanotube microelectrode array for cerebral organoids", "readouts": ["organoid electrophysiology", "microelectrode array", "biocompatibility", "scalability", "signal recording"], "related_priority": "LIMINA-Cell-1", "result_summary": "The work motivates CNT-based recording materials as a device-side comparator for organoid and neural aggregate interfaces rather than an immediate cell-contact hydrogel lead.", "risk_or_caveat": "CNT exposure and fabrication route need extractables, particle-shedding, and long-duration neuronal health gates before any direct CL1 material claim.", "source_title": "CAMEOs: carbon nanotube microelectrode arrays for scalable, accessible electrophysiology of cerebral organoids", "source_url": "https://www.nature.com/articles/s44328-026-00088-9"} -{"assay_or_context": "Nature Biomedical Engineering 2026 neural organoid bioelectronics study.", "claim": "A shape-conformal porous framework can wrap neural organoids to improve full-coverage, high-resolution electrophysiology.", "confidence": "medium", "evidence_type": "experimental", "id": "shape_conformal_organoid_framework_2026", "material_or_component": "Shape-conformal porous neural-organoid framework", "readouts": ["organoid coverage", "electrophysiology", "3D conformity", "porous framework", "recording resolution"], "related_priority": "LIMINA-Cell-1", "result_summary": "The study supports a geometry-and-material architecture direction for organoid-scale wetware interfaces, especially when 2D MEA contact is the limiting factor.", "risk_or_caveat": "This is primarily a device architecture lead; LIMINA would need a simplified material witness coupon before treating it as a first material-technology claim.", "source_title": "Shape-conformal porous frameworks for full coverage of neural organoids and high-resolution electrophysiology", "source_url": "https://www.nature.com/articles/s41551-026-01620-y"} -{"assay_or_context": "Microsystems & Nanoengineering 2026 experimental cerebral-organoid electrophysiology platform.", "claim": "A multilayered mesh MEA can interface with multiple depths of cerebral organoids and support noninvasive, spatially resolved electrophysiology over weeks.", "confidence": "medium", "evidence_type": "experimental", "id": "mlmea_organoid_depth_interface_2026", "material_or_component": "Multilayered mesh microelectrode array with PDMS spacers and Pt-black electrodes", "readouts": ["depth-resolved spikes", "active channel ratio", "firing rate", "organoid viability", "mesh integration", "impedance"], "related_priority": "LIMINA-Cell-1", "result_summary": "The platform stacks flexible mesh MEA layers with compliant PDMS spacers, uses Pt-black electrodes for lower impedance, and reports stable cerebral-organoid integration and electrophysiology for more than four weeks.", "risk_or_caveat": "This is a 3D device architecture rather than a near-term coating recipe; fabrication complexity, Pt-black stability, PDMS adsorption, and transfer to CL1-like formats need separate witness-coupon gates.", "source_title": "Multilayered microelectrode array for monitoring electrophysiological signals of 3d neural networks in cerebral organoid", "source_url": "https://www.nature.com/articles/s41378-026-01328-8"} -{"assay_or_context": "Science Advances 2024 brain-spheroid electrophysiology platform.", "claim": "Hydrogel actuation can transform a planar MEA into a 3D flower-like interface for recording from brain spheroids without forcing a rigid planar geometry.", "confidence": "medium", "evidence_type": "experimental", "id": "eflower_hydrogel_actuated_3d_mea_2024", "material_or_component": "Hydrogel-actuated flower-shaped 3D microelectrode array", "readouts": ["3D MEA wrapping", "spheroid electrophysiology", "hydrogel actuation", "non-damaging contact"], "related_priority": "LIMINA-Cell-1", "result_summary": "The e-Flower work demonstrates a hydrogel-driven shape transformation strategy for 3D neural spheroid recordings, motivating mechanically adaptive MEA geometries for future LIMINA organoid or aggregate interfaces.", "risk_or_caveat": "It is a device architecture and actuation strategy, not direct evidence that the actuator hydrogel itself is a CL1-compatible cell-contact material; extractables and long-duration culture gates remain open.", "source_title": "The e-Flower: A hydrogel-actuated 3D MEA for brain spheroid electrophysiology", "source_url": "https://pubmed.ncbi.nlm.nih.gov/39413178/"} -{"assay_or_context": "Nature Communications 2026 hydrogel mechanics study.", "claim": "A single-polymer zwitterionic hydrogel can reversibly switch between ultraplastic and hyperelastic states while covering a broad biological-tissue-like modulus range.", "confidence": "medium", "evidence_type": "experimental", "id": "topologically_entangled_psbma_hydrogel_2026", "material_or_component": "Topologically entangled PSBMA zwitterionic hydrogel", "readouts": ["modulus range", "toughness", "strain recovery", "zwitterionic hydration", "cell-and-tissue-engineering relevance"], "related_priority": "LIMINA-Cell-1", "result_summary": "The hydrogel uses PSBMA chain-conformation control to span very soft to much stiffer mechanical states, making it a potential low-fouling mechanoadaptive matrix module for later LIMINA screening.", "risk_or_caveat": "The evidence is mechanical and general tissue-engineering oriented rather than neuronal-network or MEA evidence; monomer, extractables, adhesion, and electrical coupling remain unresolved.", "source_title": "Topologically entangled zwitterionic hydrogels with reversible in situ transitions between ultraplastic and hyperelastic states", "source_url": "https://www.nature.com/articles/s41467-026-73355-y"} -{"assay_or_context": "Chemical Engineering Journal 2026 experimental hydrogel study for physiological monitoring.", "claim": "Aligned conductive-network hydrogels combining sulfonated PEDOT chemistry with PSBMA-like zwitterionic hydration may provide robust, conductive, antifouling physiological interfaces.", "confidence": "medium", "evidence_type": "experimental", "id": "anisotropic_spedot_psbma_hydrogel_2026", "material_or_component": "Anisotropic S-PEDOT/PSBMA conductive antifouling hydrogel", "readouts": ["anisotropic conductivity", "mechanical robustness", "antifouling behavior", "physiological monitoring", "hydrated interface"], "related_priority": "LIMINA-Cell-1", "result_summary": "The study motivates a design space where PEDOT-family conduction and zwitterionic hydration are engineered together rather than treated as separate coating layers.", "risk_or_caveat": "The evidence is physiological-monitoring oriented rather than long-duration neuronal-network culture evidence; synthesis, extractables, swelling, and laminin-compatible neural adhesion need separate LIMINA gates.", "source_title": "Anisotropic hydrogel with aligned conductive networks enables integrated robustness, high conductivity, and antifouling capability for physiological monitoring", "source_url": "https://www.sciencedirect.com/science/article/pii/S1385894726032341"} diff --git a/data/evidence_records_seed.json b/data/evidence_records_seed.json deleted file mode 100644 index c2d651c..0000000 --- a/data/evidence_records_seed.json +++ /dev/null @@ -1,702 +0,0 @@ -[ - { - "id": "dialysis_medium_partitioning_2020", - "related_priority": "LIMINA-External-1", - "material_or_component": "Dialysis membrane / size-selective medium partitioning", - "claim": "A dialysis membrane can exchange low-molecular-weight nutrients and wastes while retaining high-molecular-weight growth factors in a culture compartment.", - "assay_or_context": "Review of medium optimization in in vitro co-culture systems.", - "readouts": ["low-MW exchange", "growth-factor retention", "lactate exchange", "ammonium exchange"], - "result_summary": "The review describes dialysis-based medium refreshment where amino acids, vitamins, lactate, and ammonium can cross depending on MWCO, while high-MW components such as growth factors are retained.", - "risk_or_caveat": "MWCO-only selectivity may also remove beneficial small signaling molecules; neural medium-specific validation is required.", - "source_title": "Impact of Culture Medium on Cellular Interactions in in vitro Co-culture Systems", - "source_url": "https://www.frontiersin.org/articles/10.3389/fbioe.2020.00911/full", - "evidence_type": "review", - "confidence": "high" - }, - { - "id": "icp_spent_media_regeneration_2024", - "related_priority": "LIMINA-External-1", - "material_or_component": "Ion concentration polarization microfluidic separator", - "claim": "An ICP-based separator can regenerate spent culture media by removing inhibitory waste products from a side or waste stream.", - "assay_or_context": "Experimental mesoscale microfluidic separation device for spent media regeneration.", - "readouts": ["ammonium removal", "lactate removal", "spent-medium reuse", "integration in waste stream"], - "result_summary": "The study introduces a microfluidic ICP process to remove critical waste products from spent culture medium; prior electromembrane approaches drove ammonium and lactate through membranes away from cells.", - "risk_or_caveat": "Electrochemical side effects, pH/conductivity shifts, and neural medium compatibility remain open validation issues.", - "source_title": "Regeneration of Spent Culture Media for Sustainable and Continuous mAb Production via Ion Concentration Polarization", - "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC11718426/", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "medium_cycling_review_2023", - "related_priority": "LIMINA-External-1", - "material_or_component": "Medium recycling and waste removal strategies", - "claim": "Ammonia and lactate removal plus growth-factor reuse are central challenges in recycled mammalian cell culture media.", - "assay_or_context": "Review of cell culture medium cycling strategies.", - "readouts": ["ammonia removal", "lactate removal", "growth-factor reuse", "medium cost", "cell growth"], - "result_summary": "The review frames ammonia and lactate as inhibitory by-products and surveys removal approaches including adsorption, biocatalysis, electrochemistry, and culture strategies.", - "risk_or_caveat": "Cultured-meat and biomanufacturing lessons must be translated carefully to low-shear neural cultures and CL1-like wetware.", - "source_title": "Cell culture medium cycling in cultured meat: Key factors and potential strategies", - "source_url": "https://www.sciencedirect.com/science/article/pii/S0924224423002042", - "evidence_type": "review", - "confidence": "medium" - }, - { - "id": "ammonia_importance_review_1996", - "related_priority": "LIMINA-External-1", - "material_or_component": "Ammonia/ammonium control in mammalian cell culture", - "claim": "Ammonia accumulation can reduce growth rates and maximal cell densities, and removal strategies include ion-exchange resins, ion-exchange membranes, gas-permeable membranes, and electrodialysis.", - "assay_or_context": "Minireview of ammonia toxicity and control strategies in mammalian cell culture.", - "readouts": ["growth rate", "maximal cell density", "protein processing", "ammonia removal"], - "result_summary": "The review identifies ammonia as a long-standing toxic/inhibitory metabolite and summarizes process strategies for reducing or removing it from culture medium.", - "risk_or_caveat": "The evidence is broad mammalian culture evidence rather than neuron-specific; thresholds vary across cell types.", - "source_title": "The importance of ammonia in mammalian cell culture", - "source_url": "https://www.sciencedirect.com/science/article/pii/0168165695001964", - "evidence_type": "review", - "confidence": "high" - }, - { - "id": "lactate_ammonia_growth_inhibition_1991", - "related_priority": "LIMINA-External-1", - "material_or_component": "Lactate and ammonia accumulation", - "claim": "Lactate and ammonia can interact synergistically at higher concentrations to inhibit growth in animal cell cultures.", - "assay_or_context": "Experimental comparison across independent animal cell lines.", - "readouts": ["growth inhibition", "ammonia concentration", "lactate concentration"], - "result_summary": "The study found variable cell-line sensitivity to ammonia and lactate, with synergistic growth inhibition at higher lactate and ammonia concentrations.", - "risk_or_caveat": "The tested cell lines are not neural cells, but the interaction motivates monitoring both metabolites together.", - "source_title": "Growth inhibition in animal cell culture. The effect of lactate and ammonia", - "source_url": "https://pubmed.ncbi.nlm.nih.gov/1952924/", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "inhibitory_metabolites_2021", - "related_priority": "LIMINA-External-1", - "material_or_component": "Unknown inhibitory metabolite panel", - "claim": "Mammalian cell cultures can accumulate inhibitory metabolites beyond lactate and ammonia, supporting broader metabolomics-based cartridge validation.", - "assay_or_context": "LC-MS/MS identification and impact testing of accumulating metabolites.", - "readouts": ["LC-MS/MS metabolites", "cell growth", "protein synthesis", "toxicity"], - "result_summary": "The study identified and tested novel accumulating inhibitory metabolites, showing that late-stage culture performance can be limited by more than classic lactate/ammonia waste.", - "risk_or_caveat": "CHO/HEK evidence must be rechecked against neuronal cultures; broad adsorbers risk removing beneficial molecules.", - "source_title": "Identification of novel inhibitory metabolites and impact verification on growth and protein synthesis in mammalian cells", - "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC8427323/", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "low_binding_membrane_media_technical", - "related_priority": "LIMINA-External-1", - "material_or_component": "Low-protein-binding sterile filtration membranes", - "claim": "PES and hydrophilic PVDF sterile filters are commonly preferred for protein-containing cell culture media because low protein binding helps preserve critical medium components.", - "assay_or_context": "Technical note for sterile filtration of cell culture media.", - "readouts": ["protein binding", "media component preservation", "sterile filtration"], - "result_summary": "The technical note emphasizes low-protein-binding membranes for tissue-culture applications to minimize nonspecific protein adsorption.", - "risk_or_caveat": "Vendor data are not a substitute for independent BDNF/NGF/albumin recovery tests in LIMINA cartridges.", - "source_title": "Protein Binding in Sterile Filtration of Cell Culture Media", - "source_url": "https://www.sigmaaldrich.cn/CN/en/technical-documents/technical-article/cell-culture-and-cell-culture-analysis/cell-culture-media-preparation/protein-binding-sterile-filtration-cell-culture-media", - "evidence_type": "technical_note", - "confidence": "medium" - }, - { - "id": "low_binding_rc_membrane_vendor", - "related_priority": "LIMINA-External-1", - "material_or_component": "Regenerated cellulose membrane", - "claim": "Regenerated cellulose membranes are hydrophilic, low non-specific adsorption membranes suited to biological sample filtration and protein recovery.", - "assay_or_context": "Membrane selection guide.", - "readouts": ["protein recovery", "extractables", "sterilization compatibility", "aqueous compatibility"], - "result_summary": "The guide describes regenerated cellulose as low-binding and compatible with biological samples where protein recovery is important.", - "risk_or_caveat": "Product-class guidance does not resolve MWCO, fouling, or long-term neuronal-medium performance.", - "source_title": "Membrane Selection Guide", - "source_url": "https://www.membrane-solutions.com/News_65.htm", - "evidence_type": "vendor_spec", - "confidence": "low" - }, - { - "id": "zwitterionic_membrane_antifouling_2016", - "related_priority": "LIMINA-External-1", - "material_or_component": "Zwitterionic membrane surface", - "claim": "Zwitterionic materials can be incorporated onto membrane surfaces to resist fouling through strong hydration and biomimetic antifouling mechanisms.", - "assay_or_context": "Review of zwitterionic materials for antifouling membrane construction.", - "readouts": ["protein fouling", "surface hydration", "membrane modification method"], - "result_summary": "The review summarizes antifouling mechanisms and surface grafting/coating/segregation strategies for zwitterionic membrane surfaces.", - "risk_or_caveat": "Antifouling performance must be balanced with membrane permeability, coating adhesion, and extractables.", - "source_title": "Zwitterionic materials for antifouling membrane surface construction", - "source_url": "https://pubmed.ncbi.nlm.nih.gov/27025359/", - "evidence_type": "review", - "confidence": "medium" - }, - { - "id": "zwitterionic_cellulose_acetate_hfm_2026", - "related_priority": "LIMINA-External-1", - "material_or_component": "Zwitterionic-modified cellulose acetate hollow-fiber membrane", - "claim": "Cellulose-based hollow-fiber membranes can be modified with cross-linked zwitterionic polymer brush coatings to improve antifouling behavior while retaining useful membrane transport.", - "assay_or_context": "Recent membrane-materials study on modified cellulose acetate hollow-fiber membranes.", - "readouts": ["antifouling behavior", "protein resistance", "membrane transport", "surface modification"], - "result_summary": "The study supports the feasibility of combining cellulose-family membranes with MPC-like zwitterionic chemistry, which motivates a LIMINA variant of regenerated-cellulose neurodialysis membranes.", - "risk_or_caveat": "The evidence is not in neuronal medium and not necessarily at LIMINA's low MWCO range; pore-clogging and growth-factor recovery must be measured directly.", - "source_title": "Improving filtration performance of cellulose acetate hollow fiber membranes by grafting crosslinked poly(MPC-silane) polymer brushes", - "source_url": "https://link.springer.com/article/10.1557/s43579-026-00933-y", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "zwitterionic_peptide_membrane_2025", - "related_priority": "LIMINA-External-1", - "material_or_component": "Zwitterionic peptide-modified membrane", - "claim": "Zwitterionic peptide membrane modification has been studied as a way to mitigate membrane biofouling in protein production and aged cell culture media.", - "assay_or_context": "Recent membrane biofouling study in protein-production media context.", - "readouts": ["protein adsorption", "fresh media adsorption", "aged media adsorption", "membrane fouling"], - "result_summary": "The study evaluated zwitterionic peptide-modified membranes against adsorption using protein-production and cell-culture-media conditions.", - "risk_or_caveat": "This is early evidence and must be repeated with neuronal media, growth factors, and long-duration perfusion.", - "source_title": "Mitigating Membrane Biofouling in Protein Production with Zwitterionic Peptides", - "source_url": "https://www.ambic.org/wp-content/uploads/2025/01/71-sun-et-al-2025-mitigating-membrane-biofouling-in-protein-production-with-zwitterionic-peptides.pdf", - "evidence_type": "experimental", - "confidence": "low" - }, - { - "id": "neural_microfluidic_systems_2023", - "related_priority": "LIMINA-External-1", - "material_or_component": "Neural microfluidic perfusion systems", - "claim": "Microfluidic flow is a central tool for neural cell systems because it shapes chemical gradients, perfusion, shear stress, co-culture, and neuronal outgrowth.", - "assay_or_context": "Review of microfluidic systems for neural cell studies.", - "readouts": ["neuronal outgrowth", "chemical gradients", "perfusion", "shear stress"], - "result_summary": "The review highlights neural microfluidic systems that combine topography, perfusion, gradients, and co-culture to better simulate in vivo microenvironments.", - "risk_or_caveat": "Perfusion benefits do not automatically specify the right waste cartridge material; shear and secretome dilution must be managed.", - "source_title": "Microfluidic Systems for Neural Cell Studies", - "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC10451731/", - "evidence_type": "review", - "confidence": "medium" - }, - { - "id": "organ_chip_perfusion_review_2022", - "related_priority": "LIMINA-External-1", - "material_or_component": "Organ-on-chip perfusion and material constraints", - "claim": "Organ-on-chip and microphysiological systems require careful material selection because perfusion, adsorption, leachables, gas transport, and optical compatibility can all affect biological readouts.", - "assay_or_context": "Review of organ-on-chip materials and engineering constraints.", - "readouts": ["perfusion stability", "adsorption", "leachables", "gas transport", "material compatibility"], - "result_summary": "The review supports treating cartridge and fluidic materials as active determinants of biological performance rather than passive plumbing.", - "risk_or_caveat": "General organ-on-chip guidance must be narrowed for neural cultures and CL1-like long-duration wetware.", - "source_title": "Materials and engineering in organ-on-chip systems", - "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC9966054/", - "evidence_type": "review", - "confidence": "medium" - }, - { - "id": "cerebral_organoid_perfusion_2023", - "related_priority": "LIMINA-External-1", - "material_or_component": "Dynamic microfluidic perfusion for cerebral organoids", - "claim": "Dynamic microfluidic culture can improve oxygen/nutrient supply and waste exchange in cerebral organoids, supporting longer culture and reduced core cell death.", - "assay_or_context": "Experimental 3D microfluidic cerebral organoid culture system.", - "readouts": ["organoid viability", "cell death", "oxygen supply", "nutrient diffusion", "waste exchange"], - "result_summary": "The study reports long-term cerebral organoid culture with dynamic flow and oxygen supply, addressing limitations of static cultures.", - "risk_or_caveat": "This supports perfusion need but not selective cartridge chemistry; organoid geometry differs from MEA-bound cultures.", - "source_title": "Three-dimensional microfluidics with dynamic fluidic perturbation promotes viability and uniformity of human cerebral organoids", - "source_url": "https://www.sciencedirect.com/science/article/pii/S0956566323005778", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "bdnf_uniprot_p23560", - "related_priority": "LIMINA-External-1", - "material_or_component": "BDNF trophic factor retention target", - "claim": "Human BDNF is a secreted neurotrophic protein with a mature chain around the low-tens-of-kDa range and is reported as a homodimer, making trophic-factor retention sensitive to MWCO choice.", - "assay_or_context": "Protein reference entry used to choose dialysis MWCO screening range.", - "readouts": ["BDNF recovery", "MWCO risk", "trophic-factor retention"], - "result_summary": "BDNF is large enough that low-kDa MWCO membranes should retain it, while higher MWCO variants must be experimentally checked for loss.", - "risk_or_caveat": "Exact apparent size depends on processing, dimerization, assay format, adsorption, and medium matrix; use measured recovery rather than nominal MWCO alone.", - "source_title": "UniProtKB P23560 - Brain-derived neurotrophic factor", - "source_url": "https://www.uniprot.org/uniprotkb/P23560/entry", - "evidence_type": "technical_note", - "confidence": "medium" - }, - { - "id": "ngf_uniprot_p01138", - "related_priority": "LIMINA-External-1", - "material_or_component": "NGF trophic factor retention target", - "claim": "Human beta-nerve growth factor is a secreted neurotrophic protein in the low-tens-of-kDa range, so NGF recovery is a useful stress test for MWCO leakage and protein adsorption.", - "assay_or_context": "Protein reference entry used to choose dialysis MWCO screening range.", - "readouts": ["NGF recovery", "MWCO risk", "trophic-factor retention"], - "result_summary": "NGF-sized proteins are near the risk zone for higher MWCO screening options, especially if adsorption or protein processing changes apparent recovery.", - "risk_or_caveat": "Nominal molecular weight is not enough; medium matrix, membrane adsorption, and protein state can dominate measured recovery.", - "source_title": "UniProtKB P01138 - Beta-nerve growth factor", - "source_url": "https://www.uniprot.org/uniprotkb/P01138/entry", - "evidence_type": "technical_note", - "confidence": "medium" - }, - { - "id": "dialysis_mwco_principle_thermo", - "related_priority": "LIMINA-External-1", - "material_or_component": "Dialysis MWCO selection principle", - "claim": "MWCO is a nominal membrane-retention property, and dialysis design should choose a cutoff far enough below the molecules intended for retention while allowing smaller solutes to exchange.", - "assay_or_context": "Technical guidance for dialysis membrane selection.", - "readouts": ["MWCO selection", "small-solute exchange", "protein retention"], - "result_summary": "The guidance supports testing a MWCO gradient rather than relying on one cutoff, because retention depends on molecular size, membrane properties, and conditions.", - "risk_or_caveat": "Vendor guidance is generic; neuronal media and secretome retention require direct validation.", - "source_title": "Dialysis Methods for Protein Research", - "source_url": "https://www.thermofisher.com/us/en/home/life-science/protein-biology/protein-biology-learning-center/protein-biology-resource-library/pierce-protein-methods/dialysis-methods-protein-research.html", - "evidence_type": "technical_note", - "confidence": "medium" - }, - { - "id": "rc_3p5k_repligen_vendor_spec", - "related_priority": "LIMINA-External-1", - "material_or_component": "3.5 kDa regenerated-cellulose dialysis membrane", - "claim": "Regenerated-cellulose dialysis tubing is commercially available in the 3.5 kDa MWCO class and can be used as a purchasable starting point for the ZRC-ND lead.", - "assay_or_context": "Vendor product/specification page for Spectra/Por regenerated-cellulose dialysis membrane.", - "readouts": ["MWCO availability", "regenerated-cellulose membrane format", "procurement feasibility"], - "result_summary": "Repligen lists Standard Grade Regenerated Cellulose dialysis membrane options including Spectra/Por 3 at 3.5 kD MWCO, supporting procurement of a 3.5 kDa RC membrane for first-pass coupon testing.", - "risk_or_caveat": "Vendor availability and exact format can change; the product is a specification anchor, not a final cartridge design.", - "source_title": "Spectra/Por Standard RC Membranes", - "source_url": "https://store.repligen.com/pages/spectra-por-standard-rc-membranes", - "evidence_type": "vendor_spec", - "confidence": "medium" - }, - { - "id": "coc_cop_ooc_material_review_2026", - "related_priority": "LIMINA-External-1", - "material_or_component": "COC/COP cartridge housing", - "claim": "COC and COP have emerged as alternatives to PDMS for organ-on-chip applications because of low absorption/diffusion and high optical clarity.", - "assay_or_context": "Recent organ-on-chip technology review.", - "readouts": ["small-molecule absorption", "optical clarity", "organ-on-chip material choice", "manufacturability"], - "result_summary": "The review summarizes COC/COP as low-absorption, optically clear materials for chip fabrication, motivating COC/COP over PDMS for a monitored neural-medium side-stream cartridge.", - "risk_or_caveat": "COC/COP still require extractables, bonding, sterilization, and protein adsorption checks in the actual medium.", - "source_title": "Advances and applications of organ-on-a-chip technology", - "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC13030988/", - "evidence_type": "review", - "confidence": "medium" - }, - { - "id": "coc_pdms_sorption_2025", - "related_priority": "LIMINA-External-1", - "material_or_component": "COC versus PDMS cartridge material", - "claim": "COC can reduce problematic small-molecule retention/release relative to PDMS in organ-on-chip material selection.", - "assay_or_context": "Experimental study comparing sorption and release of small molecules in PDMS and COC.", - "readouts": ["small-molecule sorption", "compound release", "material memory", "media integrity"], - "result_summary": "The study reports that PDMS retains lipophilic compounds through bulk absorption and slow release, while COC facilitates easier desorption, supporting COC/COP as the first housing class for LIMINA waste-cartridge testing.", - "risk_or_caveat": "The tested compounds and organ-chip conditions are not identical to neuronal medium; direct media blank and extractables testing remain mandatory.", - "source_title": "Sorption and release of small molecules in PDMS and COC for Organs on chip", - "source_url": "https://www.nature.com/articles/s41598-025-97111-2", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "lactate_assay_cell_culture_vendor", - "related_priority": "LIMINA-External-1", - "material_or_component": "Lactate readout assay", - "claim": "Commercial quantitative lactate assay kits support cell culture supernatant or culture media sample types.", - "assay_or_context": "Vendor assay specification for colorimetric L-lactate quantification.", - "readouts": ["lactate concentration", "cell culture supernatant", "microplate readout"], - "result_summary": "Abcam's L-Lactate assay product page lists quantitative colorimetric detection and sample compatibility including cell culture supernatant and cell culture/fermentation media.", - "risk_or_caveat": "Culture medium matrix, phenol red, serum, and sample deproteinization can affect assay performance; run spike/recovery controls.", - "source_title": "L-Lactate Assay Kit (Colorimetric) ab65331", - "source_url": "https://www.abcam.com/en-us/products/assay-kits/l-lactate-assay-kit-colorimetric-ab65331", - "evidence_type": "vendor_spec", - "confidence": "medium" - }, - { - "id": "ammonia_assay_cell_culture_vendor", - "related_priority": "LIMINA-External-1", - "material_or_component": "Ammonia/ammonium readout assay", - "claim": "Commercial ammonia assay kits can quantify ammonia/ammonium in cell culture media or related biological samples.", - "assay_or_context": "Vendor assay specification for colorimetric ammonia/ammonium quantification.", - "readouts": ["ammonia concentration", "ammonium concentration", "cell culture media", "microplate readout"], - "result_summary": "Abcam's ammonia assay pages list cell culture media among compatible sample types and note quantitative microplate readout for ammonia/ammonium.", - "risk_or_caveat": "Total ammonia nitrogen depends on pH and matrix chemistry; record pH and run standards in matched medium.", - "source_title": "Ammonia Assay Kit ab83360", - "source_url": "https://www.abcam.com/en-us/products/assay-kits/ammonia-assay-kit-ab83360", - "evidence_type": "vendor_spec", - "confidence": "medium" - }, - { - "id": "bdnf_elisa_cell_culture_vendor", - "related_priority": "LIMINA-External-1", - "material_or_component": "BDNF retention assay", - "claim": "Commercial BDNF ELISA kits support quantitative measurement in cell culture supernatant.", - "assay_or_context": "Vendor assay specification for BDNF ELISA.", - "readouts": ["BDNF recovery", "cell culture supernatant", "trophic-factor retention"], - "result_summary": "Abcam's human BDNF ELISA product page lists quantitative measurement in human serum, plasma, and cell culture supernatant and reports recovery data for cell culture supernatant.", - "risk_or_caveat": "Species, matrix, mature/pro-BDNF specificity, and adsorption can alter apparent recovery; use matched spike/recovery controls.", - "source_title": "Human BDNF ELISA Kit ab212166", - "source_url": "https://www.abcam.com/en-us/products/elisa-kits/human-bdnf-elisa-kit-ab212166", - "evidence_type": "vendor_spec", - "confidence": "medium" - }, - { - "id": "ngf_elisa_cell_culture_vendor", - "related_priority": "LIMINA-External-1", - "material_or_component": "NGF retention assay", - "claim": "Commercial beta-NGF ELISA kits can analyze cell culture supernate samples.", - "assay_or_context": "Vendor assay specification for beta-NGF ELISA.", - "readouts": ["NGF recovery", "cell culture supernate", "trophic-factor retention"], - "result_summary": "R&D Systems' Human beta-NGF DuoSet ELISA product page indicates suitability of its suggested diluent for most cell culture supernate samples.", - "risk_or_caveat": "The assay must match the species and NGF form used in the spike panel; medium matrix effects require spike/recovery validation.", - "source_title": "Human beta-NGF DuoSet ELISA DY256", - "source_url": "https://www.rndsystems.com/products/human-beta-ngf-duoset-elisa_dy256", - "evidence_type": "vendor_spec", - "confidence": "medium" - }, - { - "id": "polympc_polyprev_retained_pore_2019", - "related_priority": "LIMINA-External-1", - "material_or_component": "PDA/polyMPC controlled surface-only membrane coating", - "claim": "Controlled deposition can add polyMPC or PEG antifouling chemistry to ultrafiltration membranes while retaining membrane selectivity and, for polyMPC, reducing BSA fouling and bacterial attachment.", - "assay_or_context": "Langmuir membrane-modification study using a nitrogen backflow polymer-prevention apparatus.", - "readouts": ["MWCO retention", "pure water flux", "BSA fouling", "E. coli attachment", "pore protection"], - "result_summary": "The study used backflow to keep antifouling chemistry out of membrane pores; polyMPC-functionalized membranes retained MWCO relative to unmodified membranes and reduced fouling/attachment.", - "risk_or_caveat": "The work was not done on 3.5 kDa regenerated cellulose or neural medium, and PDA/polyMPC extractables must be checked before cell exposure.", - "source_title": "Antifouling Ultrafiltration Membranes with Retained Pore Size by Controlled Deposition of Zwitterionic Polymers and Poly(ethylene glycol)", - "source_url": "https://pubs.acs.org/doi/10.1021/acs.langmuir.8b02184", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "pda_click_pmpc_membrane_2025", - "related_priority": "LIMINA-External-1", - "material_or_component": "PDA-mediated PMPC grafting-to membrane coating", - "claim": "Polydopamine-mediated click chemistry can tune zwitterionic polymer brush density on membranes and improve antifouling evaluation reproducibility.", - "assay_or_context": "Open-access Journal of Membrane Science study on density-controllable zwitterionic membrane modification.", - "readouts": ["polymer density", "dynamic fouling", "protein adsorption", "PDA durability", "thermal annealing"], - "result_summary": "The study reports a PDA primer followed by polymer immobilization through click chemistry, with thermal annealing used to improve PDA durability and dynamic tests used to assess antifouling performance.", - "risk_or_caveat": "The route adds process complexity and must be adapted carefully to low-MWCO RC membranes without blocking transport.", - "source_title": "Tuning membrane surfaces via polydopamine-mediated click reaction and analysis of antifouling properties", - "source_url": "https://www.sciencedirect.com/science/article/pii/S0376738825002091", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "psbma_cellulose_si_raft_2013", - "related_priority": "LIMINA-External-1", - "material_or_component": "Polysulfobetaine brush-grafted cellulose membrane", - "claim": "Sulfobetaine brushes can be grafted from cellulose membranes by SI-RAFT polymerization to reduce protein adsorption and cell/bacterial adhesion.", - "assay_or_context": "Polymer Chemistry study on cellulose membrane hemocompatibility and antibiofouling.", - "readouts": ["protein adsorption", "platelet adhesion", "hemolysis", "bacterial adhesion", "cell adhesion resistance"], - "result_summary": "The study grafted polysulfobetaine brushes onto cellulose membranes and reported lower protein adsorption and improved hemocompatibility/antibiofouling behavior.", - "risk_or_caveat": "SI-RAFT is less accessible for a first CL1-adjacent cartridge screen and may introduce initiator/chain-transfer residue concerns that need extractables testing.", - "source_title": "Surface-initiated RAFT polymerization of sulfobetaine from cellulose membranes to improve hemocompatibility and antibiofouling property", - "source_url": "https://pubs.rsc.org/en/content/articlelanding/2013/py/c3py00565h", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "iso_10993_5_cytotoxicity_extract_fda", - "related_priority": "LIMINA-Bio-1", - "material_or_component": "Material extract cytotoxicity screen", - "claim": "In vitro cytotoxicity testing for medical-device materials is commonly expected to follow ISO 10993-5-style extract or direct-contact methods before stronger biological claims are made.", - "assay_or_context": "FDA biocompatibility guidance and ISO 10993-5 cytotoxicity context.", - "readouts": ["extract cytotoxicity", "cell viability", "cell lysis", "material biocompatibility"], - "result_summary": "The guidance frames in vitro cytotoxicity as a core biological evaluation endpoint for materials, supporting a medium-extract toxicity gate before exposing neural cultures to ZRC-ND-conditioned media.", - "risk_or_caveat": "ZRC-ND is not being claimed as a medical device; this is a conservative biological-risk screen, not regulatory clearance.", - "source_title": "Use of International Standard ISO 10993-1, Biological evaluation of medical devices - Part 1", - "source_url": "https://www.fda.gov/media/85865/download", - "evidence_type": "technical_note", - "confidence": "medium" - }, - { - "id": "neuronal_network_material_biocompatibility_mea_2013", - "related_priority": "LIMINA-Bio-1", - "material_or_component": "Functional neuronal-network biocompatibility assay", - "claim": "Living cortical neuronal networks on MEAs can act as functional assays for material biocompatibility by detecting material-driven changes in network activity.", - "assay_or_context": "Experimental material biocompatibility study using primary neuronal networks and MEA recordings.", - "readouts": ["network spike rate", "functional activity", "material controls", "neural interface biocompatibility"], - "result_summary": "The study reports that negative-control materials such as gold and polyethylene did not significantly change neuronal activity, while positive controls such as copper and PVC reduced network spike rate.", - "risk_or_caveat": "Material extract and neural-medium cartridge tests are not identical to implantable neural-interface tests, but functional network readouts are relevant to CL1-like wetware.", - "source_title": "Use of cortical neuronal networks for in vitro material biocompatibility testing", - "source_url": "https://pubmed.ncbi.nlm.nih.gov/24176966/", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "dnt_nam_viability_neurite_mea_2022", - "related_priority": "LIMINA-Bio-1", - "material_or_component": "Neural viability, neurite, and MEA follow-up battery", - "claim": "Neurodevelopmental new-approach-method batteries combine metabolic/LDH viability, neurite outgrowth/maturation, synaptogenesis, apoptosis, and MEA network activity endpoints.", - "assay_or_context": "Review/integration of in vitro developmental neurotoxicity NAMs.", - "readouts": ["alamarBlue viability", "LDH release", "neurite outgrowth", "synaptogenesis", "MEA network activity"], - "result_summary": "The review describes a battery including high-content imaging endpoints and an MEA network-formation assay, with alamarBlue and LDH as cytotoxicity measures.", - "risk_or_caveat": "DNT batteries are not CL1 assays; endpoint selection and thresholds must be adapted to the actual neural culture model.", - "source_title": "Integrating data from in vitro New Approach Methodologies for Developmental Neurotoxicity", - "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC9421662/", - "evidence_type": "review", - "confidence": "medium" - }, - { - "id": "pedot_brain_monitoring_2025", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "PEDOT:PSS neural bioelectronic interface", - "claim": "PEDOT:PSS-based materials are widely investigated for brain monitoring and modulation because they combine conductivity, flexibility, and neural-interface compatibility.", - "assay_or_context": "Recent review of PEDOT:PSS-based organic bioelectronics for brain neural monitoring and modulation.", - "readouts": ["electrode impedance", "charge transfer", "biocompatibility", "mechanical compliance", "long-term stability"], - "result_summary": "The review frames PEDOT:PSS hydrogels and films as major formats for neural bioelectronics and emphasizes strategies to improve conductivity, compatibility, and stability.", - "risk_or_caveat": "Review-level support does not prove a specific hydrogel formulation is safe for CL1-like cultures; leachables, delamination, and chronic culture stability must be tested.", - "source_title": "PEDOT:PSS-based bioelectronics for brain monitoring and modulation", - "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC12075682/", - "evidence_type": "review", - "confidence": "medium" - }, - { - "id": "pedot_bio_sei_2026", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "PEDOT:PSS bio-solid-electrolyte interphase", - "claim": "PEDOT:PSS can be treated as a hydrated mixed ionic/electronic interphase whose chemistry should be optimized for selective transport, chemical stability, and biocompatible durability.", - "assay_or_context": "Conceptual neural-interface review using the bio-solid-electrolyte-interphase framing.", - "readouts": ["mixed conduction", "hydration", "chemical stability", "interfacial durability", "biocompatibility"], - "result_summary": "The review argues that PEDOT:PSS neural interfaces should be designed as adaptive interphases rather than only as conductivity boosters, motivating controlled microdomain and top-layer designs.", - "risk_or_caveat": "This is a design framework, not direct validation of any one LIMINA formulation.", - "source_title": "PEDOT:PSS as a Bio-Solid Electrolyte Interphase for Neural Interfaces: From Molecular Design to Interfacial Intelligence", - "source_url": "https://www.mdpi.com/2073-4360/18/1/20", - "evidence_type": "review", - "confidence": "medium" - }, - { - "id": "conductive_hydrogels_2025", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "Conductive hydrogel soft biointerface", - "claim": "Conductive hydrogels can provide soft, hydrated, electrically active microenvironments for monitoring or modulating biological activity.", - "assay_or_context": "Comprehensive review of conductive hydrogel design strategies and biomedical applications.", - "readouts": ["conductivity", "biocompatibility", "soft mechanics", "neural engineering", "cell regulation"], - "result_summary": "The review summarizes conductive mechanisms, fabrication methods, and biomedical applications including neural repair and cell regulation, supporting conductive hydrogels as a LIMINA candidate class.", - "risk_or_caveat": "The class is broad; formulation-specific toxicity, swelling, sterilization, and electrical stability must be measured.", - "source_title": "Conductive Hydrogels in Biomedical Engineering: Recent Advances and a Comprehensive Review", - "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC12840763/", - "evidence_type": "review", - "confidence": "medium" - }, - { - "id": "hydrogel_neural_tissue_2020", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "Neural hydrogel scaffold properties", - "claim": "Hydrogels can be tuned for neural tissue engineering through softness, hydration, ligand presentation, and ECM-like structure.", - "assay_or_context": "Review of hydrogel systems for neural tissue engineering.", - "readouts": ["cell adhesion", "neurite outgrowth", "matrix stiffness", "ligand functionalization", "neural support"], - "result_summary": "The review supports using hydrogel chemistry and mechanics as active design variables for neural cell survival and maturation.", - "risk_or_caveat": "Neural tissue engineering scaffolds do not automatically translate to MEA-bound long-duration biological computing cultures.", - "source_title": "Hydrogel systems and their role in neural tissue engineering", - "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC7014813/", - "evidence_type": "review", - "confidence": "medium" - }, - { - "id": "stiffness_sensing_2020", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "Brain-like mechanical cue design", - "claim": "Cells sense substrate stiffness, making mechanical matching a core design variable for neural interface materials.", - "assay_or_context": "Review of cellular stiffness sensing and mechanotransduction.", - "readouts": ["cell spreading", "mechanotransduction", "substrate stiffness", "neurite behavior", "matrix mechanics"], - "result_summary": "The review supports treating hydrogel modulus and viscoelasticity as material parameters rather than cosmetic properties.", - "risk_or_caveat": "Optimal stiffness depends on cell type, geometry, coating, and culture format; direct CL1-like neural readouts remain required.", - "source_title": "Stiffness Sensing by Cells", - "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC7276923/", - "evidence_type": "review", - "confidence": "medium" - }, - { - "id": "gelma_pedot_composite_2018", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "GelMA/PEDOT:PSS conductive hydrogel", - "claim": "PEDOT:PSS can be dispersed in GelMA to tune hydrogel electrical and mechanical properties while retaining short-term cell compatibility in a model cell system.", - "assay_or_context": "Experimental GelMA/PEDOT:PSS composite hydrogel synthesis and characterization.", - "readouts": ["impedance", "mechanics", "swelling", "cell viability", "electrical stimulation"], - "result_summary": "The study reported lower hydrogel impedance with PEDOT:PSS loading and found that 0.1 percent PEDOT:PSS composites supported C2C12 viability and spreading comparable to GelMA controls.", - "risk_or_caveat": "The cells were not CL1-like neurons, and PEDOT:PSS loading, photoinitiator exposure, and leachables must be rechecked in neural medium.", - "source_title": "Electroconductive Gelatin Methacryloyl-PEDOT:PSS Composite Hydrogels: Design, Synthesis, and Properties", - "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC11150039/", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "pedot_neural_culture_hydrogel_2025", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "Alginate-laminin-PEDOT:PSS neural culture hydrogel", - "claim": "A laminin-containing PEDOT:PSS hydrogel can remain stable under neural culture conditions and support human iPSC-derived cortical neuron culture for 28 days.", - "assay_or_context": "Experimental electrically active hydrogel engineered for in vitro neural cell cultures.", - "readouts": ["hiPSC cortical neuron culture", "neurite population", "network formation", "electrochemical impedance", "charge storage", "optical transparency", "culture stability"], - "result_summary": "The study reported alginate-laminin-PEDOT:PSS hydrogels with 1-10 kPa viscoelasticity, improved conductivity/charge storage, stable electrochemical behavior, and cortical neuron cytocompatibility over 28 days.", - "risk_or_caveat": "The formulation and assay format must be adapted to the actual MEA geometry, sterilization, and CL1-like long-duration culture requirements.", - "source_title": "Electrically active hydrogels based on PEDOT:PSS for neural cultures", - "source_url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC12620795/", - "evidence_type": "experimental", - "confidence": "high" - }, - { - "id": "gelma_pedot_micropatterning_2026", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "Micropatterned GelMA/PEDOT:PSS conductive hydrogel", - "claim": "GelMA/PEDOT:PSS conductive hydrogels can be micropatterned for soft bioelectronics, offering structural control for future neural interface formats.", - "assay_or_context": "Experimental two-photon lithography study of PEDOT:PSS/GelMA hydrogel micropatterning.", - "readouts": ["micropatterning", "conductivity", "mechanical compliance", "short-term viability", "morphology"], - "result_summary": "The study supports the feasibility of structurally tunable GelMA/PEDOT:PSS hydrogels, while noting that short-term biological validation needs follow-up functional assays.", - "risk_or_caveat": "Short-term viability and morphology are not enough for LIMINA suitability; neurite, MEA, extractables, and long-duration stability gates remain mandatory.", - "source_title": "3D micropatterning of PEDOT:PSS/Gelatin conductive hydrogels via two-photon lithography for soft bioelectronics", - "source_url": "https://www.nature.com/articles/s41528-026-00529-5", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "all_dry_zwitterionic_gradient_2024", - "related_priority": "LIMINA-External-1", - "material_or_component": "Substrate-independent zwitterionic gradient coating", - "claim": "All-dry zwitterionic gradient coatings can provide robust antifouling behavior across varied substrates and biofluid exposure conditions.", - "assay_or_context": "Experimental coating study covering substrate-independent deposition, ex vivo biofluid exposure, and in vivo-relevant testing.", - "readouts": ["protein adsorption", "biofouling", "coating robustness", "substrate independence"], - "result_summary": "The study supports using substrate-independent zwitterionic coatings as a surface-engineering route for low-fouling device or cartridge surfaces.", - "risk_or_caveat": "The coating is not validated on regenerated-cellulose MWCO membranes or CL1-like neuronal medium; transport, extractables, and trophic-factor recovery remain mandatory tests.", - "source_title": "Substrate-independent, all-dry, zwitterionic gradient coatings", - "source_url": "https://pubmed.ncbi.nlm.nih.gov/39567918/", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "op_apa_self_adaptive_hydrogel_2026", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "Okra mucilage polysaccharide and alpha-helical peptide amphiphile hydrogel", - "claim": "A filler-free polysaccharide/peptide-amphiphile hydrogel has been proposed as a self-adaptive, stable, mechanically compliant bioelectronic interface.", - "assay_or_context": "Preprint describing a hydrogel interface with electrochemical, mechanical, in vitro, and in vivo evaluation claims.", - "readouts": ["mechanical compliance", "electrochemical stability", "biocompatibility", "neural-interface performance"], - "result_summary": "The preprint frames the material as a filler-free alternative to particle-loaded conductive hydrogels, which could reduce conductive-particle leachability concerns if reproduced.", - "risk_or_caveat": "Preprint status, limited CL1-like neural culture evidence, procurement uncertainty, and formulation reproducibility make it a watch candidate rather than an immediate claim path.", - "source_title": "A self-adaptive bioelectronic hydrogel interface for neuromodulation", - "source_url": "https://arxiv.org/abs/2604.23945", - "evidence_type": "experimental", - "confidence": "low" - }, - { - "id": "zwitterionic_pedot_eeg_hydrogel_2025", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "Zwitterionic PEDOT:PSS hydrogel electrode", - "claim": "Zwitterionic PEDOT:PSS hydrogel electrodes have been reported for stable high-performance neural electrophysiology in rats.", - "assay_or_context": "Experimental in vivo electrophysiology hydrogel-electrode study.", - "readouts": ["EEG recording stability", "electrode impedance", "biocompatibility", "hydrated conductive interface"], - "result_summary": "The study supports a hybrid design direction that combines zwitterionic hydration chemistry with PEDOT:PSS mixed conduction for neural interfaces.", - "risk_or_caveat": "In vivo recording evidence does not prove compatibility with long-lived in vitro neuronal cultures; cell-contact extractables, swelling, and network activity remain open.", - "source_title": "Zwitterionic hydrogel electrodes enable stable and high-performance electroencephalogram recording in rats", - "source_url": "https://pubmed.ncbi.nlm.nih.gov/40801064/", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "mxene_adhesive_hydrogel_bmi_2025", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "MXene-based conductive adhesive hydrogel", - "claim": "MXene-containing adhesive hydrogels can improve soft bioelectronic signal coupling, suggesting a high-conductivity but higher-risk design space for neural interface materials.", - "assay_or_context": "Experimental conductive hydrogel study for brain-machine-interface sensing applications.", - "readouts": ["adhesion", "conductivity", "signal quality", "mechanical compliance"], - "result_summary": "The material class is attractive for high signal coupling but introduces nanomaterial-leachability and cell-contact toxicity risks that must be resolved before CL1-like use.", - "risk_or_caveat": "MXene exposure is a major uncertainty for direct neural cultures; treat as a later comparator or sensor-side material until extract and neural health gates are favorable.", - "source_title": "MXene-based conductive and adhesive hydrogel for brain-machine interfaces", - "source_url": "https://www.sciencedirect.com/science/article/abs/pii/S0021979725000863", - "evidence_type": "experimental", - "confidence": "low" - }, - { - "id": "pedot_sgagh_electronic_ecm_2026", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "PEDOT:sGAGh electronic extracellular-matrix hydrogel", - "claim": "A sulfated-glycosaminoglycan PEDOT hydrogel can combine soft ECM-like structure, tunable electrochemistry, and electrically modulated growth-factor retention or release.", - "assay_or_context": "Advanced Materials 2026 experimental study of PEDOT:sGAGh coatings and OECT-integrated hydrogels.", - "readouts": ["growth-factor sequestration", "electrochemical behavior", "softness", "water content", "cell differentiation cues"], - "result_summary": "The study reports ultra-low PEDOT content around 1 wt percent, high water content, growth-factor affinity, and low-voltage modulation of macromolecular cues, making it a high-novelty biohybrid-circuit material direction.", - "risk_or_caveat": "It is not yet direct evidence for long-duration human neuronal-network culture on CL1-like MEAs, and synthesis uses chemistries that require extractables and reproducibility gates.", - "source_title": "Conductive Hydrogels for Exogenous Sensing and Cell Fate Control", - "source_url": "https://pubmed.ncbi.nlm.nih.gov/41883146/", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "alg_gel_pedot_ppy_biointerface_2026", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "Alginate-gelatin PEDOT:PSS and PPy/PSS conductive hydrogel family", - "claim": "Alginate-gelatin hydrogels incorporating PEDOT:PSS, PPy/PSS, or both can provide tunable softness, high conductivity, electrochemical stability, and short-term cytocompatibility.", - "assay_or_context": "Journal of Materials Chemistry B 2026 open-access biointerface hydrogel study.", - "readouts": ["conductivity", "impedance", "electrochemical stability", "swelling", "28-day wet-weight stability", "fibroblast cytocompatibility"], - "result_summary": "The study reports 5-70 kPa moduli, 0.1-3.7 S/cm conductivities, 380-830 ohm cm2 impedance at 1 kHz, improved 28-day wet-weight stability versus pristine Alg-GEL, and NIH3T3 cytocompatibility.", - "risk_or_caveat": "Fibroblast compatibility and neural-interface framing do not prove CL1-like neuronal network compatibility; PPy synthesis residue, swelling, and leachables remain first-order risks.", - "source_title": "Electroconductive and highly biocompatible PEDOT- and polypyrrole-alginate-gelatin hydrogels with enhanced electrochemical performance for biointerfaces", - "source_url": "https://pubs.rsc.org/en/content/articlelanding/2026/tb/d5tb02148k", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "cameo_cnt_organoid_mea_2026", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "Carbon-nanotube microelectrode array for cerebral organoids", - "claim": "Carbon nanotube microelectrode arrays have been proposed as a scalable, biocompatible route for electrophysiology of cerebral organoids.", - "assay_or_context": "npj Biosensing 2026 experimental organoid electrophysiology platform.", - "readouts": ["organoid electrophysiology", "microelectrode array", "biocompatibility", "scalability", "signal recording"], - "result_summary": "The work motivates CNT-based recording materials as a device-side comparator for organoid and neural aggregate interfaces rather than an immediate cell-contact hydrogel lead.", - "risk_or_caveat": "CNT exposure and fabrication route need extractables, particle-shedding, and long-duration neuronal health gates before any direct CL1 material claim.", - "source_title": "CAMEOs: carbon nanotube microelectrode arrays for scalable, accessible electrophysiology of cerebral organoids", - "source_url": "https://www.nature.com/articles/s44328-026-00088-9", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "shape_conformal_organoid_framework_2026", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "Shape-conformal porous neural-organoid framework", - "claim": "A shape-conformal porous framework can wrap neural organoids to improve full-coverage, high-resolution electrophysiology.", - "assay_or_context": "Nature Biomedical Engineering 2026 neural organoid bioelectronics study.", - "readouts": ["organoid coverage", "electrophysiology", "3D conformity", "porous framework", "recording resolution"], - "result_summary": "The study supports a geometry-and-material architecture direction for organoid-scale wetware interfaces, especially when 2D MEA contact is the limiting factor.", - "risk_or_caveat": "This is primarily a device architecture lead; LIMINA would need a simplified material witness coupon before treating it as a first material-technology claim.", - "source_title": "Shape-conformal porous frameworks for full coverage of neural organoids and high-resolution electrophysiology", - "source_url": "https://www.nature.com/articles/s41551-026-01620-y", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "mlmea_organoid_depth_interface_2026", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "Multilayered mesh microelectrode array with PDMS spacers and Pt-black electrodes", - "claim": "A multilayered mesh MEA can interface with multiple depths of cerebral organoids and support noninvasive, spatially resolved electrophysiology over weeks.", - "assay_or_context": "Microsystems & Nanoengineering 2026 experimental cerebral-organoid electrophysiology platform.", - "readouts": ["depth-resolved spikes", "active channel ratio", "firing rate", "organoid viability", "mesh integration", "impedance"], - "result_summary": "The platform stacks flexible mesh MEA layers with compliant PDMS spacers, uses Pt-black electrodes for lower impedance, and reports stable cerebral-organoid integration and electrophysiology for more than four weeks.", - "risk_or_caveat": "This is a 3D device architecture rather than a near-term coating recipe; fabrication complexity, Pt-black stability, PDMS adsorption, and transfer to CL1-like formats need separate witness-coupon gates.", - "source_title": "Multilayered microelectrode array for monitoring electrophysiological signals of 3d neural networks in cerebral organoid", - "source_url": "https://www.nature.com/articles/s41378-026-01328-8", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "eflower_hydrogel_actuated_3d_mea_2024", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "Hydrogel-actuated flower-shaped 3D microelectrode array", - "claim": "Hydrogel actuation can transform a planar MEA into a 3D flower-like interface for recording from brain spheroids without forcing a rigid planar geometry.", - "assay_or_context": "Science Advances 2024 brain-spheroid electrophysiology platform.", - "readouts": ["3D MEA wrapping", "spheroid electrophysiology", "hydrogel actuation", "non-damaging contact"], - "result_summary": "The e-Flower work demonstrates a hydrogel-driven shape transformation strategy for 3D neural spheroid recordings, motivating mechanically adaptive MEA geometries for future LIMINA organoid or aggregate interfaces.", - "risk_or_caveat": "It is a device architecture and actuation strategy, not direct evidence that the actuator hydrogel itself is a CL1-compatible cell-contact material; extractables and long-duration culture gates remain open.", - "source_title": "The e-Flower: A hydrogel-actuated 3D MEA for brain spheroid electrophysiology", - "source_url": "https://pubmed.ncbi.nlm.nih.gov/39413178/", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "topologically_entangled_psbma_hydrogel_2026", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "Topologically entangled PSBMA zwitterionic hydrogel", - "claim": "A single-polymer zwitterionic hydrogel can reversibly switch between ultraplastic and hyperelastic states while covering a broad biological-tissue-like modulus range.", - "assay_or_context": "Nature Communications 2026 hydrogel mechanics study.", - "readouts": ["modulus range", "toughness", "strain recovery", "zwitterionic hydration", "cell-and-tissue-engineering relevance"], - "result_summary": "The hydrogel uses PSBMA chain-conformation control to span very soft to much stiffer mechanical states, making it a potential low-fouling mechanoadaptive matrix module for later LIMINA screening.", - "risk_or_caveat": "The evidence is mechanical and general tissue-engineering oriented rather than neuronal-network or MEA evidence; monomer, extractables, adhesion, and electrical coupling remain unresolved.", - "source_title": "Topologically entangled zwitterionic hydrogels with reversible in situ transitions between ultraplastic and hyperelastic states", - "source_url": "https://www.nature.com/articles/s41467-026-73355-y", - "evidence_type": "experimental", - "confidence": "medium" - }, - { - "id": "anisotropic_spedot_psbma_hydrogel_2026", - "related_priority": "LIMINA-Cell-1", - "material_or_component": "Anisotropic S-PEDOT/PSBMA conductive antifouling hydrogel", - "claim": "Aligned conductive-network hydrogels combining sulfonated PEDOT chemistry with PSBMA-like zwitterionic hydration may provide robust, conductive, antifouling physiological interfaces.", - "assay_or_context": "Chemical Engineering Journal 2026 experimental hydrogel study for physiological monitoring.", - "readouts": ["anisotropic conductivity", "mechanical robustness", "antifouling behavior", "physiological monitoring", "hydrated interface"], - "result_summary": "The study motivates a design space where PEDOT-family conduction and zwitterionic hydration are engineered together rather than treated as separate coating layers.", - "risk_or_caveat": "The evidence is physiological-monitoring oriented rather than long-duration neuronal-network culture evidence; synthesis, extractables, swelling, and laminin-compatible neural adhesion need separate LIMINA gates.", - "source_title": "Anisotropic hydrogel with aligned conductive networks enables integrated robustness, high conductivity, and antifouling capability for physiological monitoring", - "source_url": "https://www.sciencedirect.com/science/article/pii/S1385894726032341", - "evidence_type": "experimental", - "confidence": "medium" - } -] diff --git a/data/evidence_schema.json b/data/evidence_schema.json deleted file mode 100644 index bfbe75d..0000000 --- a/data/evidence_schema.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "version": "0.1", - "record_type": "limina_evidence", - "required_fields": [ - "id", - "related_priority", - "material_or_component", - "claim", - "assay_or_context", - "readouts", - "result_summary", - "risk_or_caveat", - "source_title", - "source_url", - "evidence_type", - "confidence" - ], - "field_notes": { - "id": "Stable snake_case evidence id.", - "related_priority": "Example: LIMINA-External-1.", - "material_or_component": "Material, module, membrane, device component, or method.", - "claim": "One concise claim supported by the source.", - "assay_or_context": "Experimental, review, bioprocess, neural culture, organ-on-chip, or vendor-spec context.", - "readouts": "Measured or proposed readouts relevant to LIMINA.", - "result_summary": "Short paraphrase of the relevant result.", - "risk_or_caveat": "Known limitation, uncertainty, or transfer-risk to CL1-like neural wetware.", - "source_title": "Human-readable source title.", - "source_url": "Source URL.", - "evidence_type": "review, experimental, technical_note, vendor_spec, patent, inference.", - "confidence": "low, medium, high." - } -} - diff --git a/data/evidence_sources.json b/data/evidence_sources.json deleted file mode 100644 index 0353a4f..0000000 --- a/data/evidence_sources.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "pedot_brain_monitoring_2025": { - "title": "PEDOT:PSS-based bioelectronics for brain monitoring and modulation", - "url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC12075682/", - "note": "Review of PEDOT:PSS brain bioelectrodes, conductivity, biocompatibility, impedance, and stability strategies." - }, - "pedot_bio_sei_2026": { - "title": "PEDOT:PSS as a Bio-Solid Electrolyte Interphase for Neural Interfaces", - "url": "https://www.mdpi.com/2073-4360/18/1/20", - "note": "Conceptual review of PEDOT:PSS as an adaptive neural bio-interphase, including fouling, hydration, and leachable risks." - }, - "conductive_hydrogels_2025": { - "title": "Conductive Hydrogels in Biomedical Engineering: Recent Advances and a Comprehensive Review", - "url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC12840763/", - "note": "Broad review of conductive hydrogel mechanisms and biomedical uses including neural repair and cell regulation." - }, - "graphene_neural_interfaces_2024": { - "title": "The potential of graphene coatings as neural interfaces", - "url": "https://pubs.rsc.org/en/content/articlehtml/2024/nh/d3nh00461a", - "note": "Review of graphene coatings for neural interfaces and required cell-interface properties." - }, - "graphene_activity_detection_2021": { - "title": "Graphene-Based Electrode Materials for Neural Activity Detection", - "url": "https://www.mdpi.com/1996-1944/14/20/6170", - "note": "Review of graphene neural electrodes, biocompatibility, conductivity, flexibility, and recording applications." - }, - "hydrogel_neural_tissue_2020": { - "title": "Hydrogel systems and their role in neural tissue engineering", - "url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC7014813/", - "note": "Review of hydrogels for neural tissue growth, stiffness, ligand functionalization, and neural progenitor support." - }, - "stiffness_sensing_2020": { - "title": "Stiffness Sensing by Cells", - "url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC7276923/", - "note": "Review discussing neuronal response to soft, brain-like substrates and stiffness-dependent neurite extension." - }, - "zwitterionic_cp_2023": { - "title": "Chemically revised conducting polymers with inflammation resistance for intimate bioelectronic electrocoupling", - "url": "https://pmc.ncbi.nlm.nih.gov/articles/PMC9975642/", - "note": "Review highlighting zwitterionic conducting polymers for antifouling, aqueous stability, and neural electrocoupling." - }, - "zwitterionic_hydrogel_2022": { - "title": "A Soft Zwitterionic Hydrogel as Potential Coating on a Polyimide Surface to Reduce Foreign Body Reaction to Intraneural Electrodes", - "url": "https://www.mdpi.com/1420-3049/27/10/3126", - "note": "Study of zwitterionic hydrogel coating for neural electrode biocompatibility and antifibrotic strategy." - }, - "dopamine_zwitterion_surface_2021": { - "title": "Bioinspired dopamine and zwitterionic polymers for non-fouling surface engineering", - "url": "https://pubs.rsc.org/en/content/articlelanding/2021/cs/d1cs00658d", - "note": "Review of dopamine and zwitterionic surface engineering for non-fouling biological interfaces." - }, - "chgnet_2023": { - "title": "CHGNet as a pretrained universal neural network potential for charge-informed atomistic modelling", - "url": "https://www.nature.com/articles/s42256-023-00716-3", - "note": "Universal neural network potential useful for inorganic material structure and dynamics screening." - }, - "mattersim_2024": { - "title": "MatterSim: A deep-learning model for materials under real-world conditions", - "url": "https://www.microsoft.com/en-us/research/blog/mattersim-a-deep-learning-model-for-materials-under-real-world-conditions/", - "note": "Foundation model for efficient materials simulation across elements, temperature, and pressure." - } -} - diff --git a/data/experiment_schema.json b/data/experiment_schema.json deleted file mode 100644 index a28a871..0000000 --- a/data/experiment_schema.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "version": "0.1", - "record_type": "limina_experiment_design", - "required_fields": [ - "id", - "priority_lane", - "title", - "objective", - "hypothesis", - "scope", - "test_articles", - "controls", - "readouts", - "decision_gates", - "risk_controls", - "next_decisions", - "source_refs" - ], - "field_notes": { - "test_articles": "Candidate modules/material variants to compare.", - "controls": "Negative, positive, baseline, and process controls.", - "readouts": "Measurements grouped by category.", - "decision_gates": "Pass/fail or ranking criteria.", - "risk_controls": "Experimental risks and how to detect them.", - "next_decisions": "What to do depending on results.", - "source_refs": "Evidence ids or source URLs that motivate the design." - } -} - diff --git a/data/external1_baseline_experiment.json b/data/external1_baseline_experiment.json deleted file mode 100644 index 4d19818..0000000 --- a/data/external1_baseline_experiment.json +++ /dev/null @@ -1,169 +0,0 @@ -{ - "id": "external1_rc_dialysis_mwco_baseline_v0_1", - "priority_lane": "LIMINA-External-1", - "title": "Regenerated-cellulose MWCO baseline for selective neuronal-media waste exchange", - "objective": "Identify a passive side-stream dialysis architecture that removes low-molecular-weight waste from neuronal culture medium while preserving protein/growth-factor signals.", - "hypothesis": "Regenerated-cellulose membranes with lower MWCO values will preserve trophic proteins better, while higher MWCO values will clear lactate/ammonium faster but may leak useful signaling molecules. A side-stream design can reveal the useful trade-off without exposing cells to unvalidated cartridge materials.", - "scope": { - "design_level": "screening experiment design, not a wet-lab SOP", - "system_context": "CL1-like neural wetware life-support loop", - "cartridge_position": "side-stream or external loop, not directly in the cell chamber", - "primary_material_family": "regenerated cellulose dialysis membrane", - "first_question": "Which MWCO range best balances small-waste clearance and trophic-factor retention?" - }, - "test_articles": [ - { - "id": "rc_1kda", - "name": "Regenerated cellulose, 1 kDa MWCO", - "rationale": "Most conservative retention option; expected to preserve trophic proteins but may clear waste slowly.", - "expected_tradeoff": "high retention, low clearance" - }, - { - "id": "rc_3_5kda", - "name": "Regenerated cellulose, 3.5 kDa MWCO", - "rationale": "Common small-molecule dialysis cutoff; expected to retain BDNF/NGF-sized proteins while allowing lactate/ammonium exchange.", - "expected_tradeoff": "high retention, moderate clearance" - }, - { - "id": "rc_10kda", - "name": "Regenerated cellulose, 10 kDa MWCO", - "rationale": "Potential clearance/retention compromise; may preserve BDNF dimer while risking partial NGF or monomeric factor loss.", - "expected_tradeoff": "moderate retention, higher clearance" - }, - { - "id": "rc_20kda", - "name": "Regenerated cellulose, 20 kDa MWCO", - "rationale": "Stress-test high-clearance option; useful to quantify whether trophic-factor leakage becomes unacceptable.", - "expected_tradeoff": "highest clearance, highest protein-factor leakage risk" - }, - { - "id": "low_binding_prefilter_rc_3_5kda", - "name": "Low-binding PES/SFCA prefilter plus 3.5 kDa RC dialysis", - "rationale": "Tests whether debris control can be added before dialysis without stripping proteins.", - "expected_tradeoff": "better debris control, added adsorption risk" - } - ], - "controls": [ - { - "id": "static_no_cartridge", - "name": "Static conditioned medium, no cartridge", - "purpose": "Measures waste accumulation and factor stability without exchange." - }, - { - "id": "bulk_medium_exchange", - "name": "Bulk medium exchange reference", - "purpose": "Represents conventional refresh behavior and secretome dilution risk." - }, - { - "id": "fresh_medium_blank", - "name": "Fresh medium blank through each module", - "purpose": "Detects extractables, pH/osmolality drift, and baseline adsorption without cell-derived waste." - }, - { - "id": "spiked_recovery_panel", - "name": "Medium spiked with albumin, BDNF/NGF analog panel, lactate, and ammonium", - "purpose": "Separates material retention/clearance behavior from biological variability." - } - ], - "readouts": { - "waste_clearance": [ - "lactate concentration before/after cartridge exposure", - "ammonium/ammonia concentration before/after cartridge exposure", - "optional targeted metabolite panel for unknown inhibitory metabolites" - ], - "factor_retention": [ - "BDNF recovery or proxy neurotrophic protein recovery", - "NGF recovery or proxy neurotrophic protein recovery", - "albumin recovery", - "transferrin recovery", - "total protein recovery" - ], - "medium_integrity": [ - "pH drift", - "osmolality drift", - "conductivity drift", - "visible precipitation or turbidity", - "extractables screen if available" - ], - "module_performance": [ - "flow resistance or pressure proxy", - "bubble formation events", - "fouling or flux decline", - "post-run membrane visual inspection" - ], - "biological_followup": [ - "neuronal conditioned-media viability screen", - "neurite outgrowth or morphology screen", - "network activity/MEA readout only after media-chemistry gates pass" - ] - }, - "decision_gates": [ - { - "id": "factor_retention_gate", - "criterion": "Prefer variants that retain high-molecular-weight trophic proteins and albumin while avoiding broad protein loss.", - "failure_response": "If retention is poor, move to lower MWCO or add zwitterionic/low-fouling membrane modification." - }, - { - "id": "clearance_gate", - "criterion": "Require measurable lactate and ammonium exchange relative to no-cartridge control.", - "failure_response": "If clearance is weak at acceptable retention, consider larger membrane area, longer side-stream exposure, or a polishing stage." - }, - { - "id": "medium_integrity_gate", - "criterion": "Reject variants causing unacceptable pH, osmolality, conductivity, turbidity, or extractables shifts.", - "failure_response": "Change membrane handling, module housing, sterilization workflow, or material family." - }, - { - "id": "no_silent_stripping_gate", - "criterion": "Reject nonselective adsorbers that reduce useful factors even if waste removal is strong.", - "failure_response": "Keep broad adsorbents out of the cell-facing life-support path unless tightly confined and analytically monitored." - } - ], - "risk_controls": [ - { - "risk": "MWCO removes helpful small molecules or secretome factors", - "detection": "Compare targeted factor recovery and total protein before/after; add metabolomics in later rounds." - }, - { - "risk": "Membrane or housing leachables harm neurons", - "detection": "Run fresh-medium blanks through each module before any biological followup." - }, - { - "risk": "Fouling changes performance over time", - "detection": "Track flow resistance and clearance/retention across repeated or aged-medium exposures." - }, - { - "risk": "Bulk exchange outperforms cartridge in short-term tests", - "detection": "Compare against bulk exchange, but evaluate secretome dilution as a separate cost." - } - ], - "next_decisions": [ - { - "condition": "3.5 kDa or 10 kDa RC clears waste and preserves trophic factors", - "action": "Use that MWCO as the passive baseline and test membrane area/flow geometry." - }, - { - "condition": "Retention is strong but clearance is weak", - "action": "Increase membrane area or exposure before adding active polishing." - }, - { - "condition": "Clearance is strong but trophic-factor loss is high", - "action": "Lower MWCO and prioritize zwitterionic/low-fouling membrane surfaces." - }, - { - "condition": "Passive dialysis cannot meet clearance targets", - "action": "Evaluate ICP or confined ion-exchange side-stream module as a second-stage polish." - } - ], - "source_refs": [ - "dialysis_medium_partitioning_2020", - "ammonia_importance_review_1996", - "lactate_ammonia_growth_inhibition_1991", - "inhibitory_metabolites_2021", - "neural_microfluidic_systems_2023", - "bdnf_uniprot_p23560", - "ngf_uniprot_p01138", - "dialysis_mwco_principle_thermo" - ] -} - diff --git a/data/external_material_candidates.json b/data/external_material_candidates.json deleted file mode 100644 index 179a239..0000000 --- a/data/external_material_candidates.json +++ /dev/null @@ -1,164 +0,0 @@ -[ - { - "id": "layered_neuronal_media_waste_cartridge", - "priority_lane": "LIMINA-External-1", - "name": "Layered neuronal-media waste cartridge", - "class": "hybrid_selective_cartridge", - "hypothesis": "A staged cartridge can combine low-binding prefiltration, dialysis-like small-molecule exchange, and selective ammonium/lactate polishing while preserving growth factors.", - "target_waste": ["lactate", "ammonium", "small inhibitory metabolites", "cell debris"], - "retain_targets": ["BDNF", "NGF", "FGF", "EGF", "albumin", "transferrin", "secretome factors"], - "materials_or_modules": ["low-binding PES or SFCA prefilter", "regenerated-cellulose dialysis membrane", "weak ion-exchange hydrogel zone", "inline pH/conductivity sample port"], - "assay_plan": ["lactate removal", "ammonium removal", "BDNF retention", "albumin retention", "pH drift", "osmolality drift", "neuronal conditioned-media viability"], - "known_risks": ["module complexity", "sterilization validation", "unintended adsorption in ion-exchange zone"], - "evidence_refs": ["dialysis_medium_partitioning_2020", "icp_spent_media_regeneration_2024", "low_binding_membrane_media_technical", "ammonia_importance_review_1996"], - "scores": { - "target_selectivity": 4, - "growth_factor_retention": 4, - "low_leachables": 3, - "culture_stability": 3, - "integration_complexity": 3, - "monitorability": 4, - "novelty_upside": 5, - "risk_control": 3 - } - }, - { - "id": "regenerated_cellulose_dialysis_exchange", - "priority_lane": "LIMINA-External-1", - "name": "Regenerated-cellulose dialysis exchange module", - "class": "size_selective_membrane", - "hypothesis": "A dialysis membrane with carefully chosen MWCO can let low-MW wastes leave while retaining high-MW growth factors and proteins in the culture loop.", - "target_waste": ["lactate", "ammonium", "small metabolites"], - "retain_targets": ["growth factors", "serum proteins", "large secretome proteins"], - "materials_or_modules": ["regenerated cellulose hollow fiber or flat membrane", "counter-flow fresh medium or buffer", "low-dead-volume cartridge"], - "assay_plan": ["small molecule clearance", "growth factor retention", "medium osmolarity drift", "protein adsorption", "long-duration membrane fouling"], - "known_risks": ["MWCO may also remove helpful small signaling molecules", "diffusion-limited clearance", "biofouling over time"], - "evidence_refs": ["dialysis_medium_partitioning_2020", "low_binding_rc_membrane_vendor", "organ_chip_perfusion_review_2022"], - "scores": { - "target_selectivity": 4, - "growth_factor_retention": 5, - "low_leachables": 4, - "culture_stability": 4, - "integration_complexity": 4, - "monitorability": 3, - "novelty_upside": 3, - "risk_control": 4 - } - }, - { - "id": "zwitterionic_antifouling_membrane", - "priority_lane": "LIMINA-External-1", - "name": "Zwitterionic antifouling membrane coating", - "class": "antifouling_surface_modification", - "hypothesis": "Zwitterionic hydration layers can reduce protein fouling and preserve cartridge performance in protein-rich neuronal medium.", - "target_waste": ["fouling-driven performance drift", "nonspecific protein adsorption"], - "retain_targets": ["growth factors", "serum proteins", "secretome proteins"], - "materials_or_modules": ["zwitterionic grafted PES/PVDF/RC", "sulfobetaine or carboxybetaine surfaces", "adhesion-promoting primer layer"], - "assay_plan": ["BSA adsorption", "BDNF recovery", "7-day medium aging", "flow resistance drift", "extractables"], - "known_risks": ["coating adhesion", "scale-up chemistry", "possible change in membrane permeability"], - "evidence_refs": ["zwitterionic_membrane_antifouling_2016", "zwitterionic_peptide_membrane_2025", "low_binding_membrane_media_technical"], - "scores": { - "target_selectivity": 3, - "growth_factor_retention": 4, - "low_leachables": 3, - "culture_stability": 3, - "integration_complexity": 3, - "monitorability": 3, - "novelty_upside": 5, - "risk_control": 3 - } - }, - { - "id": "icp_electromembrane_media_regenerator", - "priority_lane": "LIMINA-External-1", - "name": "Ion-concentration-polarization media regenerator", - "class": "electromembrane_separator", - "hypothesis": "An external ICP/electromembrane module could remove charged waste metabolites from discarded or side-stream medium without modifying the cell chamber.", - "target_waste": ["ammonium", "lactate", "charged inhibitory metabolites"], - "retain_targets": ["proteins", "growth factors", "cells"], - "materials_or_modules": ["ion exchange membranes", "microfluidic separator", "waste-stream placement", "conductivity monitoring"], - "assay_plan": ["charged waste removal", "growth-factor recovery", "conductivity drift", "pH drift", "electrolysis byproducts", "heat generation"], - "known_risks": ["electrochemical byproducts", "pH and conductivity perturbation", "device complexity", "neural medium validation gap"], - "evidence_refs": ["icp_spent_media_regeneration_2024", "ammonia_importance_review_1996"], - "scores": { - "target_selectivity": 4, - "growth_factor_retention": 4, - "low_leachables": 3, - "culture_stability": 3, - "integration_complexity": 2, - "monitorability": 5, - "novelty_upside": 5, - "risk_control": 2 - } - }, - { - "id": "ammonium_selective_ion_exchange_hydrogel", - "priority_lane": "LIMINA-External-1", - "name": "Ammonium-selective ion-exchange hydrogel insert", - "class": "selective_sorbent", - "hypothesis": "A confined ion-exchange hydrogel can scavenge ammonium from a side stream while reducing direct exposure of cells to resin particles.", - "target_waste": ["ammonium"], - "retain_targets": ["growth factors", "serum proteins", "lactate as metabolic signal if desired"], - "materials_or_modules": ["weak acid cation exchanger", "hydrogel confinement", "diffusion barrier", "replaceable insert"], - "assay_plan": ["ammonium capacity", "selectivity versus sodium/potassium/calcium", "pH drift", "osmolality drift", "protein adsorption", "extractables"], - "known_risks": ["competes with essential cations", "pH/osmolality shift", "resin leachables", "limited lactate handling"], - "evidence_refs": ["ammonia_importance_review_1996", "medium_cycling_review_2023"], - "scores": { - "target_selectivity": 3, - "growth_factor_retention": 4, - "low_leachables": 2, - "culture_stability": 3, - "integration_complexity": 4, - "monitorability": 4, - "novelty_upside": 4, - "risk_control": 2 - } - }, - { - "id": "enzyme_assisted_lactate_polishing", - "priority_lane": "LIMINA-External-1", - "name": "Enzyme-assisted lactate polishing module", - "class": "biocatalytic_cartridge", - "hypothesis": "Immobilized lactate-processing enzymes may reduce lactate load, but byproduct management is the main design constraint.", - "target_waste": ["lactate"], - "retain_targets": ["growth factors", "serum proteins"], - "materials_or_modules": ["immobilized lactate oxidase or dehydrogenase concept", "byproduct scavenger layer", "oxygen/pH monitoring"], - "assay_plan": ["lactate conversion", "H2O2 or byproduct formation", "pH drift", "enzyme leaching", "neuronal conditioned-media viability"], - "known_risks": ["reactive byproducts", "enzyme instability", "oxygen dependence", "new toxicity mode"], - "evidence_refs": ["medium_cycling_review_2023", "inhibitory_metabolites_2021"], - "scores": { - "target_selectivity": 4, - "growth_factor_retention": 4, - "low_leachables": 2, - "culture_stability": 2, - "integration_complexity": 2, - "monitorability": 5, - "novelty_upside": 4, - "risk_control": 2 - } - }, - { - "id": "broad_adsorbent_carbon_resin_bed", - "priority_lane": "LIMINA-External-1", - "name": "Broad adsorbent carbon/resin bed", - "class": "nonselective_adsorber", - "hypothesis": "A broad adsorbent could remove diverse small inhibitory molecules, but it is likely to strip useful hydrophobic factors and medium supplements unless heavily constrained.", - "target_waste": ["hydrophobic inhibitory metabolites", "unknown small molecule inhibitors"], - "retain_targets": ["growth factors", "hormones", "lipids", "vitamins"], - "materials_or_modules": ["activated carbon", "polymeric adsorbent resin", "guard membrane"], - "assay_plan": ["metabolomics before/after", "BDNF/NGF retention", "vitamin retention", "cell viability", "extractables"], - "known_risks": ["nonselective stripping", "growth-factor and hormone loss", "batch variability", "difficult mechanistic control"], - "evidence_refs": ["medium_cycling_review_2023", "inhibitory_metabolites_2021"], - "scores": { - "target_selectivity": 2, - "growth_factor_retention": 1, - "low_leachables": 2, - "culture_stability": 3, - "integration_complexity": 3, - "monitorability": 3, - "novelty_upside": 3, - "risk_control": 1 - } - } -] - diff --git a/data/external_scoring_profile.json b/data/external_scoring_profile.json deleted file mode 100644 index 4c4e372..0000000 --- a/data/external_scoring_profile.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "version": "0.1", - "scale": "1_to_5", - "scope": "limina_external_materials", - "weights": { - "target_selectivity": 0.2, - "growth_factor_retention": 0.18, - "low_leachables": 0.14, - "culture_stability": 0.13, - "integration_complexity": 0.11, - "monitorability": 0.08, - "novelty_upside": 0.08, - "risk_control": 0.08 - }, - "gates": [ - { - "field": "growth_factor_retention", - "minimum": 3, - "reason": "A waste cartridge must not silently strip critical trophic factors or serum proteins." - }, - { - "field": "low_leachables", - "minimum": 3, - "reason": "Leachables in warm neuronal culture medium could invalidate otherwise promising waste removal." - }, - { - "field": "culture_stability", - "minimum": 3, - "reason": "The cartridge must remain stable under long-duration 37 C perfusion." - } - ] -} - diff --git a/data/falsiflow/biointerface_coatings_pass/claim_audit.json b/data/falsiflow/biointerface_coatings_pass/claim_audit.json deleted file mode 100644 index 494b999..0000000 --- a/data/falsiflow/biointerface_coatings_pass/claim_audit.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "claim": { - "id": "coating_ready_for_cell_contact_screen", - "requires_gates": [ - "coating_provenance", - "extract_stability", - "bioresponse_screen" - ], - "statement": "A candidate biointerface coating is ready for early cell-contact screening only after source-backed formulation provenance, extract stability, and basic bioresponse gates pass." - }, - "claim_ready": true, - "evidence_error_count": 0, - "evidence_issue_count": 0, - "evidence_issues": [], - "evidence_warning_count": 0, - "gates": [ - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "coating_provenance", - "required_evidence_rows": 3, - "status": "passed", - "title": "Coating provenance", - "valid_required_evidence_rows": 3 - }, - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 2, - "derived_fields": [ - { - "candidate_id": "zwitterionic_coating_demo", - "field": "ph_drift_abs", - "gate_id": "extract_stability", - "operation": "abs_delta", - "sample_id": "coating_demo_001", - "value": 0.08000000000000007 - }, - { - "candidate_id": "zwitterionic_coating_demo", - "field": "conductivity_drift_pct", - "gate_id": "extract_stability", - "operation": "abs_pct_change", - "sample_id": "coating_demo_001", - "value": 4.285714285714283 - } - ], - "gate_id": "extract_stability", - "required_evidence_rows": 5, - "status": "passed", - "title": "Acellular extract stability", - "valid_required_evidence_rows": 5 - }, - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 4, - "derived_fields": [ - { - "candidate_id": "zwitterionic_coating_demo", - "field": "viability_ratio_vs_control", - "gate_id": "bioresponse_screen", - "operation": "ratio", - "sample_id": "coating_candidate_cells", - "value": 0.9578947368421054 - }, - { - "candidate_id": "uncoated_control", - "field": "viability_ratio_vs_control", - "gate_id": "bioresponse_screen", - "operation": "ratio", - "sample_id": "coating_control_cells", - "value": 1.0 - }, - { - "candidate_id": "zwitterionic_coating_demo", - "field": "inflammatory_marker_ratio_vs_control", - "gate_id": "bioresponse_screen", - "operation": "ratio", - "sample_id": "coating_candidate_cells", - "value": 1.08 - }, - { - "candidate_id": "uncoated_control", - "field": "inflammatory_marker_ratio_vs_control", - "gate_id": "bioresponse_screen", - "operation": "ratio", - "sample_id": "coating_control_cells", - "value": 1.0 - } - ], - "gate_id": "bioresponse_screen", - "required_evidence_rows": 6, - "status": "passed", - "title": "Basic bioresponse screen", - "valid_required_evidence_rows": 6 - } - ], - "missing_required_gates": [], - "next_actions": [ - { - "action_id": "review_claim_for_release", - "rank": 1, - "success_criterion": "Human review confirms raw sources and claim wording before release.", - "why": "All required gates passed with source-backed evidence." - } - ], - "project": { - "domain": "cell-contact-coatings-and-surfaces", - "id": "falsiflow_biointerface_coatings_demo", - "name": "Falsiflow biointerface coatings demo", - "version": "0.1.0" - }, - "project_config_valid": true, - "project_validation": { - "error_count": 0, - "issues": [], - "status": "valid", - "valid": true, - "warning_count": 0 - }, - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "status": "claim_ready" -} \ No newline at end of file diff --git a/data/falsiflow/biointerface_coatings_pass/claim_audit.md b/data/falsiflow/biointerface_coatings_pass/claim_audit.md deleted file mode 100644 index d32543d..0000000 --- a/data/falsiflow/biointerface_coatings_pass/claim_audit.md +++ /dev/null @@ -1,31 +0,0 @@ -# Falsiflow Claim Audit - -**Project:** `falsiflow_biointerface_coatings_demo` -**Claim:** `coating_ready_for_cell_contact_screen` -**Status:** `claim_ready` -**Claim ready:** `true` - -## Gates - -| Gate | Status | Valid rows | Required rows | Derived | Blockers | -| --- | --- | ---: | ---: | ---: | ---: | -| `coating_provenance` | `passed` | 3 | 3 | 0 | 0 | -| `extract_stability` | `passed` | 5 | 5 | 2 | 0 | -| `bioresponse_screen` | `passed` | 6 | 6 | 4 | 0 | - -## Project Validation - -- status: `valid` -- none - -## Evidence Diagnostics - -- none - -## Blockers - -- none - -## Next Actions - -- 1. `review_claim_for_release` - All required gates passed with source-backed evidence. diff --git a/data/falsiflow/biointerface_coatings_pass/claim_summary.json b/data/falsiflow/biointerface_coatings_pass/claim_summary.json deleted file mode 100644 index e8256ab..0000000 --- a/data/falsiflow/biointerface_coatings_pass/claim_summary.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "blocker_count": 0, - "claim_id": "coating_ready_for_cell_contact_screen", - "claim_ready": true, - "completion_pct": 100.0, - "derived_field_count": 6, - "evidence_error_count": 0, - "evidence_issue_count": 0, - "evidence_warning_count": 0, - "gate_count": 3, - "gates": [ - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 0, - "gate_id": "coating_provenance", - "required_evidence_rows": 3, - "status": "passed", - "title": "Coating provenance", - "valid_required_evidence_rows": 3 - }, - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 2, - "gate_id": "extract_stability", - "required_evidence_rows": 5, - "status": "passed", - "title": "Acellular extract stability", - "valid_required_evidence_rows": 5 - }, - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 4, - "gate_id": "bioresponse_screen", - "required_evidence_rows": 6, - "status": "passed", - "title": "Basic bioresponse screen", - "valid_required_evidence_rows": 6 - } - ], - "next_action_count": 1, - "project_config_valid": true, - "project_id": "falsiflow_biointerface_coatings_demo", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "required_evidence_rows": 14, - "status": "claim_ready", - "status_counts": { - "passed": 3 - }, - "valid_required_evidence_rows": 14 -} \ No newline at end of file diff --git a/data/falsiflow/biointerface_coatings_pass/dashboard.html b/data/falsiflow/biointerface_coatings_pass/dashboard.html deleted file mode 100644 index 96ff10e..0000000 --- a/data/falsiflow/biointerface_coatings_pass/dashboard.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Falsiflow Dashboard - coating_ready_for_cell_contact_screen - - - -
-
-
-

Falsiflow Claim Dashboard

-

Project falsiflow_biointerface_coatings_demo / Claim coating_ready_for_cell_contact_screen

-
-
- Status - claim_ready -
-
-
-
Claim readytrue
-
Completion100.0%
-
Valid rows14 / 14
-
Derived values6
-
Blockers0
-
Project errors0
-
Project warnings0
-
Evidence errors0
-
Evidence warnings0
-
-
- -
-
-
-

coating_provenance

-

Coating provenance

-
- passed -
-
-
-
Valid rows
3 / 3
-
Derived
0
-
Blockers
0
-
-
- -
-
-
-

extract_stability

-

Acellular extract stability

-
- passed -
-
-
-
Valid rows
5 / 5
-
Derived
2
-
Blockers
0
-
-
- -
-
-
-

bioresponse_screen

-

Basic bioresponse screen

-
- passed -
-
-
-
Valid rows
6 / 6
-
Derived
4
-
Blockers
0
-
-
- -
-
-
-

Top Blockers

-
  • No blockers.
-
-
-

Next Actions

-
  • 1. review_claim_for_releaseAll required gates passed with source-backed evidence.
-
-
-
- - diff --git a/data/falsiflow/biointerface_coatings_pass/measurement_template.csv b/data/falsiflow/biointerface_coatings_pass/measurement_template.csv deleted file mode 100644 index f945cf5..0000000 --- a/data/falsiflow/biointerface_coatings_pass/measurement_template.csv +++ /dev/null @@ -1,15 +0,0 @@ -gate_id,gate_title,candidate_id,sample_id,field,value,source_file,measured_at,operator_or_agent,instrument_id,notes -coating_provenance,Coating provenance,zwitterionic_coating_demo,coating_demo_001,formulation_recorded,,,,,, -coating_provenance,Coating provenance,zwitterionic_coating_demo,coating_demo_001,substrate_recorded,,,,,, -coating_provenance,Coating provenance,zwitterionic_coating_demo,coating_demo_001,sterilization_or_aseptic_recorded,,,,,, -extract_stability,Acellular extract stability,zwitterionic_coating_demo,coating_demo_001,ph_initial,,,,,, -extract_stability,Acellular extract stability,zwitterionic_coating_demo,coating_demo_001,ph_final,,,,,, -extract_stability,Acellular extract stability,zwitterionic_coating_demo,coating_demo_001,conductivity_initial_ms_cm,,,,,, -extract_stability,Acellular extract stability,zwitterionic_coating_demo,coating_demo_001,conductivity_final_ms_cm,,,,,, -extract_stability,Acellular extract stability,zwitterionic_coating_demo,coating_demo_001,visible_residue_present,,,,,, -bioresponse_screen,Basic bioresponse screen,zwitterionic_coating_demo,coating_candidate_cells,viability_fraction,,,,,, -bioresponse_screen,Basic bioresponse screen,zwitterionic_coating_demo,coating_candidate_cells,cell_attachment_fraction,,,,,, -bioresponse_screen,Basic bioresponse screen,zwitterionic_coating_demo,coating_candidate_cells,inflammatory_marker,,,,,, -bioresponse_screen,Basic bioresponse screen,uncoated_control,coating_control_cells,viability_fraction,,,,,, -bioresponse_screen,Basic bioresponse screen,uncoated_control,coating_control_cells,cell_attachment_fraction,,,,,, -bioresponse_screen,Basic bioresponse screen,uncoated_control,coating_control_cells,inflammatory_marker,,,,,, diff --git a/data/falsiflow/biointerface_coatings_pass/next_actions.json b/data/falsiflow/biointerface_coatings_pass/next_actions.json deleted file mode 100644 index edd3ad5..0000000 --- a/data/falsiflow/biointerface_coatings_pass/next_actions.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "action_id": "review_claim_for_release", - "rank": 1, - "success_criterion": "Human review confirms raw sources and claim wording before release.", - "why": "All required gates passed with source-backed evidence." - } -] \ No newline at end of file diff --git a/data/falsiflow/biointerface_coatings_template_validation.json b/data/falsiflow/biointerface_coatings_template_validation.json deleted file mode 100644 index b0cacd9..0000000 --- a/data/falsiflow/biointerface_coatings_template_validation.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "error_count": 0, - "issues": [], - "status": "valid", - "valid": true, - "warning_count": 0 -} \ No newline at end of file diff --git a/data/falsiflow/limina_nhi_pedot_habc/audit/claim_audit.json b/data/falsiflow/limina_nhi_pedot_habc/audit/claim_audit.json deleted file mode 100644 index 8981621..0000000 --- a/data/falsiflow/limina_nhi_pedot_habc/audit/claim_audit.json +++ /dev/null @@ -1,11624 +0,0 @@ -{ - "claim": { - "id": "limina_nhi_pedot_habc_evidence_completeness", - "requires_gates": [ - "h_a_medium_stability", - "h_b_electrical_interface", - "h_c_network_response" - ], - "statement": "LIMINA NHI-PEDOT H-A/H-B/H-C evidence pack is complete enough for Falsiflow provenance audit. This is not a material suitability claim." - }, - "claim_ready": false, - "evidence_error_count": 0, - "evidence_issue_count": 0, - "evidence_issues": [], - "evidence_warning_count": 0, - "gates": [ - { - "blocker_count": 336, - "blockers": [ - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "final.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "final.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "final.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "initial.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "initial.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "initial.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.date", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.electrode_material", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.laminin_or_peptide_density", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.mea_coupon_id", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.medium_lot", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.medium_name", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.sterilization_or_aseptic_protocol", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.temperature_c", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.delamination_score", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.optical_transparency_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "final.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "final.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "final.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "initial.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "initial.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "initial.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.date", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.electrode_material", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.laminin_or_peptide_density", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.mea_coupon_id", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.medium_lot", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.medium_name", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.sterilization_or_aseptic_protocol", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.temperature_c", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.delamination_score", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.optical_transparency_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "final.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "final.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "final.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "initial.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "initial.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "initial.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.date", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.electrode_material", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.laminin_or_peptide_density", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.mea_coupon_id", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.medium_lot", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.medium_name", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.sterilization_or_aseptic_protocol", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "metadata.temperature_c", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.delamination_score", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.optical_transparency_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "final.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "final.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "final.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "initial.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "initial.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "initial.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.date", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.electrode_material", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.laminin_or_peptide_density", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.mea_coupon_id", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.medium_lot", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.medium_name", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.sterilization_or_aseptic_protocol", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.temperature_c", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.delamination_score", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.optical_transparency_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "final.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "final.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "final.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "initial.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "initial.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "initial.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.date", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.electrode_material", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.laminin_or_peptide_density", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.mea_coupon_id", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.medium_lot", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.medium_name", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.sterilization_or_aseptic_protocol", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.temperature_c", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.delamination_score", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.optical_transparency_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "final.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "final.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "final.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "initial.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "initial.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "initial.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.date", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.electrode_material", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.laminin_or_peptide_density", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.mea_coupon_id", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.medium_lot", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.medium_name", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.sterilization_or_aseptic_protocol", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "metadata.temperature_c", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.delamination_score", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.optical_transparency_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "final.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "final.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "final.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "initial.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "initial.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "initial.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.date", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.electrode_material", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.laminin_or_peptide_density", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.mea_coupon_id", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.medium_lot", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.medium_name", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.sterilization_or_aseptic_protocol", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.temperature_c", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.delamination_score", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.optical_transparency_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "final.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "final.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "final.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "initial.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "initial.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "initial.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.date", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.electrode_material", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.laminin_or_peptide_density", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.mea_coupon_id", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.medium_lot", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.medium_name", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.sterilization_or_aseptic_protocol", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.temperature_c", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.delamination_score", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.optical_transparency_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "final.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "final.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "final.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "initial.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "initial.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "initial.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.date", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.electrode_material", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.laminin_or_peptide_density", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.mea_coupon_id", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.medium_lot", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.medium_name", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.sterilization_or_aseptic_protocol", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "metadata.temperature_c", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.delamination_score", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.optical_transparency_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "final.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "final.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "final.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "initial.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "initial.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "initial.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.date", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.electrode_material", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.laminin_or_peptide_density", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.mea_coupon_id", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.medium_lot", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.medium_name", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.sterilization_or_aseptic_protocol", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.temperature_c", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.delamination_score", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.optical_transparency_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "final.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "final.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "final.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "initial.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "initial.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "initial.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.date", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.electrode_material", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.laminin_or_peptide_density", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.mea_coupon_id", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.medium_lot", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.medium_name", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.sterilization_or_aseptic_protocol", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.temperature_c", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.delamination_score", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.optical_transparency_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "final.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "final.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "final.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "initial.conductivity", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "initial.osmolality", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_osmolality_osmometer_report_or_export.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "initial.pH", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_pH_pH_meter_export_or_photo.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.date", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.electrode_material", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.laminin_or_peptide_density", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.mea_coupon_id", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.medium_lot", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.medium_name", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.sterilization_or_aseptic_protocol", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "metadata.temperature_c", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.delamination_score", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.optical_transparency_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: final.pH" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: final.pH" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: final.pH" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: final.pH" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: final.pH" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: final.pH" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: final.pH" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: final.pH" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: final.pH" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: final.pH" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: final.pH" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: final.pH" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.osmolality" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.osmolality" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.osmolality" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.osmolality" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.osmolality" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.osmolality" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.osmolality" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.osmolality" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.osmolality" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.osmolality" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.osmolality" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.osmolality" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.conductivity" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.conductivity" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.conductivity" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.conductivity" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.conductivity" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.conductivity" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.conductivity" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.conductivity" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.conductivity" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.conductivity" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.conductivity" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: initial.conductivity" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "ph_drift_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "osmolality_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "conductivity_drift_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.visible_precipitate", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.visible_shedding", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "candidate_id": "no_coating_mea_control", - "field": "physical_inspection.swelling_fraction", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - } - ], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "h_a_medium_stability", - "required_evidence_rows": 228, - "status": "blocked_missing_evidence", - "title": "H-A medium stability and physical integrity", - "valid_required_evidence_rows": 0 - }, - { - "blocker_count": 308, - "blockers": [ - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "charge_storage_capacity_final", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "charge_storage_capacity_initial", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "crosslinking_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "date", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "eis_1khz_final_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "eis_1khz_initial_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "electrode_material", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "hydrogel_matrix", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "mea_coupon_id", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_lot", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_name", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "operator_or_agent", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "temperature_c", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "charge_storage_capacity_final", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "charge_storage_capacity_initial", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "crosslinking_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "date", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "eis_1khz_final_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "eis_1khz_initial_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "electrode_material", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "hydrogel_matrix", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "mea_coupon_id", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_lot", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_name", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "operator_or_agent", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "temperature_c", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "charge_storage_capacity_final", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "charge_storage_capacity_initial", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "crosslinking_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "date", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "eis_1khz_final_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "eis_1khz_initial_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "electrode_material", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "hydrogel_matrix", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "mea_coupon_id", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_lot", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_name", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "operator_or_agent", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "temperature_c", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "charge_storage_capacity_final", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "charge_storage_capacity_initial", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "crosslinking_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "date", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "eis_1khz_final_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "eis_1khz_initial_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "electrode_material", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "hydrogel_matrix", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "mea_coupon_id", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_lot", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_name", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "operator_or_agent", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "temperature_c", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "charge_storage_capacity_final", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "charge_storage_capacity_initial", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "crosslinking_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "date", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "eis_1khz_final_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "eis_1khz_initial_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "electrode_material", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "hydrogel_matrix", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "laminin_or_peptide_density", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "mea_coupon_id", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_lot", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_name", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "operator_or_agent", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "temperature_c", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "charge_storage_capacity_final", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "charge_storage_capacity_initial", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "crosslinking_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "date", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "eis_1khz_final_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "eis_1khz_initial_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "electrode_material", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "hydrogel_matrix", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "laminin_or_peptide_density", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "mea_coupon_id", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_lot", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_name", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "operator_or_agent", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "temperature_c", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "charge_storage_capacity_final", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "charge_storage_capacity_initial", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "crosslinking_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "date", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "eis_1khz_final_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "eis_1khz_initial_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "electrode_material", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "hydrogel_matrix", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "laminin_or_peptide_density", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "mea_coupon_id", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_lot", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_name", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "operator_or_agent", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "temperature_c", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "charge_storage_capacity_final", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "charge_storage_capacity_initial", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "crosslinking_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "date", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "eis_1khz_final_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "eis_1khz_initial_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "electrode_material", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "hydrogel_matrix", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "laminin_or_peptide_density", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "mea_coupon_id", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_lot", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_name", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "operator_or_agent", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "temperature_c", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_capacity_final", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_capacity_initial", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "crosslinking_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "date", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_final_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_initial_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_material", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "hydrogel_matrix", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "mea_coupon_id", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_lot", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_name", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "operator_or_agent", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "temperature_c", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_capacity_final", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_capacity_initial", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "crosslinking_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "date", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_final_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_initial_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_material", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "hydrogel_matrix", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "mea_coupon_id", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_lot", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_name", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "operator_or_agent", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "temperature_c", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_capacity_final", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_capacity_initial", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "crosslinking_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "date", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_final_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_initial_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_material", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "hydrogel_matrix", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "mea_coupon_id", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_lot", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_name", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "operator_or_agent", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "temperature_c", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_capacity_final", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_capacity_initial", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "crosslinking_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "date", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_final_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_initial_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_material", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "hydrogel_matrix", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "mea_coupon_id", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_lot", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_name", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "operator_or_agent", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "temperature_c", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: eis_1khz_initial_ohm" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: eis_1khz_initial_ohm" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: eis_1khz_initial_ohm" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: eis_1khz_initial_ohm" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: eis_1khz_initial_ohm" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: eis_1khz_initial_ohm" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: eis_1khz_initial_ohm" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: eis_1khz_initial_ohm" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: eis_1khz_initial_ohm" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: eis_1khz_initial_ohm" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: eis_1khz_initial_ohm" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: eis_1khz_initial_ohm" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: charge_storage_capacity_initial" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: charge_storage_capacity_initial" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: charge_storage_capacity_initial" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: charge_storage_capacity_initial" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: charge_storage_capacity_initial" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: charge_storage_capacity_initial" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: charge_storage_capacity_initial" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: charge_storage_capacity_initial" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: charge_storage_capacity_initial" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: charge_storage_capacity_initial" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: charge_storage_capacity_initial" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: charge_storage_capacity_initial" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "eis_1khz_reduction_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "swelling_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "delamination_score", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "optical_transparency_fraction", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak" - } - ], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "h_b_electrical_interface", - "required_evidence_rows": 240, - "status": "blocked_missing_evidence", - "title": "H-B electrical and physical interface benefit", - "valid_required_evidence_rows": 0 - }, - { - "blocker_count": 364, - "blockers": [ - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "challenge_nhi_pedot_high_loading", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d" - }, - { - "candidate_id": "laminin_only_control", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h" - }, - { - "candidate_id": "laminin_only_control", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass" - }, - { - "candidate_id": "laminin_only_control", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "laminin_only_control", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "cell_model", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "crosslinking_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "date", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_material", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "hydrogel_matrix", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "laminin_or_peptide_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "mea_coupon_id", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "mean_neurite_length_um", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_lot", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "medium_name", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "neurite_coverage_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "operator_or_agent", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_loading_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "pedot_pss_pre_rinse_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "seeding_density", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "spike_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "sterilization_or_aseptic_protocol", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "temperature_c", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "value is blank or placeholder", - "measured_at is blank or placeholder", - "operator_or_agent is blank or placeholder", - "source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "viability_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "ldh_fold_control", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass" - }, - { - "candidate_id": "lead_nhi_pedot_low_loading", - "field": "electrode_yield_fraction", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d" - } - ], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "h_c_network_response", - "required_evidence_rows": 352, - "status": "blocked_missing_evidence", - "title": "H-C cell and network response", - "valid_required_evidence_rows": 0 - } - ], - "missing_required_gates": [], - "next_actions": [ - { - "action_id": "fill_h_a_medium_stability_evidence", - "rank": 1, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_a_medium_stability` is `blocked_missing_evidence` with 336 blocker(s)." - }, - { - "action_id": "fill_h_b_electrical_interface_evidence", - "rank": 2, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_b_electrical_interface` is `blocked_missing_evidence` with 308 blocker(s)." - }, - { - "action_id": "fill_h_c_network_response_evidence", - "rank": 3, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_c_network_response` is `blocked_missing_evidence` with 364 blocker(s)." - } - ], - "project": { - "domain": "limina-neural-materials", - "id": "limina_nhi_pedot_habc_falsiflow", - "name": "Limina Nhi Pedot Habc Falsiflow", - "version": "0.1.0" - }, - "project_config_valid": true, - "project_validation": { - "error_count": 0, - "issues": [], - "status": "valid", - "valid": true, - "warning_count": 0 - }, - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "status": "claim_blocked" -} \ No newline at end of file diff --git a/data/falsiflow/limina_nhi_pedot_habc/audit/claim_audit.md b/data/falsiflow/limina_nhi_pedot_habc/audit/claim_audit.md deleted file mode 100644 index f213855..0000000 --- a/data/falsiflow/limina_nhi_pedot_habc/audit/claim_audit.md +++ /dev/null @@ -1,152 +0,0 @@ -# Falsiflow Claim Audit - -**Project:** `limina_nhi_pedot_habc_falsiflow` -**Claim:** `limina_nhi_pedot_habc_evidence_completeness` -**Status:** `claim_blocked` -**Claim ready:** `false` - -## Gates - -| Gate | Status | Valid rows | Required rows | Derived | Blockers | -| --- | --- | ---: | ---: | ---: | ---: | -| `h_a_medium_stability` | `blocked_missing_evidence` | 0 | 228 | 0 | 336 | -| `h_b_electrical_interface` | `blocked_missing_evidence` | 0 | 240 | 0 | 308 | -| `h_c_network_response` | `blocked_missing_evidence` | 0 | 352 | 0 | 364 | - -## Project Validation - -- status: `valid` -- none - -## Evidence Diagnostics - -- none - -## Blockers - -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `final.conductivity`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `final.osmolality`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `final.pH`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `initial.conductivity`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `initial.osmolality`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `initial.pH`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `metadata.date`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `metadata.electrode_material`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `metadata.laminin_or_peptide_density`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `metadata.mea_coupon_id`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `metadata.medium_lot`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `metadata.medium_name`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `metadata.sterilization_or_aseptic_protocol`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `metadata.temperature_c`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `physical_inspection.delamination_score`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `physical_inspection.optical_transparency_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `physical_inspection.swelling_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `physical_inspection.visible_precipitate`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h` `physical_inspection.visible_shedding`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `final.conductivity`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `final.osmolality`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `final.pH`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `initial.conductivity`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `initial.osmolality`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `initial.pH`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `metadata.date`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `metadata.electrode_material`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `metadata.laminin_or_peptide_density`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `metadata.mea_coupon_id`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `metadata.medium_lot`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `metadata.medium_name`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `metadata.sterilization_or_aseptic_protocol`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `metadata.temperature_c`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `physical_inspection.delamination_score`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `physical_inspection.optical_transparency_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `physical_inspection.swelling_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `physical_inspection.visible_precipitate`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h` `physical_inspection.visible_shedding`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h` `final.conductivity`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv -- `h_a_medium_stability` `NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h` `final.osmolality`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `charge_storage_capacity_final`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `charge_storage_capacity_initial`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `crosslinking_protocol`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `date`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `delamination_score`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `eis_1khz_final_ohm`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `eis_1khz_initial_ohm`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `electrode_material`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `hydrogel_matrix`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `laminin_or_peptide_density`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `mea_coupon_id`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `medium_lot`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `medium_name`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `operator_or_agent`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `optical_transparency_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `pedot_pss_loading_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `pedot_pss_pre_rinse_protocol`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `sterilization_or_aseptic_protocol`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `swelling_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak` `temperature_c`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `charge_storage_capacity_final`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `charge_storage_capacity_initial`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `crosslinking_protocol`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `date`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `delamination_score`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `eis_1khz_final_ohm`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `eis_1khz_initial_ohm`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `electrode_material`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `hydrogel_matrix`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `laminin_or_peptide_density`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `mea_coupon_id`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `medium_lot`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `medium_name`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `operator_or_agent`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `optical_transparency_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `pedot_pss_loading_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `pedot_pss_pre_rinse_protocol`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `sterilization_or_aseptic_protocol`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `swelling_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv -- `h_b_electrical_interface` `NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak` `temperature_c`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `burst_rate_hz`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `cell_model`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `crosslinking_protocol`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `date`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `electrode_material`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `electrode_yield_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `hydrogel_matrix`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `laminin_or_peptide_density`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `ldh_fold_control`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `mea_coupon_id`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `mean_neurite_length_um`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `medium_lot`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `medium_name`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `neurite_coverage_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `operator_or_agent`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `pedot_pss_loading_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `pedot_pss_pre_rinse_protocol`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `seeding_density`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `spike_rate_hz`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `sterilization_or_aseptic_protocol`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `temperature_c`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d` `viability_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `burst_rate_hz`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `cell_model`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `crosslinking_protocol`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `date`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/date_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `electrode_material`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `electrode_yield_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `hydrogel_matrix`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `laminin_or_peptide_density`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `ldh_fold_control`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `mea_coupon_id`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `mean_neurite_length_um`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `medium_lot`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `medium_name`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `neurite_coverage_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `operator_or_agent`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `pedot_pss_loading_fraction`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `pedot_pss_pre_rinse_protocol`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv -- `h_c_network_response` `NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h` `seeding_density`: value is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv - -## Next Actions - -- 1. `fill_h_a_medium_stability_evidence` - Gate `h_a_medium_stability` is `blocked_missing_evidence` with 336 blocker(s). -- 2. `fill_h_b_electrical_interface_evidence` - Gate `h_b_electrical_interface` is `blocked_missing_evidence` with 308 blocker(s). -- 3. `fill_h_c_network_response_evidence` - Gate `h_c_network_response` is `blocked_missing_evidence` with 364 blocker(s). diff --git a/data/falsiflow/limina_nhi_pedot_habc/audit/claim_summary.json b/data/falsiflow/limina_nhi_pedot_habc/audit/claim_summary.json deleted file mode 100644 index e7a60d0..0000000 --- a/data/falsiflow/limina_nhi_pedot_habc/audit/claim_summary.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "blocker_count": 1008, - "claim_id": "limina_nhi_pedot_habc_evidence_completeness", - "claim_ready": false, - "completion_pct": 0.0, - "derived_field_count": 0, - "evidence_error_count": 0, - "evidence_issue_count": 0, - "evidence_warning_count": 0, - "gate_count": 3, - "gates": [ - { - "blocker_count": 336, - "completion_pct": 0.0, - "derived_field_count": 0, - "gate_id": "h_a_medium_stability", - "required_evidence_rows": 228, - "status": "blocked_missing_evidence", - "title": "H-A medium stability and physical integrity", - "valid_required_evidence_rows": 0 - }, - { - "blocker_count": 308, - "completion_pct": 0.0, - "derived_field_count": 0, - "gate_id": "h_b_electrical_interface", - "required_evidence_rows": 240, - "status": "blocked_missing_evidence", - "title": "H-B electrical and physical interface benefit", - "valid_required_evidence_rows": 0 - }, - { - "blocker_count": 364, - "completion_pct": 0.0, - "derived_field_count": 0, - "gate_id": "h_c_network_response", - "required_evidence_rows": 352, - "status": "blocked_missing_evidence", - "title": "H-C cell and network response", - "valid_required_evidence_rows": 0 - } - ], - "next_action_count": 3, - "project_config_valid": true, - "project_id": "limina_nhi_pedot_habc_falsiflow", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "required_evidence_rows": 820, - "status": "claim_blocked", - "status_counts": { - "blocked_missing_evidence": 3 - }, - "valid_required_evidence_rows": 0 -} \ No newline at end of file diff --git a/data/falsiflow/limina_nhi_pedot_habc/audit/dashboard.html b/data/falsiflow/limina_nhi_pedot_habc/audit/dashboard.html deleted file mode 100644 index 77fc1cd..0000000 --- a/data/falsiflow/limina_nhi_pedot_habc/audit/dashboard.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Falsiflow Dashboard - limina_nhi_pedot_habc_evidence_completeness - - - -
-
-
-

Falsiflow Claim Dashboard

-

Project limina_nhi_pedot_habc_falsiflow / Claim limina_nhi_pedot_habc_evidence_completeness

-
-
- Status - claim_blocked -
-
-
-
Claim readyfalse
-
Completion0.0%
-
Valid rows0 / 820
-
Derived values0
-
Blockers1008
-
Project errors0
-
Project warnings0
-
Evidence errors0
-
Evidence warnings0
-
-
- -
-
-
-

h_a_medium_stability

-

H-A medium stability and physical integrity

-
- blocked_missing_evidence -
-
-
-
Valid rows
0 / 228
-
Derived
0
-
Blockers
336
-
-
- -
-
-
-

h_b_electrical_interface

-

H-B electrical and physical interface benefit

-
- blocked_missing_evidence -
-
-
-
Valid rows
0 / 240
-
Derived
0
-
Blockers
308
-
-
- -
-
-
-

h_c_network_response

-

H-C cell and network response

-
- blocked_missing_evidence -
-
-
-
Valid rows
0 / 352
-
Derived
0
-
Blockers
364
-
-
- -
-
-
-

Top Blockers

-
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h final.conductivityvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h final.osmolalityvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h final.pHvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h initial.conductivityvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h initial.osmolalityvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h initial.pHvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata.datevalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata.electrode_materialvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata.laminin_or_peptide_densityvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata.mea_coupon_idvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata.medium_lotvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata.medium_namevalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata.sterilization_or_aseptic_protocolvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata.temperature_cvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection.delamination_scorevalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection.optical_transparency_fractionvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection.swelling_fractionvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection.visible_precipitatevalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection.visible_sheddingvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png
  • h_a_medium_stability NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h final.conductivityvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak charge_storage_capacity_finalvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak charge_storage_capacity_initialvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak crosslinking_protocolvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak datevalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak delamination_scorevalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak eis_1khz_final_ohmvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak eis_1khz_initial_ohmvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak electrode_materialvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak hydrogel_matrixvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak laminin_or_peptide_densityvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak mea_coupon_idvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak medium_lotvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak medium_namevalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak operator_or_agentvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak optical_transparency_fractionvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak pedot_pss_loading_fractionvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak pedot_pss_pre_rinse_protocolvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak sterilization_or_aseptic_protocolvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak swelling_fractionvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv
  • h_b_electrical_interface NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak temperature_cvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d burst_rate_hzvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d cell_modelvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d crosslinking_protocolvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d datevalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d electrode_materialvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d electrode_yield_fractionvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d hydrogel_matrixvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d laminin_or_peptide_densityvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d ldh_fold_controlvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d mea_coupon_idvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d mean_neurite_length_umvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d medium_lotvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d medium_namevalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d neurite_coverage_fractionvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d operator_or_agentvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d pedot_pss_loading_fractionvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d pedot_pss_pre_rinse_protocolvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d seeding_densityvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d spike_rate_hzvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv
  • h_c_network_response NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d sterilization_or_aseptic_protocolvalue is blank or placeholder; measured_at is blank or placeholder; operator_or_agent is blank or placeholder; source_file does not exist: data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv
-
-
-

Next Actions

-
  • 1. fill_h_a_medium_stability_evidenceGate `h_a_medium_stability` is `blocked_missing_evidence` with 336 blocker(s).
  • 2. fill_h_b_electrical_interface_evidenceGate `h_b_electrical_interface` is `blocked_missing_evidence` with 308 blocker(s).
  • 3. fill_h_c_network_response_evidenceGate `h_c_network_response` is `blocked_missing_evidence` with 364 blocker(s).
-
-
-
- - diff --git a/data/falsiflow/limina_nhi_pedot_habc/audit/measurement_template.csv b/data/falsiflow/limina_nhi_pedot_habc/audit/measurement_template.csv deleted file mode 100644 index 5f75e10..0000000 --- a/data/falsiflow/limina_nhi_pedot_habc/audit/measurement_template.csv +++ /dev/null @@ -1,821 +0,0 @@ -gate_id,gate_title,candidate_id,sample_id,field,value,source_file,measured_at,operator_or_agent,instrument_id,notes -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.date,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.electrode_material,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.laminin_or_peptide_density,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.mea_coupon_id,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.medium_lot,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.medium_name,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.sterilization_or_aseptic_protocol,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.temperature_c,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection.delamination_score,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection.optical_transparency_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection.swelling_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection.visible_precipitate,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection.visible_shedding,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.date,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.electrode_material,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.laminin_or_peptide_density,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.mea_coupon_id,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.medium_lot,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.medium_name,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.sterilization_or_aseptic_protocol,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.temperature_c,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection.delamination_score,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection.optical_transparency_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection.swelling_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection.visible_precipitate,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection.visible_shedding,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.date,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.electrode_material,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.laminin_or_peptide_density,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.mea_coupon_id,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.medium_lot,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.medium_name,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.sterilization_or_aseptic_protocol,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.temperature_c,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection.delamination_score,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection.optical_transparency_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection.swelling_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection.visible_precipitate,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection.visible_shedding,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.date,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.electrode_material,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.laminin_or_peptide_density,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.mea_coupon_id,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.medium_lot,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.medium_name,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.sterilization_or_aseptic_protocol,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.temperature_c,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection.delamination_score,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection.optical_transparency_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection.swelling_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection.visible_precipitate,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection.visible_shedding,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.date,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.electrode_material,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.laminin_or_peptide_density,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.mea_coupon_id,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.medium_lot,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.medium_name,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.sterilization_or_aseptic_protocol,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.temperature_c,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection.delamination_score,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection.optical_transparency_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection.swelling_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection.visible_precipitate,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection.visible_shedding,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.date,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.electrode_material,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.laminin_or_peptide_density,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.mea_coupon_id,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.medium_lot,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.medium_name,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.sterilization_or_aseptic_protocol,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.temperature_c,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection.delamination_score,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection.optical_transparency_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection.swelling_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection.visible_precipitate,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection.visible_shedding,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.date,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.electrode_material,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.laminin_or_peptide_density,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.mea_coupon_id,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.medium_lot,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.medium_name,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.sterilization_or_aseptic_protocol,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.temperature_c,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection.delamination_score,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection.optical_transparency_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection.swelling_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection.visible_precipitate,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection.visible_shedding,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.date,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.electrode_material,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.laminin_or_peptide_density,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.mea_coupon_id,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.medium_lot,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.medium_name,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.sterilization_or_aseptic_protocol,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.temperature_c,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection.delamination_score,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection.optical_transparency_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection.swelling_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection.visible_precipitate,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection.visible_shedding,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.date,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.electrode_material,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.laminin_or_peptide_density,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.mea_coupon_id,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.medium_lot,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.medium_name,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.sterilization_or_aseptic_protocol,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.temperature_c,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection.delamination_score,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection.optical_transparency_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection.swelling_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection.visible_precipitate,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection.visible_shedding,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.date,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.electrode_material,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.laminin_or_peptide_density,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.mea_coupon_id,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.medium_lot,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.medium_name,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.sterilization_or_aseptic_protocol,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.temperature_c,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection.delamination_score,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection.optical_transparency_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection.swelling_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection.visible_precipitate,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection.visible_shedding,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.date,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.electrode_material,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.laminin_or_peptide_density,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.mea_coupon_id,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.medium_lot,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.medium_name,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.sterilization_or_aseptic_protocol,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.temperature_c,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection.delamination_score,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection.optical_transparency_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection.swelling_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection.visible_precipitate,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection.visible_shedding,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial.conductivity,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial.osmolality,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial.pH,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.date,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.electrode_material,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.laminin_or_peptide_density,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.mea_coupon_id,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.medium_lot,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.medium_name,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.sterilization_or_aseptic_protocol,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.temperature_c,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection.delamination_score,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection.optical_transparency_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection.swelling_fraction,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection.visible_precipitate,,,,,, -h_a_medium_stability,H-A medium stability and physical integrity,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection.visible_shedding,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,charge_storage_capacity_final,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,charge_storage_capacity_initial,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,crosslinking_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,date,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,delamination_score,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,eis_1khz_final_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,eis_1khz_initial_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,electrode_material,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,hydrogel_matrix,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,laminin_or_peptide_density,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,mea_coupon_id,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,medium_lot,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,medium_name,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,operator_or_agent,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,optical_transparency_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,pedot_pss_loading_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,pedot_pss_pre_rinse_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,sterilization_or_aseptic_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,swelling_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,temperature_c,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,charge_storage_capacity_final,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,charge_storage_capacity_initial,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,crosslinking_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,date,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,delamination_score,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,eis_1khz_final_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,eis_1khz_initial_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,electrode_material,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,hydrogel_matrix,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,laminin_or_peptide_density,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,mea_coupon_id,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,medium_lot,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,medium_name,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,operator_or_agent,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,optical_transparency_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,pedot_pss_loading_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,pedot_pss_pre_rinse_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,sterilization_or_aseptic_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,swelling_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,temperature_c,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,charge_storage_capacity_final,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,charge_storage_capacity_initial,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,crosslinking_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,date,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,delamination_score,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,eis_1khz_final_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,eis_1khz_initial_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,electrode_material,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,hydrogel_matrix,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,laminin_or_peptide_density,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,mea_coupon_id,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,medium_lot,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,medium_name,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,operator_or_agent,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,optical_transparency_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,pedot_pss_loading_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,pedot_pss_pre_rinse_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,sterilization_or_aseptic_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,swelling_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,temperature_c,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,charge_storage_capacity_final,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,charge_storage_capacity_initial,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,crosslinking_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,date,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,delamination_score,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,eis_1khz_final_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,eis_1khz_initial_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,electrode_material,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,hydrogel_matrix,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,laminin_or_peptide_density,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,mea_coupon_id,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,medium_lot,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,medium_name,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,operator_or_agent,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,optical_transparency_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,pedot_pss_loading_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,pedot_pss_pre_rinse_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,sterilization_or_aseptic_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,swelling_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,temperature_c,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,charge_storage_capacity_final,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,charge_storage_capacity_initial,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,crosslinking_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,date,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,delamination_score,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,eis_1khz_final_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,eis_1khz_initial_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,electrode_material,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,hydrogel_matrix,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,laminin_or_peptide_density,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,mea_coupon_id,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,medium_lot,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,medium_name,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,operator_or_agent,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,optical_transparency_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,pedot_pss_loading_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,pedot_pss_pre_rinse_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,sterilization_or_aseptic_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,swelling_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,temperature_c,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,charge_storage_capacity_final,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,charge_storage_capacity_initial,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,crosslinking_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,date,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,delamination_score,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,eis_1khz_final_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,eis_1khz_initial_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,electrode_material,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,hydrogel_matrix,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,laminin_or_peptide_density,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,mea_coupon_id,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,medium_lot,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,medium_name,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,operator_or_agent,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,optical_transparency_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,pedot_pss_loading_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,pedot_pss_pre_rinse_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,sterilization_or_aseptic_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,swelling_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,temperature_c,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,charge_storage_capacity_final,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,charge_storage_capacity_initial,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,crosslinking_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,date,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,delamination_score,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,eis_1khz_final_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,eis_1khz_initial_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,electrode_material,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,hydrogel_matrix,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,laminin_or_peptide_density,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,mea_coupon_id,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,medium_lot,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,medium_name,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,operator_or_agent,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,optical_transparency_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,pedot_pss_loading_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,pedot_pss_pre_rinse_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,sterilization_or_aseptic_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,swelling_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,temperature_c,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,charge_storage_capacity_final,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,charge_storage_capacity_initial,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,crosslinking_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,date,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,delamination_score,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,eis_1khz_final_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,eis_1khz_initial_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,electrode_material,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,hydrogel_matrix,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,laminin_or_peptide_density,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,mea_coupon_id,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,medium_lot,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,medium_name,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,operator_or_agent,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,optical_transparency_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,pedot_pss_loading_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,pedot_pss_pre_rinse_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,sterilization_or_aseptic_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,swelling_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,temperature_c,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,charge_storage_capacity_final,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,charge_storage_capacity_initial,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,crosslinking_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,date,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,delamination_score,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,eis_1khz_final_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,eis_1khz_initial_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,electrode_material,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,hydrogel_matrix,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,laminin_or_peptide_density,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,mea_coupon_id,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,medium_lot,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,medium_name,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,operator_or_agent,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,optical_transparency_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,pedot_pss_loading_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,pedot_pss_pre_rinse_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,sterilization_or_aseptic_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,swelling_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,temperature_c,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,charge_storage_capacity_final,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,charge_storage_capacity_initial,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,crosslinking_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,date,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,delamination_score,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,eis_1khz_final_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,eis_1khz_initial_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,electrode_material,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,hydrogel_matrix,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,laminin_or_peptide_density,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,mea_coupon_id,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,medium_lot,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,medium_name,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,operator_or_agent,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,optical_transparency_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,pedot_pss_loading_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,pedot_pss_pre_rinse_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,sterilization_or_aseptic_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,swelling_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,temperature_c,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,charge_storage_capacity_final,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,charge_storage_capacity_initial,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,crosslinking_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,date,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,delamination_score,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,eis_1khz_final_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,eis_1khz_initial_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,electrode_material,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,hydrogel_matrix,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,laminin_or_peptide_density,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,mea_coupon_id,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,medium_lot,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,medium_name,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,operator_or_agent,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,optical_transparency_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,pedot_pss_loading_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,pedot_pss_pre_rinse_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,sterilization_or_aseptic_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,swelling_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,temperature_c,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,charge_storage_capacity_final,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,charge_storage_capacity_initial,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,crosslinking_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,date,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,delamination_score,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,eis_1khz_final_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,eis_1khz_initial_ohm,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,electrode_material,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,hydrogel_matrix,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,laminin_or_peptide_density,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,mea_coupon_id,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,medium_lot,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,medium_name,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,operator_or_agent,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,optical_transparency_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,pedot_pss_loading_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,pedot_pss_pre_rinse_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,sterilization_or_aseptic_protocol,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,swelling_fraction,,,,,, -h_b_electrical_interface,H-B electrical and physical interface benefit,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,cell_model,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,date,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,medium_name,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,cell_model,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,date,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,medium_name,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,cell_model,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,date,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,medium_name,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,cell_model,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,date,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,medium_name,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,cell_model,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,date,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,medium_name,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,cell_model,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,date,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,medium_name,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,cell_model,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,date,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,medium_name,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,cell_model,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,date,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,medium_name,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,cell_model,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,date,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,medium_name,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,cell_model,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,date,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,medium_name,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,cell_model,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,date,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,medium_name,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,cell_model,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,date,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,medium_name,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,cell_model,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,date,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,medium_name,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,cell_model,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,date,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,medium_name,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,cell_model,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,date,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,medium_name,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,viability_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,cell_model,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,crosslinking_protocol,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,date,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,electrode_material,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,electrode_yield_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,hydrogel_matrix,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,laminin_or_peptide_density,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,ldh_fold_control,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,mea_coupon_id,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,mean_neurite_length_um,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,medium_lot,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,medium_name,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,neurite_coverage_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,operator_or_agent,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,pedot_pss_loading_fraction,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,pedot_pss_pre_rinse_protocol,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,seeding_density,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,spike_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,sterilization_or_aseptic_protocol,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,temperature_c,,,,,, -h_c_network_response,H-C cell and network response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,viability_fraction,,,,,, diff --git a/data/falsiflow/limina_nhi_pedot_habc/audit/next_actions.json b/data/falsiflow/limina_nhi_pedot_habc/audit/next_actions.json deleted file mode 100644 index f29f934..0000000 --- a/data/falsiflow/limina_nhi_pedot_habc/audit/next_actions.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "action_id": "fill_h_a_medium_stability_evidence", - "rank": 1, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_a_medium_stability` is `blocked_missing_evidence` with 336 blocker(s)." - }, - { - "action_id": "fill_h_b_electrical_interface_evidence", - "rank": 2, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_b_electrical_interface` is `blocked_missing_evidence` with 308 blocker(s)." - }, - { - "action_id": "fill_h_c_network_response_evidence", - "rank": 3, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_c_network_response` is `blocked_missing_evidence` with 364 blocker(s)." - } -] \ No newline at end of file diff --git a/data/falsiflow/limina_nhi_pedot_habc/evidence_from_source_values.csv b/data/falsiflow/limina_nhi_pedot_habc/evidence_from_source_values.csv deleted file mode 100644 index f1ff0c7..0000000 --- a/data/falsiflow/limina_nhi_pedot_habc/evidence_from_source_values.csv +++ /dev/null @@ -1,821 +0,0 @@ -gate_id,candidate_id,sample_id,field,value,source_file,measured_at,operator_or_agent,instrument_id,notes -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.date,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.medium_name,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.medium_lot,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.temperature_c,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.mea_coupon_id,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.electrode_material,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.laminin_or_peptide_density,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata.sterilization_or_aseptic_protocol,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection.visible_precipitate,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection.visible_shedding,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection.swelling_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection.delamination_score,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection.optical_transparency_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.date,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.medium_name,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.medium_lot,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.temperature_c,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.mea_coupon_id,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.electrode_material,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.laminin_or_peptide_density,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata.sterilization_or_aseptic_protocol,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection.visible_precipitate,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection.visible_shedding,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection.swelling_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection.delamination_score,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection.optical_transparency_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.date,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.medium_name,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.medium_lot,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.temperature_c,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.mea_coupon_id,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.electrode_material,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.laminin_or_peptide_density,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata.sterilization_or_aseptic_protocol,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection.visible_precipitate,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection.visible_shedding,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection.swelling_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection.delamination_score,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,no_coating_mea_control,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection.optical_transparency_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.date,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.medium_name,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.medium_lot,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.temperature_c,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.mea_coupon_id,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.electrode_material,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.laminin_or_peptide_density,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata.sterilization_or_aseptic_protocol,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection.visible_precipitate,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection.visible_shedding,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection.swelling_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection.delamination_score,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection.optical_transparency_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.date,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.medium_name,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.medium_lot,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.temperature_c,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.mea_coupon_id,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.electrode_material,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.laminin_or_peptide_density,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata.sterilization_or_aseptic_protocol,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection.visible_precipitate,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection.visible_shedding,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection.swelling_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection.delamination_score,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection.optical_transparency_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.date,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.medium_name,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.medium_lot,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.temperature_c,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.mea_coupon_id,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.electrode_material,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.laminin_or_peptide_density,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata.sterilization_or_aseptic_protocol,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection.visible_precipitate,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection.visible_shedding,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection.swelling_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection.delamination_score,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,hydrogel_laminin_control,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection.optical_transparency_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.date,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.medium_name,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.medium_lot,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.temperature_c,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.mea_coupon_id,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.electrode_material,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.laminin_or_peptide_density,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata.sterilization_or_aseptic_protocol,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection.visible_precipitate,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection.visible_shedding,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection.swelling_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection.delamination_score,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection.optical_transparency_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.date,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.medium_name,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.medium_lot,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.temperature_c,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.mea_coupon_id,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.electrode_material,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.laminin_or_peptide_density,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata.sterilization_or_aseptic_protocol,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection.visible_precipitate,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection.visible_shedding,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection.swelling_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection.delamination_score,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection.optical_transparency_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.date,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.medium_name,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.medium_lot,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.temperature_c,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.mea_coupon_id,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.electrode_material,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.laminin_or_peptide_density,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata.sterilization_or_aseptic_protocol,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection.visible_precipitate,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection.visible_shedding,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection.swelling_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection.delamination_score,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,lead_nhi_pedot_low_loading,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection.optical_transparency_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.date,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.medium_name,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.medium_lot,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.temperature_c,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.mea_coupon_id,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.electrode_material,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.laminin_or_peptide_density,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata.sterilization_or_aseptic_protocol,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection.visible_precipitate,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection.visible_shedding,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection.swelling_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection.delamination_score,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection.optical_transparency_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.date,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.medium_name,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.medium_lot,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.temperature_c,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.mea_coupon_id,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.electrode_material,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.laminin_or_peptide_density,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata.sterilization_or_aseptic_protocol,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection.visible_precipitate,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection.visible_shedding,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection.swelling_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection.delamination_score,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection.optical_transparency_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.date,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.medium_name,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.medium_lot,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.temperature_c,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.mea_coupon_id,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.electrode_material,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.laminin_or_peptide_density,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata.sterilization_or_aseptic_protocol,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final.pH,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_pH_pH_meter_export_or_photo.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final.osmolality,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final.conductivity,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection.visible_precipitate,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection.visible_shedding,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection.swelling_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection.delamination_score,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,, -h_a_medium_stability,challenge_nhi_pedot_high_loading,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection.optical_transparency_fraction,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,charge_storage_capacity_final,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,charge_storage_capacity_initial,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,delamination_score,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,eis_1khz_final_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,eis_1khz_initial_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,optical_transparency_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,swelling_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,charge_storage_capacity_final,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,charge_storage_capacity_initial,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,delamination_score,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,eis_1khz_final_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,eis_1khz_initial_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,optical_transparency_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,swelling_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,charge_storage_capacity_final,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,charge_storage_capacity_initial,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,delamination_score,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,eis_1khz_final_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,eis_1khz_initial_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,optical_transparency_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,swelling_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,charge_storage_capacity_final,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,charge_storage_capacity_initial,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,delamination_score,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,eis_1khz_final_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,eis_1khz_initial_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,optical_transparency_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,swelling_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_b_electrical_interface,hydrogel_laminin_control,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,charge_storage_capacity_final,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,charge_storage_capacity_initial,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,delamination_score,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,eis_1khz_final_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,eis_1khz_initial_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,optical_transparency_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,swelling_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,charge_storage_capacity_final,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,charge_storage_capacity_initial,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,delamination_score,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,eis_1khz_final_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,eis_1khz_initial_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,optical_transparency_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,swelling_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,charge_storage_capacity_final,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,charge_storage_capacity_initial,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,delamination_score,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,eis_1khz_final_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,eis_1khz_initial_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,optical_transparency_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,swelling_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,charge_storage_capacity_final,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,charge_storage_capacity_initial,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,delamination_score,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,eis_1khz_final_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,eis_1khz_initial_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,optical_transparency_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,swelling_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_b_electrical_interface,lead_nhi_pedot_low_loading,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,charge_storage_capacity_final,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,charge_storage_capacity_initial,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,delamination_score,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,eis_1khz_final_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,eis_1khz_initial_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,optical_transparency_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,swelling_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,charge_storage_capacity_final,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,charge_storage_capacity_initial,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,delamination_score,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,eis_1khz_final_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,eis_1khz_initial_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,optical_transparency_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,swelling_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,charge_storage_capacity_final,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,charge_storage_capacity_initial,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,delamination_score,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,eis_1khz_final_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,eis_1khz_initial_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,optical_transparency_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,swelling_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,charge_storage_capacity_final,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,charge_storage_capacity_initial,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,delamination_score,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,eis_1khz_final_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,eis_1khz_initial_ohm,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,optical_transparency_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,swelling_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,, -h_b_electrical_interface,challenge_nhi_pedot_high_loading,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-24h,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-7d,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-14d,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,laminin_only_control,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,hydrogel_laminin_control,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,lead_nhi_pedot_low_loading,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,burst_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,cell_model,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,crosslinking_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,date,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,electrode_material,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,electrode_yield_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,hydrogel_matrix,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,laminin_or_peptide_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,ldh_fold_control,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,mea_coupon_id,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,mean_neurite_length_um,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,medium_lot,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,medium_name,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,neurite_coverage_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,operator_or_agent,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,pedot_pss_loading_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,pedot_pss_pre_rinse_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,seeding_density,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,spike_rate_hz,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,sterilization_or_aseptic_protocol,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,temperature_c,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,,,, -h_c_network_response,challenge_nhi_pedot_high_loading,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,viability_fraction,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,,,, diff --git a/data/falsiflow/limina_nhi_pedot_habc/ingest_summary.json b/data/falsiflow/limina_nhi_pedot_habc/ingest_summary.json deleted file mode 100644 index ad5deea..0000000 --- a/data/falsiflow/limina_nhi_pedot_habc/ingest_summary.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "evidence_out": "data/falsiflow/limina_nhi_pedot_habc/evidence_from_source_values.csv", - "evidence_rows": 820, - "gates": [ - "h_a_medium_stability", - "h_b_electrical_interface", - "h_c_network_response" - ], - "inputs": [ - { - "evidence_rows": 228, - "input_rows": 228, - "path": "data/nhi_pedot_h_a_source_values.csv" - }, - { - "evidence_rows": 592, - "input_rows": 592, - "path": "data/nhi_pedot_forward_source_values.csv" - } - ], - "project_gate_count": 3, - "project_out": "configs/falsiflow/limina_nhi_pedot_habc/project.json", - "skipped_rows": 0, - "status": "converted" -} \ No newline at end of file diff --git a/data/falsiflow/limina_nhi_pedot_habc/project_validation.json b/data/falsiflow/limina_nhi_pedot_habc/project_validation.json deleted file mode 100644 index b0cacd9..0000000 --- a/data/falsiflow/limina_nhi_pedot_habc/project_validation.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "error_count": 0, - "issues": [], - "status": "valid", - "valid": true, - "warning_count": 0 -} \ No newline at end of file diff --git a/data/falsiflow/neural_materials_blank/claim_audit.json b/data/falsiflow/neural_materials_blank/claim_audit.json deleted file mode 100644 index 9d40a34..0000000 --- a/data/falsiflow/neural_materials_blank/claim_audit.json +++ /dev/null @@ -1,452 +0,0 @@ -{ - "claim": { - "id": "alg_lam_pedot_lowdose_interface_claim", - "requires_gates": [ - "h_a_medium_stability", - "h_b_electrical_interface", - "h_c_network_response" - ], - "statement": "ALG-LAM-PEDOT low-dose neural hydrogel interface is stable in cell-free medium, improves electrical interface readouts, and is not worse than control in basic cell/network response." - }, - "claim_ready": false, - "evidence_error_count": 0, - "evidence_issue_count": 0, - "evidence_issues": [], - "evidence_warning_count": 0, - "gates": [ - { - "blocker_count": 14, - "blockers": [ - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "ph_initial", - "gate_id": "h_a_medium_stability", - "reasons": [ - "missing evidence row" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "ph_final", - "gate_id": "h_a_medium_stability", - "reasons": [ - "missing evidence row" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "osmolality_initial_mosm", - "gate_id": "h_a_medium_stability", - "reasons": [ - "missing evidence row" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "osmolality_final_mosm", - "gate_id": "h_a_medium_stability", - "reasons": [ - "missing evidence row" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "conductivity_initial_ms_cm", - "gate_id": "h_a_medium_stability", - "reasons": [ - "missing evidence row" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "conductivity_final_ms_cm", - "gate_id": "h_a_medium_stability", - "reasons": [ - "missing evidence row" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "visible_debris_present", - "gate_id": "h_a_medium_stability", - "reasons": [ - "missing evidence row" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "ph_drift_24h_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: ph_final" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "osmolality_drift_24h_mosm", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: osmolality_final_mosm" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "conductivity_drift_24h_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: conductivity_initial_ms_cm" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "ph_drift_24h_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "osmolality_drift_24h_mosm", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "conductivity_drift_24h_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "visible_debris_present", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "ha_demo_001" - } - ], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "h_a_medium_stability", - "required_evidence_rows": 7, - "status": "blocked_missing_evidence", - "title": "H-A cell-free medium stability", - "valid_required_evidence_rows": 0 - }, - { - "blocker_count": 12, - "blockers": [ - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "impedance_1khz_control_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "impedance_1khz_candidate_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "charge_storage_control_mC_cm2", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "charge_storage_candidate_mC_cm2", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "noise_control_uvrms", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "noise_candidate_uvrms", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "impedance_reduction_1khz_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: impedance_1khz_control_ohm" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: charge_storage_control_mC_cm2" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "noise_increase_uvrms", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: noise_candidate_uvrms" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "impedance_reduction_1khz_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "noise_increase_uvrms", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "hb_demo_001" - } - ], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "h_b_electrical_interface", - "required_evidence_rows": 6, - "status": "blocked_missing_evidence", - "title": "H-B electrical interface benefit", - "valid_required_evidence_rows": 0 - }, - { - "blocker_count": 14, - "blockers": [ - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "viability_pct", - "gate_id": "h_c_network_response", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hc_demo_candidate" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hc_demo_candidate" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "inflammation_marker", - "gate_id": "h_c_network_response", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hc_demo_candidate" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "viability_pct", - "gate_id": "h_c_network_response", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hc_demo_control" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hc_demo_control" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "inflammation_marker", - "gate_id": "h_c_network_response", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hc_demo_control" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "burst_rate_ratio_vs_control", - "gate_id": "h_c_network_response", - "reasons": [ - "derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:burst_rate_hz" - ], - "sample_id": "hc_demo_candidate" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "burst_rate_ratio_vs_control", - "gate_id": "h_c_network_response", - "reasons": [ - "derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:burst_rate_hz" - ], - "sample_id": "hc_demo_control" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "inflammation_marker_ratio_vs_control", - "gate_id": "h_c_network_response", - "reasons": [ - "derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:inflammation_marker" - ], - "sample_id": "hc_demo_candidate" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "inflammation_marker_ratio_vs_control", - "gate_id": "h_c_network_response", - "reasons": [ - "derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:inflammation_marker" - ], - "sample_id": "hc_demo_control" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "viability_pct", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "hc_demo_candidate" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "viability_pct", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "hc_demo_control" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "burst_rate_ratio_vs_control", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "hc_demo_candidate" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "inflammation_marker_ratio_vs_control", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "hc_demo_candidate" - } - ], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "h_c_network_response", - "required_evidence_rows": 6, - "status": "blocked_missing_evidence", - "title": "H-C cell and network response", - "valid_required_evidence_rows": 0 - } - ], - "missing_required_gates": [], - "next_actions": [ - { - "action_id": "fill_h_a_medium_stability_evidence", - "rank": 1, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_a_medium_stability` is `blocked_missing_evidence` with 14 blocker(s)." - }, - { - "action_id": "fill_h_b_electrical_interface_evidence", - "rank": 2, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_b_electrical_interface` is `blocked_missing_evidence` with 12 blocker(s)." - }, - { - "action_id": "fill_h_c_network_response_evidence", - "rank": 3, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_c_network_response` is `blocked_missing_evidence` with 14 blocker(s)." - } - ], - "project": { - "domain": "neural-wetware-material-interface", - "id": "falsiflow_neural_materials_demo", - "name": "Falsiflow neural materials demo", - "version": "0.1.0" - }, - "project_config_valid": true, - "project_validation": { - "error_count": 0, - "issues": [], - "status": "valid", - "valid": true, - "warning_count": 0 - }, - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "status": "claim_blocked" -} \ No newline at end of file diff --git a/data/falsiflow/neural_materials_blank/claim_audit.md b/data/falsiflow/neural_materials_blank/claim_audit.md deleted file mode 100644 index bf5ee6b..0000000 --- a/data/falsiflow/neural_materials_blank/claim_audit.md +++ /dev/null @@ -1,72 +0,0 @@ -# Falsiflow Claim Audit - -**Project:** `falsiflow_neural_materials_demo` -**Claim:** `alg_lam_pedot_lowdose_interface_claim` -**Status:** `claim_blocked` -**Claim ready:** `false` - -## Gates - -| Gate | Status | Valid rows | Required rows | Derived | Blockers | -| --- | --- | ---: | ---: | ---: | ---: | -| `h_a_medium_stability` | `blocked_missing_evidence` | 0 | 7 | 0 | 14 | -| `h_b_electrical_interface` | `blocked_missing_evidence` | 0 | 6 | 0 | 12 | -| `h_c_network_response` | `blocked_missing_evidence` | 0 | 6 | 0 | 14 | - -## Project Validation - -- status: `valid` -- none - -## Evidence Diagnostics - -- none - -## Blockers - -- `h_a_medium_stability` `ha_demo_001` `ph_initial`: missing evidence row -- `h_a_medium_stability` `ha_demo_001` `ph_final`: missing evidence row -- `h_a_medium_stability` `ha_demo_001` `osmolality_initial_mosm`: missing evidence row -- `h_a_medium_stability` `ha_demo_001` `osmolality_final_mosm`: missing evidence row -- `h_a_medium_stability` `ha_demo_001` `conductivity_initial_ms_cm`: missing evidence row -- `h_a_medium_stability` `ha_demo_001` `conductivity_final_ms_cm`: missing evidence row -- `h_a_medium_stability` `ha_demo_001` `visible_debris_present`: missing evidence row -- `h_a_medium_stability` `ha_demo_001` `ph_drift_24h_abs`: derived field failed: required input field is missing: ph_final -- `h_a_medium_stability` `ha_demo_001` `osmolality_drift_24h_mosm`: derived field failed: required input field is missing: osmolality_final_mosm -- `h_a_medium_stability` `ha_demo_001` `conductivity_drift_24h_pct`: derived field failed: required input field is missing: conductivity_initial_ms_cm -- `h_a_medium_stability` `ha_demo_001` `ph_drift_24h_abs`: acceptance field is missing or not derived -- `h_a_medium_stability` `ha_demo_001` `osmolality_drift_24h_mosm`: acceptance field is missing or not derived -- `h_a_medium_stability` `ha_demo_001` `conductivity_drift_24h_pct`: acceptance field is missing or not derived -- `h_a_medium_stability` `ha_demo_001` `visible_debris_present`: acceptance field is missing or not derived -- `h_b_electrical_interface` `hb_demo_001` `impedance_1khz_control_ohm`: missing evidence row -- `h_b_electrical_interface` `hb_demo_001` `impedance_1khz_candidate_ohm`: missing evidence row -- `h_b_electrical_interface` `hb_demo_001` `charge_storage_control_mC_cm2`: missing evidence row -- `h_b_electrical_interface` `hb_demo_001` `charge_storage_candidate_mC_cm2`: missing evidence row -- `h_b_electrical_interface` `hb_demo_001` `noise_control_uvrms`: missing evidence row -- `h_b_electrical_interface` `hb_demo_001` `noise_candidate_uvrms`: missing evidence row -- `h_b_electrical_interface` `hb_demo_001` `impedance_reduction_1khz_pct`: derived field failed: required input field is missing: impedance_1khz_control_ohm -- `h_b_electrical_interface` `hb_demo_001` `charge_storage_gain_pct`: derived field failed: required input field is missing: charge_storage_control_mC_cm2 -- `h_b_electrical_interface` `hb_demo_001` `noise_increase_uvrms`: derived field failed: required input field is missing: noise_candidate_uvrms -- `h_b_electrical_interface` `hb_demo_001` `impedance_reduction_1khz_pct`: acceptance field is missing or not derived -- `h_b_electrical_interface` `hb_demo_001` `charge_storage_gain_pct`: acceptance field is missing or not derived -- `h_b_electrical_interface` `hb_demo_001` `noise_increase_uvrms`: acceptance field is missing or not derived -- `h_c_network_response` `hc_demo_candidate` `viability_pct`: missing evidence row -- `h_c_network_response` `hc_demo_candidate` `burst_rate_hz`: missing evidence row -- `h_c_network_response` `hc_demo_candidate` `inflammation_marker`: missing evidence row -- `h_c_network_response` `hc_demo_control` `viability_pct`: missing evidence row -- `h_c_network_response` `hc_demo_control` `burst_rate_hz`: missing evidence row -- `h_c_network_response` `hc_demo_control` `inflammation_marker`: missing evidence row -- `h_c_network_response` `hc_demo_candidate` `burst_rate_ratio_vs_control`: derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:burst_rate_hz -- `h_c_network_response` `hc_demo_control` `burst_rate_ratio_vs_control`: derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:burst_rate_hz -- `h_c_network_response` `hc_demo_candidate` `inflammation_marker_ratio_vs_control`: derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:inflammation_marker -- `h_c_network_response` `hc_demo_control` `inflammation_marker_ratio_vs_control`: derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:inflammation_marker -- `h_c_network_response` `hc_demo_candidate` `viability_pct`: acceptance field is missing or not derived -- `h_c_network_response` `hc_demo_control` `viability_pct`: acceptance field is missing or not derived -- `h_c_network_response` `hc_demo_candidate` `burst_rate_ratio_vs_control`: acceptance field is missing or not derived -- `h_c_network_response` `hc_demo_candidate` `inflammation_marker_ratio_vs_control`: acceptance field is missing or not derived - -## Next Actions - -- 1. `fill_h_a_medium_stability_evidence` - Gate `h_a_medium_stability` is `blocked_missing_evidence` with 14 blocker(s). -- 2. `fill_h_b_electrical_interface_evidence` - Gate `h_b_electrical_interface` is `blocked_missing_evidence` with 12 blocker(s). -- 3. `fill_h_c_network_response_evidence` - Gate `h_c_network_response` is `blocked_missing_evidence` with 14 blocker(s). diff --git a/data/falsiflow/neural_materials_blank/claim_summary.json b/data/falsiflow/neural_materials_blank/claim_summary.json deleted file mode 100644 index ad80450..0000000 --- a/data/falsiflow/neural_materials_blank/claim_summary.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "blocker_count": 40, - "claim_id": "alg_lam_pedot_lowdose_interface_claim", - "claim_ready": false, - "completion_pct": 0.0, - "derived_field_count": 0, - "evidence_error_count": 0, - "evidence_issue_count": 0, - "evidence_warning_count": 0, - "gate_count": 3, - "gates": [ - { - "blocker_count": 14, - "completion_pct": 0.0, - "derived_field_count": 0, - "gate_id": "h_a_medium_stability", - "required_evidence_rows": 7, - "status": "blocked_missing_evidence", - "title": "H-A cell-free medium stability", - "valid_required_evidence_rows": 0 - }, - { - "blocker_count": 12, - "completion_pct": 0.0, - "derived_field_count": 0, - "gate_id": "h_b_electrical_interface", - "required_evidence_rows": 6, - "status": "blocked_missing_evidence", - "title": "H-B electrical interface benefit", - "valid_required_evidence_rows": 0 - }, - { - "blocker_count": 14, - "completion_pct": 0.0, - "derived_field_count": 0, - "gate_id": "h_c_network_response", - "required_evidence_rows": 6, - "status": "blocked_missing_evidence", - "title": "H-C cell and network response", - "valid_required_evidence_rows": 0 - } - ], - "next_action_count": 3, - "project_config_valid": true, - "project_id": "falsiflow_neural_materials_demo", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "required_evidence_rows": 19, - "status": "claim_blocked", - "status_counts": { - "blocked_missing_evidence": 3 - }, - "valid_required_evidence_rows": 0 -} \ No newline at end of file diff --git a/data/falsiflow/neural_materials_blank/dashboard.html b/data/falsiflow/neural_materials_blank/dashboard.html deleted file mode 100644 index dcd51bc..0000000 --- a/data/falsiflow/neural_materials_blank/dashboard.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Falsiflow Dashboard - alg_lam_pedot_lowdose_interface_claim - - - -
-
-
-

Falsiflow Claim Dashboard

-

Project falsiflow_neural_materials_demo / Claim alg_lam_pedot_lowdose_interface_claim

-
-
- Status - claim_blocked -
-
-
-
Claim readyfalse
-
Completion0.0%
-
Valid rows0 / 19
-
Derived values0
-
Blockers40
-
Project errors0
-
Project warnings0
-
Evidence errors0
-
Evidence warnings0
-
-
- -
-
-
-

h_a_medium_stability

-

H-A cell-free medium stability

-
- blocked_missing_evidence -
-
-
-
Valid rows
0 / 7
-
Derived
0
-
Blockers
14
-
-
- -
-
-
-

h_b_electrical_interface

-

H-B electrical interface benefit

-
- blocked_missing_evidence -
-
-
-
Valid rows
0 / 6
-
Derived
0
-
Blockers
12
-
-
- -
-
-
-

h_c_network_response

-

H-C cell and network response

-
- blocked_missing_evidence -
-
-
-
Valid rows
0 / 6
-
Derived
0
-
Blockers
14
-
-
- -
-
-
-

Top Blockers

-
  • h_a_medium_stability ha_demo_001 ph_initialmissing evidence row
  • h_a_medium_stability ha_demo_001 ph_finalmissing evidence row
  • h_a_medium_stability ha_demo_001 osmolality_initial_mosmmissing evidence row
  • h_a_medium_stability ha_demo_001 osmolality_final_mosmmissing evidence row
  • h_a_medium_stability ha_demo_001 conductivity_initial_ms_cmmissing evidence row
  • h_a_medium_stability ha_demo_001 conductivity_final_ms_cmmissing evidence row
  • h_a_medium_stability ha_demo_001 visible_debris_presentmissing evidence row
  • h_a_medium_stability ha_demo_001 ph_drift_24h_absderived field failed: required input field is missing: ph_final
  • h_a_medium_stability ha_demo_001 osmolality_drift_24h_mosmderived field failed: required input field is missing: osmolality_final_mosm
  • h_a_medium_stability ha_demo_001 conductivity_drift_24h_pctderived field failed: required input field is missing: conductivity_initial_ms_cm
  • h_a_medium_stability ha_demo_001 ph_drift_24h_absacceptance field is missing or not derived
  • h_a_medium_stability ha_demo_001 osmolality_drift_24h_mosmacceptance field is missing or not derived
  • h_a_medium_stability ha_demo_001 conductivity_drift_24h_pctacceptance field is missing or not derived
  • h_a_medium_stability ha_demo_001 visible_debris_presentacceptance field is missing or not derived
  • h_b_electrical_interface hb_demo_001 impedance_1khz_control_ohmmissing evidence row
  • h_b_electrical_interface hb_demo_001 impedance_1khz_candidate_ohmmissing evidence row
  • h_b_electrical_interface hb_demo_001 charge_storage_control_mC_cm2missing evidence row
  • h_b_electrical_interface hb_demo_001 charge_storage_candidate_mC_cm2missing evidence row
  • h_b_electrical_interface hb_demo_001 noise_control_uvrmsmissing evidence row
  • h_b_electrical_interface hb_demo_001 noise_candidate_uvrmsmissing evidence row
  • h_b_electrical_interface hb_demo_001 impedance_reduction_1khz_pctderived field failed: required input field is missing: impedance_1khz_control_ohm
  • h_b_electrical_interface hb_demo_001 charge_storage_gain_pctderived field failed: required input field is missing: charge_storage_control_mC_cm2
  • h_b_electrical_interface hb_demo_001 noise_increase_uvrmsderived field failed: required input field is missing: noise_candidate_uvrms
  • h_b_electrical_interface hb_demo_001 impedance_reduction_1khz_pctacceptance field is missing or not derived
  • h_b_electrical_interface hb_demo_001 charge_storage_gain_pctacceptance field is missing or not derived
  • h_b_electrical_interface hb_demo_001 noise_increase_uvrmsacceptance field is missing or not derived
  • h_c_network_response hc_demo_candidate viability_pctmissing evidence row
  • h_c_network_response hc_demo_candidate burst_rate_hzmissing evidence row
  • h_c_network_response hc_demo_candidate inflammation_markermissing evidence row
  • h_c_network_response hc_demo_control viability_pctmissing evidence row
  • h_c_network_response hc_demo_control burst_rate_hzmissing evidence row
  • h_c_network_response hc_demo_control inflammation_markermissing evidence row
  • h_c_network_response hc_demo_candidate burst_rate_ratio_vs_controlderived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:burst_rate_hz
  • h_c_network_response hc_demo_control burst_rate_ratio_vs_controlderived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:burst_rate_hz
  • h_c_network_response hc_demo_candidate inflammation_marker_ratio_vs_controlderived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:inflammation_marker
  • h_c_network_response hc_demo_control inflammation_marker_ratio_vs_controlderived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:inflammation_marker
  • h_c_network_response hc_demo_candidate viability_pctacceptance field is missing or not derived
  • h_c_network_response hc_demo_control viability_pctacceptance field is missing or not derived
  • h_c_network_response hc_demo_candidate burst_rate_ratio_vs_controlacceptance field is missing or not derived
  • h_c_network_response hc_demo_candidate inflammation_marker_ratio_vs_controlacceptance field is missing or not derived
-
-
-

Next Actions

-
  • 1. fill_h_a_medium_stability_evidenceGate `h_a_medium_stability` is `blocked_missing_evidence` with 14 blocker(s).
  • 2. fill_h_b_electrical_interface_evidenceGate `h_b_electrical_interface` is `blocked_missing_evidence` with 12 blocker(s).
  • 3. fill_h_c_network_response_evidenceGate `h_c_network_response` is `blocked_missing_evidence` with 14 blocker(s).
-
-
-
- - diff --git a/data/falsiflow/neural_materials_blank/measurement_template.csv b/data/falsiflow/neural_materials_blank/measurement_template.csv deleted file mode 100644 index 93f764d..0000000 --- a/data/falsiflow/neural_materials_blank/measurement_template.csv +++ /dev/null @@ -1,20 +0,0 @@ -gate_id,gate_title,candidate_id,sample_id,field,value,source_file,measured_at,operator_or_agent,instrument_id,notes -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,ph_initial,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,ph_final,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,osmolality_initial_mosm,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,osmolality_final_mosm,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,conductivity_initial_ms_cm,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,conductivity_final_ms_cm,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,visible_debris_present,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,impedance_1khz_control_ohm,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,impedance_1khz_candidate_ohm,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,charge_storage_control_mC_cm2,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,charge_storage_candidate_mC_cm2,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,noise_control_uvrms,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,noise_candidate_uvrms,,,,,, -h_c_network_response,H-C cell and network response,alg_lam_pedot_lowdose_v0_1,hc_demo_candidate,viability_pct,,,,,, -h_c_network_response,H-C cell and network response,alg_lam_pedot_lowdose_v0_1,hc_demo_candidate,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,alg_lam_pedot_lowdose_v0_1,hc_demo_candidate,inflammation_marker,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,hc_demo_control,viability_pct,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,hc_demo_control,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,hc_demo_control,inflammation_marker,,,,,, diff --git a/data/falsiflow/neural_materials_blank/next_actions.json b/data/falsiflow/neural_materials_blank/next_actions.json deleted file mode 100644 index b31fdf7..0000000 --- a/data/falsiflow/neural_materials_blank/next_actions.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "action_id": "fill_h_a_medium_stability_evidence", - "rank": 1, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_a_medium_stability` is `blocked_missing_evidence` with 14 blocker(s)." - }, - { - "action_id": "fill_h_b_electrical_interface_evidence", - "rank": 2, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_b_electrical_interface` is `blocked_missing_evidence` with 12 blocker(s)." - }, - { - "action_id": "fill_h_c_network_response_evidence", - "rank": 3, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_c_network_response` is `blocked_missing_evidence` with 14 blocker(s)." - } -] \ No newline at end of file diff --git a/data/falsiflow/neural_materials_pass/claim_audit.json b/data/falsiflow/neural_materials_pass/claim_audit.json deleted file mode 100644 index f4e91a5..0000000 --- a/data/falsiflow/neural_materials_pass/claim_audit.json +++ /dev/null @@ -1,160 +0,0 @@ -{ - "claim": { - "id": "alg_lam_pedot_lowdose_interface_claim", - "requires_gates": [ - "h_a_medium_stability", - "h_b_electrical_interface", - "h_c_network_response" - ], - "statement": "ALG-LAM-PEDOT low-dose neural hydrogel interface is stable in cell-free medium, improves electrical interface readouts, and is not worse than control in basic cell/network response." - }, - "claim_ready": true, - "evidence_error_count": 0, - "evidence_issue_count": 0, - "evidence_issues": [], - "evidence_warning_count": 0, - "gates": [ - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 3, - "derived_fields": [ - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "ph_drift_24h_abs", - "gate_id": "h_a_medium_stability", - "operation": "abs_delta", - "sample_id": "ha_demo_001", - "value": 0.08000000000000007 - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "osmolality_drift_24h_mosm", - "gate_id": "h_a_medium_stability", - "operation": "abs_delta", - "sample_id": "ha_demo_001", - "value": 9.0 - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "conductivity_drift_24h_pct", - "gate_id": "h_a_medium_stability", - "operation": "abs_pct_change", - "sample_id": "ha_demo_001", - "value": 3.571428571428571 - } - ], - "gate_id": "h_a_medium_stability", - "required_evidence_rows": 7, - "status": "passed", - "title": "H-A cell-free medium stability", - "valid_required_evidence_rows": 7 - }, - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 3, - "derived_fields": [ - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "impedance_reduction_1khz_pct", - "gate_id": "h_b_electrical_interface", - "operation": "reduction_pct", - "sample_id": "hb_demo_001", - "value": 31.0 - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "operation": "gain_pct", - "sample_id": "hb_demo_001", - "value": 21.999999999999996 - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "noise_increase_uvrms", - "gate_id": "h_b_electrical_interface", - "operation": "subtract", - "sample_id": "hb_demo_001", - "value": 0.9000000000000004 - } - ], - "gate_id": "h_b_electrical_interface", - "required_evidence_rows": 6, - "status": "passed", - "title": "H-B electrical interface benefit", - "valid_required_evidence_rows": 6 - }, - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 4, - "derived_fields": [ - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "burst_rate_ratio_vs_control", - "gate_id": "h_c_network_response", - "operation": "ratio", - "sample_id": "hc_demo_candidate", - "value": 0.96 - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "burst_rate_ratio_vs_control", - "gate_id": "h_c_network_response", - "operation": "ratio", - "sample_id": "hc_demo_control", - "value": 1.0 - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "inflammation_marker_ratio_vs_control", - "gate_id": "h_c_network_response", - "operation": "ratio", - "sample_id": "hc_demo_candidate", - "value": 1.05 - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "inflammation_marker_ratio_vs_control", - "gate_id": "h_c_network_response", - "operation": "ratio", - "sample_id": "hc_demo_control", - "value": 1.0 - } - ], - "gate_id": "h_c_network_response", - "required_evidence_rows": 6, - "status": "passed", - "title": "H-C cell and network response", - "valid_required_evidence_rows": 6 - } - ], - "missing_required_gates": [], - "next_actions": [ - { - "action_id": "review_claim_for_release", - "rank": 1, - "success_criterion": "Human review confirms raw sources and claim wording before release.", - "why": "All required gates passed with source-backed evidence." - } - ], - "project": { - "domain": "neural-wetware-material-interface", - "id": "falsiflow_neural_materials_demo", - "name": "Falsiflow neural materials demo", - "version": "0.1.0" - }, - "project_config_valid": true, - "project_validation": { - "error_count": 0, - "issues": [], - "status": "valid", - "valid": true, - "warning_count": 0 - }, - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "status": "claim_ready" -} \ No newline at end of file diff --git a/data/falsiflow/neural_materials_pass/claim_audit.md b/data/falsiflow/neural_materials_pass/claim_audit.md deleted file mode 100644 index f1ac020..0000000 --- a/data/falsiflow/neural_materials_pass/claim_audit.md +++ /dev/null @@ -1,31 +0,0 @@ -# Falsiflow Claim Audit - -**Project:** `falsiflow_neural_materials_demo` -**Claim:** `alg_lam_pedot_lowdose_interface_claim` -**Status:** `claim_ready` -**Claim ready:** `true` - -## Gates - -| Gate | Status | Valid rows | Required rows | Derived | Blockers | -| --- | --- | ---: | ---: | ---: | ---: | -| `h_a_medium_stability` | `passed` | 7 | 7 | 3 | 0 | -| `h_b_electrical_interface` | `passed` | 6 | 6 | 3 | 0 | -| `h_c_network_response` | `passed` | 6 | 6 | 4 | 0 | - -## Project Validation - -- status: `valid` -- none - -## Evidence Diagnostics - -- none - -## Blockers - -- none - -## Next Actions - -- 1. `review_claim_for_release` - All required gates passed with source-backed evidence. diff --git a/data/falsiflow/neural_materials_pass/claim_summary.json b/data/falsiflow/neural_materials_pass/claim_summary.json deleted file mode 100644 index e9fba14..0000000 --- a/data/falsiflow/neural_materials_pass/claim_summary.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "blocker_count": 0, - "claim_id": "alg_lam_pedot_lowdose_interface_claim", - "claim_ready": true, - "completion_pct": 100.0, - "derived_field_count": 10, - "evidence_error_count": 0, - "evidence_issue_count": 0, - "evidence_warning_count": 0, - "gate_count": 3, - "gates": [ - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 3, - "gate_id": "h_a_medium_stability", - "required_evidence_rows": 7, - "status": "passed", - "title": "H-A cell-free medium stability", - "valid_required_evidence_rows": 7 - }, - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 3, - "gate_id": "h_b_electrical_interface", - "required_evidence_rows": 6, - "status": "passed", - "title": "H-B electrical interface benefit", - "valid_required_evidence_rows": 6 - }, - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 4, - "gate_id": "h_c_network_response", - "required_evidence_rows": 6, - "status": "passed", - "title": "H-C cell and network response", - "valid_required_evidence_rows": 6 - } - ], - "next_action_count": 1, - "project_config_valid": true, - "project_id": "falsiflow_neural_materials_demo", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "required_evidence_rows": 19, - "status": "claim_ready", - "status_counts": { - "passed": 3 - }, - "valid_required_evidence_rows": 19 -} \ No newline at end of file diff --git a/data/falsiflow/neural_materials_pass/dashboard.html b/data/falsiflow/neural_materials_pass/dashboard.html deleted file mode 100644 index 1e4fb18..0000000 --- a/data/falsiflow/neural_materials_pass/dashboard.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Falsiflow Dashboard - alg_lam_pedot_lowdose_interface_claim - - - -
-
-
-

Falsiflow Claim Dashboard

-

Project falsiflow_neural_materials_demo / Claim alg_lam_pedot_lowdose_interface_claim

-
-
- Status - claim_ready -
-
-
-
Claim readytrue
-
Completion100.0%
-
Valid rows19 / 19
-
Derived values10
-
Blockers0
-
Project errors0
-
Project warnings0
-
Evidence errors0
-
Evidence warnings0
-
-
- -
-
-
-

h_a_medium_stability

-

H-A cell-free medium stability

-
- passed -
-
-
-
Valid rows
7 / 7
-
Derived
3
-
Blockers
0
-
-
- -
-
-
-

h_b_electrical_interface

-

H-B electrical interface benefit

-
- passed -
-
-
-
Valid rows
6 / 6
-
Derived
3
-
Blockers
0
-
-
- -
-
-
-

h_c_network_response

-

H-C cell and network response

-
- passed -
-
-
-
Valid rows
6 / 6
-
Derived
4
-
Blockers
0
-
-
- -
-
-
-

Top Blockers

-
  • No blockers.
-
-
-

Next Actions

-
  • 1. review_claim_for_releaseAll required gates passed with source-backed evidence.
-
-
-
- - diff --git a/data/falsiflow/neural_materials_pass/measurement_template.csv b/data/falsiflow/neural_materials_pass/measurement_template.csv deleted file mode 100644 index 93f764d..0000000 --- a/data/falsiflow/neural_materials_pass/measurement_template.csv +++ /dev/null @@ -1,20 +0,0 @@ -gate_id,gate_title,candidate_id,sample_id,field,value,source_file,measured_at,operator_or_agent,instrument_id,notes -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,ph_initial,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,ph_final,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,osmolality_initial_mosm,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,osmolality_final_mosm,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,conductivity_initial_ms_cm,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,conductivity_final_ms_cm,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,visible_debris_present,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,impedance_1khz_control_ohm,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,impedance_1khz_candidate_ohm,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,charge_storage_control_mC_cm2,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,charge_storage_candidate_mC_cm2,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,noise_control_uvrms,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,noise_candidate_uvrms,,,,,, -h_c_network_response,H-C cell and network response,alg_lam_pedot_lowdose_v0_1,hc_demo_candidate,viability_pct,,,,,, -h_c_network_response,H-C cell and network response,alg_lam_pedot_lowdose_v0_1,hc_demo_candidate,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,alg_lam_pedot_lowdose_v0_1,hc_demo_candidate,inflammation_marker,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,hc_demo_control,viability_pct,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,hc_demo_control,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,hc_demo_control,inflammation_marker,,,,,, diff --git a/data/falsiflow/neural_materials_pass/next_actions.json b/data/falsiflow/neural_materials_pass/next_actions.json deleted file mode 100644 index edd3ad5..0000000 --- a/data/falsiflow/neural_materials_pass/next_actions.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "action_id": "review_claim_for_release", - "rank": 1, - "success_criterion": "Human review confirms raw sources and claim wording before release.", - "why": "All required gates passed with source-backed evidence." - } -] \ No newline at end of file diff --git a/data/falsiflow/neural_materials_placeholder/claim_audit.json b/data/falsiflow/neural_materials_placeholder/claim_audit.json deleted file mode 100644 index fb87cfc..0000000 --- a/data/falsiflow/neural_materials_placeholder/claim_audit.json +++ /dev/null @@ -1,443 +0,0 @@ -{ - "claim": { - "id": "alg_lam_pedot_lowdose_interface_claim", - "requires_gates": [ - "h_a_medium_stability", - "h_b_electrical_interface", - "h_c_network_response" - ], - "statement": "ALG-LAM-PEDOT low-dose neural hydrogel interface is stable in cell-free medium, improves electrical interface readouts, and is not worse than control in basic cell/network response." - }, - "claim_ready": false, - "evidence_error_count": 0, - "evidence_issue_count": 0, - "evidence_issues": [], - "evidence_warning_count": 0, - "gates": [ - { - "blocker_count": 14, - "blockers": [ - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "ph_initial", - "gate_id": "h_a_medium_stability", - "reasons": [ - "value is blank or placeholder" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "ph_final", - "gate_id": "h_a_medium_stability", - "reasons": [ - "missing evidence row" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "osmolality_initial_mosm", - "gate_id": "h_a_medium_stability", - "reasons": [ - "missing evidence row" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "osmolality_final_mosm", - "gate_id": "h_a_medium_stability", - "reasons": [ - "missing evidence row" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "conductivity_initial_ms_cm", - "gate_id": "h_a_medium_stability", - "reasons": [ - "missing evidence row" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "conductivity_final_ms_cm", - "gate_id": "h_a_medium_stability", - "reasons": [ - "missing evidence row" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "visible_debris_present", - "gate_id": "h_a_medium_stability", - "reasons": [ - "missing evidence row" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "ph_drift_24h_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: ph_final" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "osmolality_drift_24h_mosm", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: osmolality_final_mosm" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "conductivity_drift_24h_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "derived field failed: required input field is missing: conductivity_initial_ms_cm" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "ph_drift_24h_abs", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "osmolality_drift_24h_mosm", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "conductivity_drift_24h_pct", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "ha_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "visible_debris_present", - "gate_id": "h_a_medium_stability", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "ha_demo_001" - } - ], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "h_a_medium_stability", - "required_evidence_rows": 7, - "status": "blocked_missing_evidence", - "title": "H-A cell-free medium stability", - "valid_required_evidence_rows": 0 - }, - { - "blocker_count": 11, - "blockers": [ - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "impedance_1khz_candidate_ohm", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "charge_storage_control_mC_cm2", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "charge_storage_candidate_mC_cm2", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "noise_control_uvrms", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "noise_candidate_uvrms", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "impedance_reduction_1khz_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: impedance_1khz_candidate_ohm" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: charge_storage_control_mC_cm2" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "noise_increase_uvrms", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "derived field failed: required input field is missing: noise_candidate_uvrms" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "impedance_reduction_1khz_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "charge_storage_gain_pct", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "hb_demo_001" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "noise_increase_uvrms", - "gate_id": "h_b_electrical_interface", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "hb_demo_001" - } - ], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "h_b_electrical_interface", - "required_evidence_rows": 6, - "status": "blocked_missing_evidence", - "title": "H-B electrical interface benefit", - "valid_required_evidence_rows": 1 - }, - { - "blocker_count": 14, - "blockers": [ - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "viability_pct", - "gate_id": "h_c_network_response", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hc_demo_candidate" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hc_demo_candidate" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "inflammation_marker", - "gate_id": "h_c_network_response", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hc_demo_candidate" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "viability_pct", - "gate_id": "h_c_network_response", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hc_demo_control" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "burst_rate_hz", - "gate_id": "h_c_network_response", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hc_demo_control" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "inflammation_marker", - "gate_id": "h_c_network_response", - "reasons": [ - "missing evidence row" - ], - "sample_id": "hc_demo_control" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "burst_rate_ratio_vs_control", - "gate_id": "h_c_network_response", - "reasons": [ - "derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:burst_rate_hz" - ], - "sample_id": "hc_demo_candidate" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "burst_rate_ratio_vs_control", - "gate_id": "h_c_network_response", - "reasons": [ - "derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:burst_rate_hz" - ], - "sample_id": "hc_demo_control" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "inflammation_marker_ratio_vs_control", - "gate_id": "h_c_network_response", - "reasons": [ - "derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:inflammation_marker" - ], - "sample_id": "hc_demo_candidate" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "inflammation_marker_ratio_vs_control", - "gate_id": "h_c_network_response", - "reasons": [ - "derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:inflammation_marker" - ], - "sample_id": "hc_demo_control" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "viability_pct", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "hc_demo_candidate" - }, - { - "candidate_id": "hydrogel_laminin_control", - "field": "viability_pct", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "hc_demo_control" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "burst_rate_ratio_vs_control", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "hc_demo_candidate" - }, - { - "candidate_id": "alg_lam_pedot_lowdose_v0_1", - "field": "inflammation_marker_ratio_vs_control", - "gate_id": "h_c_network_response", - "reasons": [ - "acceptance field is missing or not derived" - ], - "sample_id": "hc_demo_candidate" - } - ], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "h_c_network_response", - "required_evidence_rows": 6, - "status": "blocked_missing_evidence", - "title": "H-C cell and network response", - "valid_required_evidence_rows": 0 - } - ], - "missing_required_gates": [], - "next_actions": [ - { - "action_id": "fill_h_a_medium_stability_evidence", - "rank": 1, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_a_medium_stability` is `blocked_missing_evidence` with 14 blocker(s)." - }, - { - "action_id": "fill_h_b_electrical_interface_evidence", - "rank": 2, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_b_electrical_interface` is `blocked_missing_evidence` with 11 blocker(s)." - }, - { - "action_id": "fill_h_c_network_response_evidence", - "rank": 3, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_c_network_response` is `blocked_missing_evidence` with 14 blocker(s)." - } - ], - "project": { - "domain": "neural-wetware-material-interface", - "id": "falsiflow_neural_materials_demo", - "name": "Falsiflow neural materials demo", - "version": "0.1.0" - }, - "project_config_valid": true, - "project_validation": { - "error_count": 0, - "issues": [], - "status": "valid", - "valid": true, - "warning_count": 0 - }, - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "status": "claim_blocked" -} \ No newline at end of file diff --git a/data/falsiflow/neural_materials_placeholder/claim_audit.md b/data/falsiflow/neural_materials_placeholder/claim_audit.md deleted file mode 100644 index cfe33ce..0000000 --- a/data/falsiflow/neural_materials_placeholder/claim_audit.md +++ /dev/null @@ -1,71 +0,0 @@ -# Falsiflow Claim Audit - -**Project:** `falsiflow_neural_materials_demo` -**Claim:** `alg_lam_pedot_lowdose_interface_claim` -**Status:** `claim_blocked` -**Claim ready:** `false` - -## Gates - -| Gate | Status | Valid rows | Required rows | Derived | Blockers | -| --- | --- | ---: | ---: | ---: | ---: | -| `h_a_medium_stability` | `blocked_missing_evidence` | 0 | 7 | 0 | 14 | -| `h_b_electrical_interface` | `blocked_missing_evidence` | 1 | 6 | 0 | 11 | -| `h_c_network_response` | `blocked_missing_evidence` | 0 | 6 | 0 | 14 | - -## Project Validation - -- status: `valid` -- none - -## Evidence Diagnostics - -- none - -## Blockers - -- `h_a_medium_stability` `ha_demo_001` `ph_initial`: value is blank or placeholder -- `h_a_medium_stability` `ha_demo_001` `ph_final`: missing evidence row -- `h_a_medium_stability` `ha_demo_001` `osmolality_initial_mosm`: missing evidence row -- `h_a_medium_stability` `ha_demo_001` `osmolality_final_mosm`: missing evidence row -- `h_a_medium_stability` `ha_demo_001` `conductivity_initial_ms_cm`: missing evidence row -- `h_a_medium_stability` `ha_demo_001` `conductivity_final_ms_cm`: missing evidence row -- `h_a_medium_stability` `ha_demo_001` `visible_debris_present`: missing evidence row -- `h_a_medium_stability` `ha_demo_001` `ph_drift_24h_abs`: derived field failed: required input field is missing: ph_final -- `h_a_medium_stability` `ha_demo_001` `osmolality_drift_24h_mosm`: derived field failed: required input field is missing: osmolality_final_mosm -- `h_a_medium_stability` `ha_demo_001` `conductivity_drift_24h_pct`: derived field failed: required input field is missing: conductivity_initial_ms_cm -- `h_a_medium_stability` `ha_demo_001` `ph_drift_24h_abs`: acceptance field is missing or not derived -- `h_a_medium_stability` `ha_demo_001` `osmolality_drift_24h_mosm`: acceptance field is missing or not derived -- `h_a_medium_stability` `ha_demo_001` `conductivity_drift_24h_pct`: acceptance field is missing or not derived -- `h_a_medium_stability` `ha_demo_001` `visible_debris_present`: acceptance field is missing or not derived -- `h_b_electrical_interface` `hb_demo_001` `impedance_1khz_candidate_ohm`: missing evidence row -- `h_b_electrical_interface` `hb_demo_001` `charge_storage_control_mC_cm2`: missing evidence row -- `h_b_electrical_interface` `hb_demo_001` `charge_storage_candidate_mC_cm2`: missing evidence row -- `h_b_electrical_interface` `hb_demo_001` `noise_control_uvrms`: missing evidence row -- `h_b_electrical_interface` `hb_demo_001` `noise_candidate_uvrms`: missing evidence row -- `h_b_electrical_interface` `hb_demo_001` `impedance_reduction_1khz_pct`: derived field failed: required input field is missing: impedance_1khz_candidate_ohm -- `h_b_electrical_interface` `hb_demo_001` `charge_storage_gain_pct`: derived field failed: required input field is missing: charge_storage_control_mC_cm2 -- `h_b_electrical_interface` `hb_demo_001` `noise_increase_uvrms`: derived field failed: required input field is missing: noise_candidate_uvrms -- `h_b_electrical_interface` `hb_demo_001` `impedance_reduction_1khz_pct`: acceptance field is missing or not derived -- `h_b_electrical_interface` `hb_demo_001` `charge_storage_gain_pct`: acceptance field is missing or not derived -- `h_b_electrical_interface` `hb_demo_001` `noise_increase_uvrms`: acceptance field is missing or not derived -- `h_c_network_response` `hc_demo_candidate` `viability_pct`: missing evidence row -- `h_c_network_response` `hc_demo_candidate` `burst_rate_hz`: missing evidence row -- `h_c_network_response` `hc_demo_candidate` `inflammation_marker`: missing evidence row -- `h_c_network_response` `hc_demo_control` `viability_pct`: missing evidence row -- `h_c_network_response` `hc_demo_control` `burst_rate_hz`: missing evidence row -- `h_c_network_response` `hc_demo_control` `inflammation_marker`: missing evidence row -- `h_c_network_response` `hc_demo_candidate` `burst_rate_ratio_vs_control`: derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:burst_rate_hz -- `h_c_network_response` `hc_demo_control` `burst_rate_ratio_vs_control`: derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:burst_rate_hz -- `h_c_network_response` `hc_demo_candidate` `inflammation_marker_ratio_vs_control`: derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:inflammation_marker -- `h_c_network_response` `hc_demo_control` `inflammation_marker_ratio_vs_control`: derived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:inflammation_marker -- `h_c_network_response` `hc_demo_candidate` `viability_pct`: acceptance field is missing or not derived -- `h_c_network_response` `hc_demo_control` `viability_pct`: acceptance field is missing or not derived -- `h_c_network_response` `hc_demo_candidate` `burst_rate_ratio_vs_control`: acceptance field is missing or not derived -- `h_c_network_response` `hc_demo_candidate` `inflammation_marker_ratio_vs_control`: acceptance field is missing or not derived - -## Next Actions - -- 1. `fill_h_a_medium_stability_evidence` - Gate `h_a_medium_stability` is `blocked_missing_evidence` with 14 blocker(s). -- 2. `fill_h_b_electrical_interface_evidence` - Gate `h_b_electrical_interface` is `blocked_missing_evidence` with 11 blocker(s). -- 3. `fill_h_c_network_response_evidence` - Gate `h_c_network_response` is `blocked_missing_evidence` with 14 blocker(s). diff --git a/data/falsiflow/neural_materials_placeholder/claim_summary.json b/data/falsiflow/neural_materials_placeholder/claim_summary.json deleted file mode 100644 index 68dd19f..0000000 --- a/data/falsiflow/neural_materials_placeholder/claim_summary.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "blocker_count": 39, - "claim_id": "alg_lam_pedot_lowdose_interface_claim", - "claim_ready": false, - "completion_pct": 5.3, - "derived_field_count": 0, - "evidence_error_count": 0, - "evidence_issue_count": 0, - "evidence_warning_count": 0, - "gate_count": 3, - "gates": [ - { - "blocker_count": 14, - "completion_pct": 0.0, - "derived_field_count": 0, - "gate_id": "h_a_medium_stability", - "required_evidence_rows": 7, - "status": "blocked_missing_evidence", - "title": "H-A cell-free medium stability", - "valid_required_evidence_rows": 0 - }, - { - "blocker_count": 11, - "completion_pct": 16.7, - "derived_field_count": 0, - "gate_id": "h_b_electrical_interface", - "required_evidence_rows": 6, - "status": "blocked_missing_evidence", - "title": "H-B electrical interface benefit", - "valid_required_evidence_rows": 1 - }, - { - "blocker_count": 14, - "completion_pct": 0.0, - "derived_field_count": 0, - "gate_id": "h_c_network_response", - "required_evidence_rows": 6, - "status": "blocked_missing_evidence", - "title": "H-C cell and network response", - "valid_required_evidence_rows": 0 - } - ], - "next_action_count": 3, - "project_config_valid": true, - "project_id": "falsiflow_neural_materials_demo", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "required_evidence_rows": 19, - "status": "claim_blocked", - "status_counts": { - "blocked_missing_evidence": 3 - }, - "valid_required_evidence_rows": 1 -} \ No newline at end of file diff --git a/data/falsiflow/neural_materials_placeholder/dashboard.html b/data/falsiflow/neural_materials_placeholder/dashboard.html deleted file mode 100644 index 4097d9a..0000000 --- a/data/falsiflow/neural_materials_placeholder/dashboard.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Falsiflow Dashboard - alg_lam_pedot_lowdose_interface_claim - - - -
-
-
-

Falsiflow Claim Dashboard

-

Project falsiflow_neural_materials_demo / Claim alg_lam_pedot_lowdose_interface_claim

-
-
- Status - claim_blocked -
-
-
-
Claim readyfalse
-
Completion5.3%
-
Valid rows1 / 19
-
Derived values0
-
Blockers39
-
Project errors0
-
Project warnings0
-
Evidence errors0
-
Evidence warnings0
-
-
- -
-
-
-

h_a_medium_stability

-

H-A cell-free medium stability

-
- blocked_missing_evidence -
-
-
-
Valid rows
0 / 7
-
Derived
0
-
Blockers
14
-
-
- -
-
-
-

h_b_electrical_interface

-

H-B electrical interface benefit

-
- blocked_missing_evidence -
-
-
-
Valid rows
1 / 6
-
Derived
0
-
Blockers
11
-
-
- -
-
-
-

h_c_network_response

-

H-C cell and network response

-
- blocked_missing_evidence -
-
-
-
Valid rows
0 / 6
-
Derived
0
-
Blockers
14
-
-
- -
-
-
-

Top Blockers

-
  • h_a_medium_stability ha_demo_001 ph_initialvalue is blank or placeholder
  • h_a_medium_stability ha_demo_001 ph_finalmissing evidence row
  • h_a_medium_stability ha_demo_001 osmolality_initial_mosmmissing evidence row
  • h_a_medium_stability ha_demo_001 osmolality_final_mosmmissing evidence row
  • h_a_medium_stability ha_demo_001 conductivity_initial_ms_cmmissing evidence row
  • h_a_medium_stability ha_demo_001 conductivity_final_ms_cmmissing evidence row
  • h_a_medium_stability ha_demo_001 visible_debris_presentmissing evidence row
  • h_a_medium_stability ha_demo_001 ph_drift_24h_absderived field failed: required input field is missing: ph_final
  • h_a_medium_stability ha_demo_001 osmolality_drift_24h_mosmderived field failed: required input field is missing: osmolality_final_mosm
  • h_a_medium_stability ha_demo_001 conductivity_drift_24h_pctderived field failed: required input field is missing: conductivity_initial_ms_cm
  • h_a_medium_stability ha_demo_001 ph_drift_24h_absacceptance field is missing or not derived
  • h_a_medium_stability ha_demo_001 osmolality_drift_24h_mosmacceptance field is missing or not derived
  • h_a_medium_stability ha_demo_001 conductivity_drift_24h_pctacceptance field is missing or not derived
  • h_a_medium_stability ha_demo_001 visible_debris_presentacceptance field is missing or not derived
  • h_b_electrical_interface hb_demo_001 impedance_1khz_candidate_ohmmissing evidence row
  • h_b_electrical_interface hb_demo_001 charge_storage_control_mC_cm2missing evidence row
  • h_b_electrical_interface hb_demo_001 charge_storage_candidate_mC_cm2missing evidence row
  • h_b_electrical_interface hb_demo_001 noise_control_uvrmsmissing evidence row
  • h_b_electrical_interface hb_demo_001 noise_candidate_uvrmsmissing evidence row
  • h_b_electrical_interface hb_demo_001 impedance_reduction_1khz_pctderived field failed: required input field is missing: impedance_1khz_candidate_ohm
  • h_b_electrical_interface hb_demo_001 charge_storage_gain_pctderived field failed: required input field is missing: charge_storage_control_mC_cm2
  • h_b_electrical_interface hb_demo_001 noise_increase_uvrmsderived field failed: required input field is missing: noise_candidate_uvrms
  • h_b_electrical_interface hb_demo_001 impedance_reduction_1khz_pctacceptance field is missing or not derived
  • h_b_electrical_interface hb_demo_001 charge_storage_gain_pctacceptance field is missing or not derived
  • h_b_electrical_interface hb_demo_001 noise_increase_uvrmsacceptance field is missing or not derived
  • h_c_network_response hc_demo_candidate viability_pctmissing evidence row
  • h_c_network_response hc_demo_candidate burst_rate_hzmissing evidence row
  • h_c_network_response hc_demo_candidate inflammation_markermissing evidence row
  • h_c_network_response hc_demo_control viability_pctmissing evidence row
  • h_c_network_response hc_demo_control burst_rate_hzmissing evidence row
  • h_c_network_response hc_demo_control inflammation_markermissing evidence row
  • h_c_network_response hc_demo_candidate burst_rate_ratio_vs_controlderived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:burst_rate_hz
  • h_c_network_response hc_demo_control burst_rate_ratio_vs_controlderived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:burst_rate_hz
  • h_c_network_response hc_demo_candidate inflammation_marker_ratio_vs_controlderived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:inflammation_marker
  • h_c_network_response hc_demo_control inflammation_marker_ratio_vs_controlderived field failed: required input field is missing: hydrogel_laminin_control:hc_demo_control:inflammation_marker
  • h_c_network_response hc_demo_candidate viability_pctacceptance field is missing or not derived
  • h_c_network_response hc_demo_control viability_pctacceptance field is missing or not derived
  • h_c_network_response hc_demo_candidate burst_rate_ratio_vs_controlacceptance field is missing or not derived
  • h_c_network_response hc_demo_candidate inflammation_marker_ratio_vs_controlacceptance field is missing or not derived
-
-
-

Next Actions

-
  • 1. fill_h_a_medium_stability_evidenceGate `h_a_medium_stability` is `blocked_missing_evidence` with 14 blocker(s).
  • 2. fill_h_b_electrical_interface_evidenceGate `h_b_electrical_interface` is `blocked_missing_evidence` with 11 blocker(s).
  • 3. fill_h_c_network_response_evidenceGate `h_c_network_response` is `blocked_missing_evidence` with 14 blocker(s).
-
-
-
- - diff --git a/data/falsiflow/neural_materials_placeholder/measurement_template.csv b/data/falsiflow/neural_materials_placeholder/measurement_template.csv deleted file mode 100644 index 93f764d..0000000 --- a/data/falsiflow/neural_materials_placeholder/measurement_template.csv +++ /dev/null @@ -1,20 +0,0 @@ -gate_id,gate_title,candidate_id,sample_id,field,value,source_file,measured_at,operator_or_agent,instrument_id,notes -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,ph_initial,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,ph_final,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,osmolality_initial_mosm,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,osmolality_final_mosm,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,conductivity_initial_ms_cm,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,conductivity_final_ms_cm,,,,,, -h_a_medium_stability,H-A cell-free medium stability,alg_lam_pedot_lowdose_v0_1,ha_demo_001,visible_debris_present,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,impedance_1khz_control_ohm,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,impedance_1khz_candidate_ohm,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,charge_storage_control_mC_cm2,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,charge_storage_candidate_mC_cm2,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,noise_control_uvrms,,,,,, -h_b_electrical_interface,H-B electrical interface benefit,alg_lam_pedot_lowdose_v0_1,hb_demo_001,noise_candidate_uvrms,,,,,, -h_c_network_response,H-C cell and network response,alg_lam_pedot_lowdose_v0_1,hc_demo_candidate,viability_pct,,,,,, -h_c_network_response,H-C cell and network response,alg_lam_pedot_lowdose_v0_1,hc_demo_candidate,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,alg_lam_pedot_lowdose_v0_1,hc_demo_candidate,inflammation_marker,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,hc_demo_control,viability_pct,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,hc_demo_control,burst_rate_hz,,,,,, -h_c_network_response,H-C cell and network response,hydrogel_laminin_control,hc_demo_control,inflammation_marker,,,,,, diff --git a/data/falsiflow/neural_materials_placeholder/next_actions.json b/data/falsiflow/neural_materials_placeholder/next_actions.json deleted file mode 100644 index dae2789..0000000 --- a/data/falsiflow/neural_materials_placeholder/next_actions.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "action_id": "fill_h_a_medium_stability_evidence", - "rank": 1, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_a_medium_stability` is `blocked_missing_evidence` with 14 blocker(s)." - }, - { - "action_id": "fill_h_b_electrical_interface_evidence", - "rank": 2, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_b_electrical_interface` is `blocked_missing_evidence` with 11 blocker(s)." - }, - { - "action_id": "fill_h_c_network_response_evidence", - "rank": 3, - "success_criterion": "All required rows have non-placeholder values, required metadata, and allowed source files; acceptance rules pass.", - "why": "Gate `h_c_network_response` is `blocked_missing_evidence` with 14 blocker(s)." - } -] \ No newline at end of file diff --git a/data/falsiflow/neural_materials_template_validation.json b/data/falsiflow/neural_materials_template_validation.json deleted file mode 100644 index b0cacd9..0000000 --- a/data/falsiflow/neural_materials_template_validation.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "error_count": 0, - "issues": [], - "status": "valid", - "valid": true, - "warning_count": 0 -} \ No newline at end of file diff --git a/data/falsiflow/portfolio/portfolio_dashboard.html b/data/falsiflow/portfolio/portfolio_dashboard.html deleted file mode 100644 index 3e96e42..0000000 --- a/data/falsiflow/portfolio/portfolio_dashboard.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - Falsiflow Portfolio Dashboard - - - -
-
-
-

Falsiflow Portfolio Dashboard

-

Aggregated claim readiness across Falsiflow audit outputs.

-
-
- Status - portfolio_blocked -
-
-
-
Claims8
-
Ready5
-
Blocked3
-
Avg completion63.2%
-
Blockers1087
-
Project errors0
-
Project warnings0
-
Evidence errors0
-
Evidence warnings0
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ProjectClaimStatusReadyCompletionBlockersProject errors / warningsEvidence errors / warningsFirst Action
limina_nhi_pedot_habc_falsiflowlimina_nhi_pedot_habc_evidence_completenessclaim_blockedfalse -
- 0.0% -
10080 / 00 / 0fill_h_a_medium_stability_evidenceGate `h_a_medium_stability` is `blocked_missing_evidence` with 336 blocker(s).
falsiflow_neural_materials_demoalg_lam_pedot_lowdose_interface_claimclaim_blockedfalse -
- 0.0% -
400 / 00 / 0fill_h_a_medium_stability_evidenceGate `h_a_medium_stability` is `blocked_missing_evidence` with 14 blocker(s).
falsiflow_neural_materials_demoalg_lam_pedot_lowdose_interface_claimclaim_blockedfalse -
- 5.3% -
390 / 00 / 0fill_h_a_medium_stability_evidenceGate `h_a_medium_stability` is `blocked_missing_evidence` with 14 blocker(s).
falsiflow_biointerface_coatings_democoating_ready_for_cell_contact_screenclaim_readytrue -
- 100.0% -
00 / 00 / 0review_claim_for_releaseAll required gates passed with source-backed evidence.
falsiflow_neural_materials_demoalg_lam_pedot_lowdose_interface_claimclaim_readytrue -
- 100.0% -
00 / 00 / 0review_claim_for_releaseAll required gates passed with source-backed evidence.
falsiflow_rfq_vendor_evidence_demovendor_ready_for_measured_evidence_work_packageclaim_readytrue -
- 100.0% -
00 / 00 / 0review_claim_for_releaseAll required gates passed with source-backed evidence.
falsiflow_rfq_vendor_evidence_demovendor_ready_for_measured_evidence_work_packageclaim_readytrue -
- 100.0% -
00 / 00 / 0review_claim_for_releaseAll required gates passed with source-backed evidence.
falsiflow_wetware_support_hardware_demosupport_hardware_ready_for_wetware_screenclaim_readytrue -
- 100.0% -
00 / 00 / 0review_claim_for_releaseAll required gates passed with source-backed evidence.
-
-
- - diff --git a/data/falsiflow/portfolio/portfolio_summary.json b/data/falsiflow/portfolio/portfolio_summary.json deleted file mode 100644 index bbadd48..0000000 --- a/data/falsiflow/portfolio/portfolio_summary.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "blocked_count": 3, - "blocker_count": 1087, - "claim_count": 8, - "claims": [ - { - "audit_dir": "data/falsiflow/limina_nhi_pedot_habc/audit", - "blocker_count": 1008, - "claim_id": "limina_nhi_pedot_habc_evidence_completeness", - "claim_ready": false, - "completion_pct": 0.0, - "evidence_error_count": 0, - "evidence_warning_count": 0, - "first_action_id": "fill_h_a_medium_stability_evidence", - "first_action_why": "Gate `h_a_medium_stability` is `blocked_missing_evidence` with 336 blocker(s).", - "gate_count": 3, - "next_action_count": 3, - "project_id": "limina_nhi_pedot_habc_falsiflow", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "source_path": "data/falsiflow/limina_nhi_pedot_habc/audit/claim_summary.json", - "status": "claim_blocked" - }, - { - "audit_dir": "data/falsiflow/neural_materials_blank", - "blocker_count": 40, - "claim_id": "alg_lam_pedot_lowdose_interface_claim", - "claim_ready": false, - "completion_pct": 0.0, - "evidence_error_count": 0, - "evidence_warning_count": 0, - "first_action_id": "fill_h_a_medium_stability_evidence", - "first_action_why": "Gate `h_a_medium_stability` is `blocked_missing_evidence` with 14 blocker(s).", - "gate_count": 3, - "next_action_count": 3, - "project_id": "falsiflow_neural_materials_demo", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "source_path": "data/falsiflow/neural_materials_blank/claim_summary.json", - "status": "claim_blocked" - }, - { - "audit_dir": "data/falsiflow/neural_materials_placeholder", - "blocker_count": 39, - "claim_id": "alg_lam_pedot_lowdose_interface_claim", - "claim_ready": false, - "completion_pct": 5.3, - "evidence_error_count": 0, - "evidence_warning_count": 0, - "first_action_id": "fill_h_a_medium_stability_evidence", - "first_action_why": "Gate `h_a_medium_stability` is `blocked_missing_evidence` with 14 blocker(s).", - "gate_count": 3, - "next_action_count": 3, - "project_id": "falsiflow_neural_materials_demo", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "source_path": "data/falsiflow/neural_materials_placeholder/claim_summary.json", - "status": "claim_blocked" - }, - { - "audit_dir": "data/falsiflow/biointerface_coatings_pass", - "blocker_count": 0, - "claim_id": "coating_ready_for_cell_contact_screen", - "claim_ready": true, - "completion_pct": 100.0, - "evidence_error_count": 0, - "evidence_warning_count": 0, - "first_action_id": "review_claim_for_release", - "first_action_why": "All required gates passed with source-backed evidence.", - "gate_count": 3, - "next_action_count": 1, - "project_id": "falsiflow_biointerface_coatings_demo", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "source_path": "data/falsiflow/biointerface_coatings_pass/claim_summary.json", - "status": "claim_ready" - }, - { - "audit_dir": "data/falsiflow/neural_materials_pass", - "blocker_count": 0, - "claim_id": "alg_lam_pedot_lowdose_interface_claim", - "claim_ready": true, - "completion_pct": 100.0, - "evidence_error_count": 0, - "evidence_warning_count": 0, - "first_action_id": "review_claim_for_release", - "first_action_why": "All required gates passed with source-backed evidence.", - "gate_count": 3, - "next_action_count": 1, - "project_id": "falsiflow_neural_materials_demo", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "source_path": "data/falsiflow/neural_materials_pass/claim_summary.json", - "status": "claim_ready" - }, - { - "audit_dir": "data/falsiflow/rfq_vendor_evidence_pass", - "blocker_count": 0, - "claim_id": "vendor_ready_for_measured_evidence_work_package", - "claim_ready": true, - "completion_pct": 100.0, - "evidence_error_count": 0, - "evidence_warning_count": 0, - "first_action_id": "review_claim_for_release", - "first_action_why": "All required gates passed with source-backed evidence.", - "gate_count": 3, - "next_action_count": 1, - "project_id": "falsiflow_rfq_vendor_evidence_demo", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "source_path": "data/falsiflow/rfq_vendor_evidence_pass/claim_summary.json", - "status": "claim_ready" - }, - { - "audit_dir": "data/falsiflow/rfq_vendor_pass", - "blocker_count": 0, - "claim_id": "vendor_ready_for_measured_evidence_work_package", - "claim_ready": true, - "completion_pct": 100.0, - "evidence_error_count": 0, - "evidence_warning_count": 0, - "first_action_id": "review_claim_for_release", - "first_action_why": "All required gates passed with source-backed evidence.", - "gate_count": 3, - "next_action_count": 1, - "project_id": "falsiflow_rfq_vendor_evidence_demo", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "source_path": "data/falsiflow/rfq_vendor_pass/claim_summary.json", - "status": "claim_ready" - }, - { - "audit_dir": "data/falsiflow/wetware_support_hardware_pass", - "blocker_count": 0, - "claim_id": "support_hardware_ready_for_wetware_screen", - "claim_ready": true, - "completion_pct": 100.0, - "evidence_error_count": 0, - "evidence_warning_count": 0, - "first_action_id": "review_claim_for_release", - "first_action_why": "All required gates passed with source-backed evidence.", - "gate_count": 3, - "next_action_count": 1, - "project_id": "falsiflow_wetware_support_hardware_demo", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "source_path": "data/falsiflow/wetware_support_hardware_pass/claim_summary.json", - "status": "claim_ready" - } - ], - "completion_pct_avg": 63.2, - "evidence_error_count": 0, - "evidence_warning_count": 0, - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "ready_count": 5, - "status": "portfolio_blocked", - "status_counts": { - "claim_blocked": 3, - "claim_ready": 5 - } -} \ No newline at end of file diff --git a/data/falsiflow/portfolio/portfolio_summary.md b/data/falsiflow/portfolio/portfolio_summary.md deleted file mode 100644 index 92e53ce..0000000 --- a/data/falsiflow/portfolio/portfolio_summary.md +++ /dev/null @@ -1,23 +0,0 @@ -# Falsiflow Portfolio Summary - -**Status:** `portfolio_blocked` -**Claims:** 8 -**Ready:** 5 -**Blocked:** 3 -**Average completion:** 63.2% -**Blockers:** 1087 -**Project validation errors:** 0 -**Project validation warnings:** 0 -**Evidence errors:** 0 -**Evidence warnings:** 0 - -| Project | Claim | Status | Ready | Completion | Blockers | Project issues | Evidence issues | First action | -| --- | --- | --- | --- | ---: | ---: | ---: | ---: | --- | -| `limina_nhi_pedot_habc_falsiflow` | `limina_nhi_pedot_habc_evidence_completeness` | `claim_blocked` | `false` | 0.0 | 1008 | 0 / 0 | 0 / 0 | `fill_h_a_medium_stability_evidence` | -| `falsiflow_neural_materials_demo` | `alg_lam_pedot_lowdose_interface_claim` | `claim_blocked` | `false` | 0.0 | 40 | 0 / 0 | 0 / 0 | `fill_h_a_medium_stability_evidence` | -| `falsiflow_neural_materials_demo` | `alg_lam_pedot_lowdose_interface_claim` | `claim_blocked` | `false` | 5.3 | 39 | 0 / 0 | 0 / 0 | `fill_h_a_medium_stability_evidence` | -| `falsiflow_biointerface_coatings_demo` | `coating_ready_for_cell_contact_screen` | `claim_ready` | `true` | 100.0 | 0 | 0 / 0 | 0 / 0 | `review_claim_for_release` | -| `falsiflow_neural_materials_demo` | `alg_lam_pedot_lowdose_interface_claim` | `claim_ready` | `true` | 100.0 | 0 | 0 / 0 | 0 / 0 | `review_claim_for_release` | -| `falsiflow_rfq_vendor_evidence_demo` | `vendor_ready_for_measured_evidence_work_package` | `claim_ready` | `true` | 100.0 | 0 | 0 / 0 | 0 / 0 | `review_claim_for_release` | -| `falsiflow_rfq_vendor_evidence_demo` | `vendor_ready_for_measured_evidence_work_package` | `claim_ready` | `true` | 100.0 | 0 | 0 / 0 | 0 / 0 | `review_claim_for_release` | -| `falsiflow_wetware_support_hardware_demo` | `support_hardware_ready_for_wetware_screen` | `claim_ready` | `true` | 100.0 | 0 | 0 / 0 | 0 / 0 | `review_claim_for_release` | diff --git a/data/falsiflow/rfq_vendor_evidence_pass/claim_audit.json b/data/falsiflow/rfq_vendor_evidence_pass/claim_audit.json deleted file mode 100644 index c10898c..0000000 --- a/data/falsiflow/rfq_vendor_evidence_pass/claim_audit.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "claim": { - "id": "vendor_ready_for_measured_evidence_work_package", - "requires_gates": [ - "contact_provenance", - "scope_confirmation", - "return_package_requirements" - ], - "statement": "A vendor or external lab interaction is ready to proceed only when contact provenance, scope confirmation, and measured-data return requirements are source-backed." - }, - "claim_ready": true, - "evidence_error_count": 0, - "evidence_issue_count": 0, - "evidence_issues": [], - "evidence_warning_count": 0, - "gates": [ - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "contact_provenance", - "required_evidence_rows": 3, - "status": "passed", - "title": "Contact provenance", - "valid_required_evidence_rows": 3 - }, - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "scope_confirmation", - "required_evidence_rows": 3, - "status": "passed", - "title": "Scope confirmation", - "valid_required_evidence_rows": 3 - }, - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "return_package_requirements", - "required_evidence_rows": 3, - "status": "passed", - "title": "Measured-data return package", - "valid_required_evidence_rows": 3 - } - ], - "missing_required_gates": [], - "next_actions": [ - { - "action_id": "review_claim_for_release", - "rank": 1, - "success_criterion": "Human review confirms raw sources and claim wording before release.", - "why": "All required gates passed with source-backed evidence." - } - ], - "project": { - "domain": "external-lab-and-vendor-evidence", - "id": "falsiflow_rfq_vendor_evidence_demo", - "name": "Falsiflow RFQ vendor evidence demo", - "version": "0.1.0" - }, - "project_config_valid": true, - "project_validation": { - "error_count": 0, - "issues": [], - "status": "valid", - "valid": true, - "warning_count": 0 - }, - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "status": "claim_ready" -} \ No newline at end of file diff --git a/data/falsiflow/rfq_vendor_evidence_pass/claim_audit.md b/data/falsiflow/rfq_vendor_evidence_pass/claim_audit.md deleted file mode 100644 index 1db2605..0000000 --- a/data/falsiflow/rfq_vendor_evidence_pass/claim_audit.md +++ /dev/null @@ -1,31 +0,0 @@ -# Falsiflow Claim Audit - -**Project:** `falsiflow_rfq_vendor_evidence_demo` -**Claim:** `vendor_ready_for_measured_evidence_work_package` -**Status:** `claim_ready` -**Claim ready:** `true` - -## Gates - -| Gate | Status | Valid rows | Required rows | Derived | Blockers | -| --- | --- | ---: | ---: | ---: | ---: | -| `contact_provenance` | `passed` | 3 | 3 | 0 | 0 | -| `scope_confirmation` | `passed` | 3 | 3 | 0 | 0 | -| `return_package_requirements` | `passed` | 3 | 3 | 0 | 0 | - -## Project Validation - -- status: `valid` -- none - -## Evidence Diagnostics - -- none - -## Blockers - -- none - -## Next Actions - -- 1. `review_claim_for_release` - All required gates passed with source-backed evidence. diff --git a/data/falsiflow/rfq_vendor_evidence_pass/claim_summary.json b/data/falsiflow/rfq_vendor_evidence_pass/claim_summary.json deleted file mode 100644 index 945629a..0000000 --- a/data/falsiflow/rfq_vendor_evidence_pass/claim_summary.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "blocker_count": 0, - "claim_id": "vendor_ready_for_measured_evidence_work_package", - "claim_ready": true, - "completion_pct": 100.0, - "derived_field_count": 0, - "evidence_error_count": 0, - "evidence_issue_count": 0, - "evidence_warning_count": 0, - "gate_count": 3, - "gates": [ - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 0, - "gate_id": "contact_provenance", - "required_evidence_rows": 3, - "status": "passed", - "title": "Contact provenance", - "valid_required_evidence_rows": 3 - }, - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 0, - "gate_id": "scope_confirmation", - "required_evidence_rows": 3, - "status": "passed", - "title": "Scope confirmation", - "valid_required_evidence_rows": 3 - }, - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 0, - "gate_id": "return_package_requirements", - "required_evidence_rows": 3, - "status": "passed", - "title": "Measured-data return package", - "valid_required_evidence_rows": 3 - } - ], - "next_action_count": 1, - "project_config_valid": true, - "project_id": "falsiflow_rfq_vendor_evidence_demo", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "required_evidence_rows": 9, - "status": "claim_ready", - "status_counts": { - "passed": 3 - }, - "valid_required_evidence_rows": 9 -} \ No newline at end of file diff --git a/data/falsiflow/rfq_vendor_evidence_pass/dashboard.html b/data/falsiflow/rfq_vendor_evidence_pass/dashboard.html deleted file mode 100644 index 5c17b11..0000000 --- a/data/falsiflow/rfq_vendor_evidence_pass/dashboard.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Falsiflow Dashboard - vendor_ready_for_measured_evidence_work_package - - - -
-
-
-

Falsiflow Claim Dashboard

-

Project falsiflow_rfq_vendor_evidence_demo / Claim vendor_ready_for_measured_evidence_work_package

-
-
- Status - claim_ready -
-
-
-
Claim readytrue
-
Completion100.0%
-
Valid rows9 / 9
-
Derived values0
-
Blockers0
-
Project errors0
-
Project warnings0
-
Evidence errors0
-
Evidence warnings0
-
-
- -
-
-
-

contact_provenance

-

Contact provenance

-
- passed -
-
-
-
Valid rows
3 / 3
-
Derived
0
-
Blockers
0
-
-
- -
-
-
-

scope_confirmation

-

Scope confirmation

-
- passed -
-
-
-
Valid rows
3 / 3
-
Derived
0
-
Blockers
0
-
-
- -
-
-
-

return_package_requirements

-

Measured-data return package

-
- passed -
-
-
-
Valid rows
3 / 3
-
Derived
0
-
Blockers
0
-
-
- -
-
-
-

Top Blockers

-
  • No blockers.
-
-
-

Next Actions

-
  • 1. review_claim_for_releaseAll required gates passed with source-backed evidence.
-
-
-
- - diff --git a/data/falsiflow/rfq_vendor_evidence_pass/measurement_template.csv b/data/falsiflow/rfq_vendor_evidence_pass/measurement_template.csv deleted file mode 100644 index a6d513e..0000000 --- a/data/falsiflow/rfq_vendor_evidence_pass/measurement_template.csv +++ /dev/null @@ -1,10 +0,0 @@ -gate_id,gate_title,candidate_id,sample_id,field,value,source_file,measured_at,operator_or_agent,instrument_id,notes -contact_provenance,Contact provenance,external_lab_demo,vendor_demo_001,named_contact_recorded,,,,,, -contact_provenance,Contact provenance,external_lab_demo,vendor_demo_001,organization_recorded,,,,,, -contact_provenance,Contact provenance,external_lab_demo,vendor_demo_001,communication_source_archived,,,,,, -scope_confirmation,Scope confirmation,external_lab_demo,vendor_demo_001,can_measure_requested_fields,,,,,, -scope_confirmation,Scope confirmation,external_lab_demo,vendor_demo_001,sample_handling_confirmed,,,,,, -scope_confirmation,Scope confirmation,external_lab_demo,vendor_demo_001,claim_support_language_absent,,,,,, -return_package_requirements,Measured-data return package,external_lab_demo,vendor_demo_001,raw_export_required,,,,,, -return_package_requirements,Measured-data return package,external_lab_demo,vendor_demo_001,sample_id_mapping_required,,,,,, -return_package_requirements,Measured-data return package,external_lab_demo,vendor_demo_001,method_metadata_required,,,,,, diff --git a/data/falsiflow/rfq_vendor_evidence_pass/next_actions.json b/data/falsiflow/rfq_vendor_evidence_pass/next_actions.json deleted file mode 100644 index edd3ad5..0000000 --- a/data/falsiflow/rfq_vendor_evidence_pass/next_actions.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "action_id": "review_claim_for_release", - "rank": 1, - "success_criterion": "Human review confirms raw sources and claim wording before release.", - "why": "All required gates passed with source-backed evidence." - } -] \ No newline at end of file diff --git a/data/falsiflow/rfq_vendor_evidence_template_validation.json b/data/falsiflow/rfq_vendor_evidence_template_validation.json deleted file mode 100644 index b0cacd9..0000000 --- a/data/falsiflow/rfq_vendor_evidence_template_validation.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "error_count": 0, - "issues": [], - "status": "valid", - "valid": true, - "warning_count": 0 -} \ No newline at end of file diff --git a/data/falsiflow/rfq_vendor_pass/claim_audit.json b/data/falsiflow/rfq_vendor_pass/claim_audit.json deleted file mode 100644 index d62b1c8..0000000 --- a/data/falsiflow/rfq_vendor_pass/claim_audit.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "claim": { - "id": "vendor_ready_for_measured_evidence_work_package", - "requires_gates": [ - "contact_provenance", - "scope_confirmation", - "return_package_requirements" - ], - "statement": "A vendor or external lab interaction is ready to proceed only when contact provenance, scope confirmation, and measured-data return requirements are source-backed." - }, - "claim_ready": true, - "gates": [ - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "contact_provenance", - "required_evidence_rows": 3, - "status": "passed", - "title": "Contact provenance", - "valid_required_evidence_rows": 3 - }, - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "scope_confirmation", - "required_evidence_rows": 3, - "status": "passed", - "title": "Scope confirmation", - "valid_required_evidence_rows": 3 - }, - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "return_package_requirements", - "required_evidence_rows": 3, - "status": "passed", - "title": "Measured-data return package", - "valid_required_evidence_rows": 3 - } - ], - "missing_required_gates": [], - "next_actions": [ - { - "action_id": "review_claim_for_release", - "rank": 1, - "success_criterion": "Human review confirms raw sources and claim wording before release.", - "why": "All required gates passed with source-backed evidence." - } - ], - "project": { - "domain": "external-lab-and-vendor-evidence", - "id": "falsiflow_rfq_vendor_evidence_demo", - "name": "Falsiflow RFQ vendor evidence demo", - "version": "0.1.0" - }, - "status": "claim_ready" -} \ No newline at end of file diff --git a/data/falsiflow/rfq_vendor_pass/claim_audit.md b/data/falsiflow/rfq_vendor_pass/claim_audit.md deleted file mode 100644 index 638a82e..0000000 --- a/data/falsiflow/rfq_vendor_pass/claim_audit.md +++ /dev/null @@ -1,22 +0,0 @@ -# Falsiflow Claim Audit - -**Project:** `falsiflow_rfq_vendor_evidence_demo` -**Claim:** `vendor_ready_for_measured_evidence_work_package` -**Status:** `claim_ready` -**Claim ready:** `true` - -## Gates - -| Gate | Status | Valid rows | Required rows | Derived | Blockers | -| --- | --- | ---: | ---: | ---: | ---: | -| `contact_provenance` | `passed` | 3 | 3 | 0 | 0 | -| `scope_confirmation` | `passed` | 3 | 3 | 0 | 0 | -| `return_package_requirements` | `passed` | 3 | 3 | 0 | 0 | - -## Blockers - -- none - -## Next Actions - -- 1. `review_claim_for_release` - All required gates passed with source-backed evidence. diff --git a/data/falsiflow/rfq_vendor_pass/claim_summary.json b/data/falsiflow/rfq_vendor_pass/claim_summary.json deleted file mode 100644 index 7dab995..0000000 --- a/data/falsiflow/rfq_vendor_pass/claim_summary.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "blocker_count": 0, - "claim_id": "vendor_ready_for_measured_evidence_work_package", - "claim_ready": true, - "completion_pct": 100.0, - "derived_field_count": 0, - "gate_count": 3, - "gates": [ - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 0, - "gate_id": "contact_provenance", - "required_evidence_rows": 3, - "status": "passed", - "title": "Contact provenance", - "valid_required_evidence_rows": 3 - }, - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 0, - "gate_id": "scope_confirmation", - "required_evidence_rows": 3, - "status": "passed", - "title": "Scope confirmation", - "valid_required_evidence_rows": 3 - }, - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 0, - "gate_id": "return_package_requirements", - "required_evidence_rows": 3, - "status": "passed", - "title": "Measured-data return package", - "valid_required_evidence_rows": 3 - } - ], - "next_action_count": 1, - "project_id": "falsiflow_rfq_vendor_evidence_demo", - "required_evidence_rows": 9, - "status": "claim_ready", - "status_counts": { - "passed": 3 - }, - "valid_required_evidence_rows": 9 -} \ No newline at end of file diff --git a/data/falsiflow/rfq_vendor_pass/dashboard.html b/data/falsiflow/rfq_vendor_pass/dashboard.html deleted file mode 100644 index ef388df..0000000 --- a/data/falsiflow/rfq_vendor_pass/dashboard.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - Falsiflow Dashboard - vendor_ready_for_measured_evidence_work_package - - - -
-
-
-

Falsiflow Claim Dashboard

-

Project falsiflow_rfq_vendor_evidence_demo / Claim vendor_ready_for_measured_evidence_work_package

-
-
- Status - claim_ready -
-
-
-
Claim readytrue
-
Completion100.0%
-
Valid rows9 / 9
-
Derived values0
-
Blockers0
-
-
- -
-
-
-

contact_provenance

-

Contact provenance

-
- passed -
-
-
-
Valid rows
3 / 3
-
Derived
0
-
Blockers
0
-
-
- -
-
-
-

scope_confirmation

-

Scope confirmation

-
- passed -
-
-
-
Valid rows
3 / 3
-
Derived
0
-
Blockers
0
-
-
- -
-
-
-

return_package_requirements

-

Measured-data return package

-
- passed -
-
-
-
Valid rows
3 / 3
-
Derived
0
-
Blockers
0
-
-
- -
-
-
-

Top Blockers

-
  • No blockers.
-
-
-

Next Actions

-
  • 1. review_claim_for_releaseAll required gates passed with source-backed evidence.
-
-
-
- - diff --git a/data/falsiflow/rfq_vendor_pass/measurement_template.csv b/data/falsiflow/rfq_vendor_pass/measurement_template.csv deleted file mode 100644 index a6d513e..0000000 --- a/data/falsiflow/rfq_vendor_pass/measurement_template.csv +++ /dev/null @@ -1,10 +0,0 @@ -gate_id,gate_title,candidate_id,sample_id,field,value,source_file,measured_at,operator_or_agent,instrument_id,notes -contact_provenance,Contact provenance,external_lab_demo,vendor_demo_001,named_contact_recorded,,,,,, -contact_provenance,Contact provenance,external_lab_demo,vendor_demo_001,organization_recorded,,,,,, -contact_provenance,Contact provenance,external_lab_demo,vendor_demo_001,communication_source_archived,,,,,, -scope_confirmation,Scope confirmation,external_lab_demo,vendor_demo_001,can_measure_requested_fields,,,,,, -scope_confirmation,Scope confirmation,external_lab_demo,vendor_demo_001,sample_handling_confirmed,,,,,, -scope_confirmation,Scope confirmation,external_lab_demo,vendor_demo_001,claim_support_language_absent,,,,,, -return_package_requirements,Measured-data return package,external_lab_demo,vendor_demo_001,raw_export_required,,,,,, -return_package_requirements,Measured-data return package,external_lab_demo,vendor_demo_001,sample_id_mapping_required,,,,,, -return_package_requirements,Measured-data return package,external_lab_demo,vendor_demo_001,method_metadata_required,,,,,, diff --git a/data/falsiflow/rfq_vendor_pass/next_actions.json b/data/falsiflow/rfq_vendor_pass/next_actions.json deleted file mode 100644 index edd3ad5..0000000 --- a/data/falsiflow/rfq_vendor_pass/next_actions.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "action_id": "review_claim_for_release", - "rank": 1, - "success_criterion": "Human review confirms raw sources and claim wording before release.", - "why": "All required gates passed with source-backed evidence." - } -] \ No newline at end of file diff --git a/data/falsiflow/rfq_vendor_template_validation.json b/data/falsiflow/rfq_vendor_template_validation.json deleted file mode 100644 index b0cacd9..0000000 --- a/data/falsiflow/rfq_vendor_template_validation.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "error_count": 0, - "issues": [], - "status": "valid", - "valid": true, - "warning_count": 0 -} \ No newline at end of file diff --git a/data/falsiflow/wetware_support_hardware_pass/claim_audit.json b/data/falsiflow/wetware_support_hardware_pass/claim_audit.json deleted file mode 100644 index 2a0e154..0000000 --- a/data/falsiflow/wetware_support_hardware_pass/claim_audit.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "claim": { - "id": "support_hardware_ready_for_wetware_screen", - "requires_gates": [ - "hardware_provenance", - "medium_contact_stability", - "operational_safety" - ], - "statement": "A support-hardware component is ready for wetware screening only after material provenance, medium-contact stability, and operational safety gates pass with source-backed evidence." - }, - "claim_ready": true, - "evidence_error_count": 0, - "evidence_issue_count": 0, - "evidence_issues": [], - "evidence_warning_count": 0, - "gates": [ - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "hardware_provenance", - "required_evidence_rows": 3, - "status": "passed", - "title": "Hardware material provenance", - "valid_required_evidence_rows": 3 - }, - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 2, - "derived_fields": [ - { - "candidate_id": "support_cartridge_demo", - "field": "ph_drift_abs", - "gate_id": "medium_contact_stability", - "operation": "abs_delta", - "sample_id": "hardware_demo_001", - "value": 0.05999999999999961 - }, - { - "candidate_id": "support_cartridge_demo", - "field": "osmolality_drift_mosm", - "gate_id": "medium_contact_stability", - "operation": "abs_delta", - "sample_id": "hardware_demo_001", - "value": 7.0 - } - ], - "gate_id": "medium_contact_stability", - "required_evidence_rows": 6, - "status": "passed", - "title": "Medium-contact stability", - "valid_required_evidence_rows": 6 - }, - { - "blocker_count": 0, - "blockers": [], - "derived_field_count": 0, - "derived_fields": [], - "gate_id": "operational_safety", - "required_evidence_rows": 4, - "status": "passed", - "title": "Operational safety", - "valid_required_evidence_rows": 4 - } - ], - "missing_required_gates": [], - "next_actions": [ - { - "action_id": "review_claim_for_release", - "rank": 1, - "success_criterion": "Human review confirms raw sources and claim wording before release.", - "why": "All required gates passed with source-backed evidence." - } - ], - "project": { - "domain": "wetware-support-hardware", - "id": "falsiflow_wetware_support_hardware_demo", - "name": "Falsiflow wetware support hardware demo", - "version": "0.1.0" - }, - "project_config_valid": true, - "project_validation": { - "error_count": 0, - "issues": [], - "status": "valid", - "valid": true, - "warning_count": 0 - }, - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "status": "claim_ready" -} \ No newline at end of file diff --git a/data/falsiflow/wetware_support_hardware_pass/claim_audit.md b/data/falsiflow/wetware_support_hardware_pass/claim_audit.md deleted file mode 100644 index 9a78474..0000000 --- a/data/falsiflow/wetware_support_hardware_pass/claim_audit.md +++ /dev/null @@ -1,31 +0,0 @@ -# Falsiflow Claim Audit - -**Project:** `falsiflow_wetware_support_hardware_demo` -**Claim:** `support_hardware_ready_for_wetware_screen` -**Status:** `claim_ready` -**Claim ready:** `true` - -## Gates - -| Gate | Status | Valid rows | Required rows | Derived | Blockers | -| --- | --- | ---: | ---: | ---: | ---: | -| `hardware_provenance` | `passed` | 3 | 3 | 0 | 0 | -| `medium_contact_stability` | `passed` | 6 | 6 | 2 | 0 | -| `operational_safety` | `passed` | 4 | 4 | 0 | 0 | - -## Project Validation - -- status: `valid` -- none - -## Evidence Diagnostics - -- none - -## Blockers - -- none - -## Next Actions - -- 1. `review_claim_for_release` - All required gates passed with source-backed evidence. diff --git a/data/falsiflow/wetware_support_hardware_pass/claim_summary.json b/data/falsiflow/wetware_support_hardware_pass/claim_summary.json deleted file mode 100644 index a189e85..0000000 --- a/data/falsiflow/wetware_support_hardware_pass/claim_summary.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "blocker_count": 0, - "claim_id": "support_hardware_ready_for_wetware_screen", - "claim_ready": true, - "completion_pct": 100.0, - "derived_field_count": 2, - "evidence_error_count": 0, - "evidence_issue_count": 0, - "evidence_warning_count": 0, - "gate_count": 3, - "gates": [ - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 0, - "gate_id": "hardware_provenance", - "required_evidence_rows": 3, - "status": "passed", - "title": "Hardware material provenance", - "valid_required_evidence_rows": 3 - }, - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 2, - "gate_id": "medium_contact_stability", - "required_evidence_rows": 6, - "status": "passed", - "title": "Medium-contact stability", - "valid_required_evidence_rows": 6 - }, - { - "blocker_count": 0, - "completion_pct": 100.0, - "derived_field_count": 0, - "gate_id": "operational_safety", - "required_evidence_rows": 4, - "status": "passed", - "title": "Operational safety", - "valid_required_evidence_rows": 4 - } - ], - "next_action_count": 1, - "project_config_valid": true, - "project_id": "falsiflow_wetware_support_hardware_demo", - "project_validation_error_count": 0, - "project_validation_warning_count": 0, - "required_evidence_rows": 13, - "status": "claim_ready", - "status_counts": { - "passed": 3 - }, - "valid_required_evidence_rows": 13 -} \ No newline at end of file diff --git a/data/falsiflow/wetware_support_hardware_pass/dashboard.html b/data/falsiflow/wetware_support_hardware_pass/dashboard.html deleted file mode 100644 index def1b2f..0000000 --- a/data/falsiflow/wetware_support_hardware_pass/dashboard.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - Falsiflow Dashboard - support_hardware_ready_for_wetware_screen - - - -
-
-
-

Falsiflow Claim Dashboard

-

Project falsiflow_wetware_support_hardware_demo / Claim support_hardware_ready_for_wetware_screen

-
-
- Status - claim_ready -
-
-
-
Claim readytrue
-
Completion100.0%
-
Valid rows13 / 13
-
Derived values2
-
Blockers0
-
Project errors0
-
Project warnings0
-
Evidence errors0
-
Evidence warnings0
-
-
- -
-
-
-

hardware_provenance

-

Hardware material provenance

-
- passed -
-
-
-
Valid rows
3 / 3
-
Derived
0
-
Blockers
0
-
-
- -
-
-
-

medium_contact_stability

-

Medium-contact stability

-
- passed -
-
-
-
Valid rows
6 / 6
-
Derived
2
-
Blockers
0
-
-
- -
-
-
-

operational_safety

-

Operational safety

-
- passed -
-
-
-
Valid rows
4 / 4
-
Derived
0
-
Blockers
0
-
-
- -
-
-
-

Top Blockers

-
  • No blockers.
-
-
-

Next Actions

-
  • 1. review_claim_for_releaseAll required gates passed with source-backed evidence.
-
-
-
- - diff --git a/data/falsiflow/wetware_support_hardware_pass/measurement_template.csv b/data/falsiflow/wetware_support_hardware_pass/measurement_template.csv deleted file mode 100644 index 932e376..0000000 --- a/data/falsiflow/wetware_support_hardware_pass/measurement_template.csv +++ /dev/null @@ -1,14 +0,0 @@ -gate_id,gate_title,candidate_id,sample_id,field,value,source_file,measured_at,operator_or_agent,instrument_id,notes -hardware_provenance,Hardware material provenance,support_cartridge_demo,hardware_demo_001,material_lot_recorded,,,,,, -hardware_provenance,Hardware material provenance,support_cartridge_demo,hardware_demo_001,fluid_path_materials_recorded,,,,,, -hardware_provenance,Hardware material provenance,support_cartridge_demo,hardware_demo_001,cleaning_or_sterilization_recorded,,,,,, -medium_contact_stability,Medium-contact stability,support_cartridge_demo,hardware_demo_001,ph_initial,,,,,, -medium_contact_stability,Medium-contact stability,support_cartridge_demo,hardware_demo_001,ph_final,,,,,, -medium_contact_stability,Medium-contact stability,support_cartridge_demo,hardware_demo_001,osmolality_initial_mosm,,,,,, -medium_contact_stability,Medium-contact stability,support_cartridge_demo,hardware_demo_001,osmolality_final_mosm,,,,,, -medium_contact_stability,Medium-contact stability,support_cartridge_demo,hardware_demo_001,protein_retention_fraction,,,,,, -medium_contact_stability,Medium-contact stability,support_cartridge_demo,hardware_demo_001,visible_particles_present,,,,,, -operational_safety,Operational safety,support_cartridge_demo,hardware_demo_001,leak_present,,,,,, -operational_safety,Operational safety,support_cartridge_demo,hardware_demo_001,bubble_event_count,,,,,, -operational_safety,Operational safety,support_cartridge_demo,hardware_demo_001,flow_resistance_increase_pct,,,,,, -operational_safety,Operational safety,support_cartridge_demo,hardware_demo_001,sensor_noise_increase_pct,,,,,, diff --git a/data/falsiflow/wetware_support_hardware_pass/next_actions.json b/data/falsiflow/wetware_support_hardware_pass/next_actions.json deleted file mode 100644 index edd3ad5..0000000 --- a/data/falsiflow/wetware_support_hardware_pass/next_actions.json +++ /dev/null @@ -1,8 +0,0 @@ -[ - { - "action_id": "review_claim_for_release", - "rank": 1, - "success_criterion": "Human review confirms raw sources and claim wording before release.", - "why": "All required gates passed with source-backed evidence." - } -] \ No newline at end of file diff --git a/data/falsiflow/wetware_support_hardware_template_validation.json b/data/falsiflow/wetware_support_hardware_template_validation.json deleted file mode 100644 index b0cacd9..0000000 --- a/data/falsiflow/wetware_support_hardware_template_validation.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "error_count": 0, - "issues": [], - "status": "valid", - "valid": true, - "warning_count": 0 -} \ No newline at end of file diff --git a/data/fixtures/nhi_pedot_h_a_raw_full_pass_fixture.csv b/data/fixtures/nhi_pedot_h_a_raw_full_pass_fixture.csv deleted file mode 100644 index 18b381a..0000000 --- a/data/fixtures/nhi_pedot_h_a_raw_full_pass_fixture.csv +++ /dev/null @@ -1,229 +0,0 @@ -run_id,sample_event,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,mea_coupon_id,NHIPEDOT-H-A-no_coating_mea_control-R1-0h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,mea_coupon_id,NHIPEDOT-H-A-no_coating_mea_control-R1-24h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,mea_coupon_id,NHIPEDOT-H-A-no_coating_mea_control-R1-72h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,mea_coupon_id,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,mea_coupon_id,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,mea_coupon_id,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,mea_coupon_id,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,mea_coupon_id,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,mea_coupon_id,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,mea_coupon_id,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,mea_coupon_id,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence diff --git a/data/fixtures/nhi_pedot_h_a_raw_lead_fail_fixture.csv b/data/fixtures/nhi_pedot_h_a_raw_lead_fail_fixture.csv deleted file mode 100644 index d39b8c9..0000000 --- a/data/fixtures/nhi_pedot_h_a_raw_lead_fail_fixture.csv +++ /dev/null @@ -1,229 +0,0 @@ -run_id,sample_event,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,mea_coupon_id,NHIPEDOT-H-A-no_coating_mea_control-R1-0h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,mea_coupon_id,NHIPEDOT-H-A-no_coating_mea_control-R1-24h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,mea_coupon_id,NHIPEDOT-H-A-no_coating_mea_control-R1-72h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,mea_coupon_id,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,mea_coupon_id,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,mea_coupon_id,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,mea_coupon_id,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,7.72,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,true,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,mea_coupon_id,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,mea_coupon_id,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,mea_coupon_id,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,date,2026-05-23,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,medium_name,CL1_proxy_medium_A,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,medium_lot,MED-LOT-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,temperature_c,37,C,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,mea_coupon_id,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h-coupon,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,electrode_material,MEA_witness_gold_or_ITO,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,laminin_or_peptide_density,EHS_laminin_lot_LAM-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,sterilization_or_aseptic_protocol,aseptic_preparation_lot_AP-001,,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,pH,7.40,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,osmolality,300,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,conductivity,14.0,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,pH,7.41,pH,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,osmolality,302,mOsm/kg,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,conductivity,14.1,mS/cm,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,visible_precipitate,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,visible_shedding,false,bool,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,swelling_fraction,0.05,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,delamination_score,0,score,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,optical_transparency_fraction,0.92,fraction,2026-05-23T09:00:00,synthetic_fixture_operator,synthetic_fixture_instrument,synthetic_fixture_not_material_evidence.csv,synthetic_fixture_not_material_evidence diff --git a/data/fixtures/nhi_pedot_long_full_pass_fixture.csv b/data/fixtures/nhi_pedot_long_full_pass_fixture.csv deleted file mode 100644 index 0040c99..0000000 --- a/data/fixtures/nhi_pedot_long_full_pass_fixture.csv +++ /dev/null @@ -1,157 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,cell_model,culture_day,mea_coupon_id,hydrogel_matrix,pedot_pss_loading_fraction,laminin_or_peptide_density,visible_shedding,swelling_fraction,delamination_score,optical_transparency_fraction,electrode_window_access,eis_1khz_initial_ohm,eis_1khz_current_ohm,eis_1khz_pct_hydrogel_control,charge_storage_capacity_initial,charge_storage_capacity_current,charge_storage_capacity_retention_fraction,baseline_noise_uv,viability_pct_hydrogel_control,ldh_pct_hydrogel_control,neurite_coverage_pct_hydrogel_control,morphology_stress_score,electrode_yield_pct_hydrogel_control,spike_rate_pct_hydrogel_control,burst_rate_pct_hydrogel_control,synchrony_pct_hydrogel_control,post_stim_spike_recovery_pct_pre,post_stim_burst_recovery_pct_pre,post_stim_impedance_degradation_pct,gate_results,source_file,notes -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,synthetic_fixture_not_evidence,limina,L1,0 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,0,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,synthetic_fixture_not_evidence,limina,L1,7 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,synthetic_fixture_not_evidence,limina,L1,14 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,synthetic_fixture_not_evidence,limina,L1,28 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,synthetic_fixture_not_evidence,limina,L1,42 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,synthetic_fixture_not_evidence,limina,L1,0 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,0,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,synthetic_fixture_not_evidence,limina,L1,7 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,synthetic_fixture_not_evidence,limina,L1,14 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,synthetic_fixture_not_evidence,limina,L1,28 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,synthetic_fixture_not_evidence,limina,L1,42 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,synthetic_fixture_not_evidence,limina,L1,0 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,0,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,synthetic_fixture_not_evidence,limina,L1,7 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,synthetic_fixture_not_evidence,limina,L1,14 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,synthetic_fixture_not_evidence,limina,L1,28 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,synthetic_fixture_not_evidence,limina,L1,42 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,synthetic_fixture_not_evidence,limina,L1,0 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,synthetic_fixture_not_evidence,limina,L1,7 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,synthetic_fixture_not_evidence,limina,L1,14 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,synthetic_fixture_not_evidence,limina,L1,28 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,synthetic_fixture_not_evidence,limina,L1,42 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,synthetic_fixture_not_evidence,limina,L1,0 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,synthetic_fixture_not_evidence,limina,L1,7 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,synthetic_fixture_not_evidence,limina,L1,14 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,synthetic_fixture_not_evidence,limina,L1,28 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,synthetic_fixture_not_evidence,limina,L1,42 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,synthetic_fixture_not_evidence,limina,L1,0 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,synthetic_fixture_not_evidence,limina,L1,7 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,synthetic_fixture_not_evidence,limina,L1,14 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,synthetic_fixture_not_evidence,limina,L1,28 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,synthetic_fixture_not_evidence,limina,L1,42 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,synthetic_fixture_not_evidence,limina,L1,0 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,synthetic_fixture_not_evidence,limina,L1,7 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,synthetic_fixture_not_evidence,limina,L1,14 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,synthetic_fixture_not_evidence,limina,L1,28 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,synthetic_fixture_not_evidence,limina,L1,42 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,synthetic_fixture_not_evidence,limina,L1,0 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,synthetic_fixture_not_evidence,limina,L1,7 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,synthetic_fixture_not_evidence,limina,L1,14 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,synthetic_fixture_not_evidence,limina,L1,28 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,synthetic_fixture_not_evidence,limina,L1,42 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,synthetic_fixture_not_evidence,limina,L1,0 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,synthetic_fixture_not_evidence,limina,L1,7 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,synthetic_fixture_not_evidence,limina,L1,14 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,synthetic_fixture_not_evidence,limina,L1,28 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,synthetic_fixture_not_evidence,limina,L1,42 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,synthetic_fixture_not_evidence,limina,L1,0 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,synthetic_fixture_not_evidence,limina,L1,7 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,synthetic_fixture_not_evidence,limina,L1,14 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,synthetic_fixture_not_evidence,limina,L1,28 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,synthetic_fixture_not_evidence,limina,L1,42 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,synthetic_fixture_not_evidence,limina,L1,0 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,synthetic_fixture_not_evidence,limina,L1,7 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,synthetic_fixture_not_evidence,limina,L1,14 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,synthetic_fixture_not_evidence,limina,L1,28 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,synthetic_fixture_not_evidence,limina,L1,42 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,synthetic_fixture_not_evidence,limina,L1,0 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,synthetic_fixture_not_evidence,limina,L1,7 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,synthetic_fixture_not_evidence,limina,L1,14 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,synthetic_fixture_not_evidence,limina,L1,28 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,synthetic_fixture_not_evidence,limina,L1,42 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,synthetic_fixture_not_evidence,limina,L2,7 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,synthetic_fixture_not_evidence,limina,L2,14 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,synthetic_fixture_not_evidence,limina,L2,28 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,synthetic_fixture_not_evidence,limina,L2,42 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,synthetic_fixture_not_evidence,limina,L2,7 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,synthetic_fixture_not_evidence,limina,L2,14 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,synthetic_fixture_not_evidence,limina,L2,28 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,synthetic_fixture_not_evidence,limina,L2,42 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,synthetic_fixture_not_evidence,limina,L2,7 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,synthetic_fixture_not_evidence,limina,L2,14 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,synthetic_fixture_not_evidence,limina,L2,28 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,synthetic_fixture_not_evidence,limina,L2,42 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,synthetic_fixture_not_evidence,limina,L2,7 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,synthetic_fixture_not_evidence,limina,L2,14 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,synthetic_fixture_not_evidence,limina,L2,28 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,synthetic_fixture_not_evidence,limina,L2,42 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,synthetic_fixture_not_evidence,limina,L2,7 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,synthetic_fixture_not_evidence,limina,L2,14 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,synthetic_fixture_not_evidence,limina,L2,28 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,synthetic_fixture_not_evidence,limina,L2,42 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,synthetic_fixture_not_evidence,limina,L2,7 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,synthetic_fixture_not_evidence,limina,L2,14 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,synthetic_fixture_not_evidence,limina,L2,28 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,synthetic_fixture_not_evidence,limina,L2,42 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,synthetic_fixture_not_evidence,limina,L2,7 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,synthetic_fixture_not_evidence,limina,L2,14 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,synthetic_fixture_not_evidence,limina,L2,28 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,synthetic_fixture_not_evidence,limina,L2,42 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,synthetic_fixture_not_evidence,limina,L2,7 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,synthetic_fixture_not_evidence,limina,L2,14 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,synthetic_fixture_not_evidence,limina,L2,28 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,synthetic_fixture_not_evidence,limina,L2,42 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,synthetic_fixture_not_evidence,limina,L2,7 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,synthetic_fixture_not_evidence,limina,L2,14 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,synthetic_fixture_not_evidence,limina,L2,28 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,synthetic_fixture_not_evidence,limina,L2,42 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,synthetic_fixture_not_evidence,limina,L2,7 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,synthetic_fixture_not_evidence,limina,L2,14 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,synthetic_fixture_not_evidence,limina,L2,28 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,synthetic_fixture_not_evidence,limina,L2,42 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,synthetic_fixture_not_evidence,limina,L2,7 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,synthetic_fixture_not_evidence,limina,L2,14 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,synthetic_fixture_not_evidence,limina,L2,28 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,synthetic_fixture_not_evidence,limina,L2,42 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,synthetic_fixture_not_evidence,limina,L2,7 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,synthetic_fixture_not_evidence,limina,L2,14 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,synthetic_fixture_not_evidence,limina,L2,28 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,synthetic_fixture_not_evidence,limina,L2,42 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,synthetic_fixture_not_evidence,limina,L2,7 d,1,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,7,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,synthetic_fixture_not_evidence,limina,L2,14 d,1,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,14,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,synthetic_fixture_not_evidence,limina,L2,28 d,1,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,28,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,synthetic_fixture_not_evidence,limina,L2,42 d,1,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,42,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,synthetic_fixture_not_evidence,limina,L2,7 d,2,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,7,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,synthetic_fixture_not_evidence,limina,L2,14 d,2,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,14,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,synthetic_fixture_not_evidence,limina,L2,28 d,2,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,28,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,synthetic_fixture_not_evidence,limina,L2,42 d,2,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,42,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,synthetic_fixture_not_evidence,limina,L2,7 d,3,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,7,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,synthetic_fixture_not_evidence,limina,L2,14 d,3,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,14,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,synthetic_fixture_not_evidence,limina,L2,28 d,3,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,28,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,synthetic_fixture_not_evidence,limina,L2,42 d,3,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,42,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,24,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,24,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,24,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence diff --git a/data/fixtures/nhi_pedot_long_lead_fail_fixture.csv b/data/fixtures/nhi_pedot_long_lead_fail_fixture.csv deleted file mode 100644 index 30fd5f0..0000000 --- a/data/fixtures/nhi_pedot_long_lead_fail_fixture.csv +++ /dev/null @@ -1,157 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,cell_model,culture_day,mea_coupon_id,hydrogel_matrix,pedot_pss_loading_fraction,laminin_or_peptide_density,visible_shedding,swelling_fraction,delamination_score,optical_transparency_fraction,electrode_window_access,eis_1khz_initial_ohm,eis_1khz_current_ohm,eis_1khz_pct_hydrogel_control,charge_storage_capacity_initial,charge_storage_capacity_current,charge_storage_capacity_retention_fraction,baseline_noise_uv,viability_pct_hydrogel_control,ldh_pct_hydrogel_control,neurite_coverage_pct_hydrogel_control,morphology_stress_score,electrode_yield_pct_hydrogel_control,spike_rate_pct_hydrogel_control,burst_rate_pct_hydrogel_control,synchrony_pct_hydrogel_control,post_stim_spike_recovery_pct_pre,post_stim_burst_recovery_pct_pre,post_stim_impedance_degradation_pct,gate_results,source_file,notes -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,synthetic_fixture_not_evidence,limina,L1,0 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,0,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,synthetic_fixture_not_evidence,limina,L1,7 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,synthetic_fixture_not_evidence,limina,L1,14 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,synthetic_fixture_not_evidence,limina,L1,28 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,synthetic_fixture_not_evidence,limina,L1,42 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,synthetic_fixture_not_evidence,limina,L1,0 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,0,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,synthetic_fixture_not_evidence,limina,L1,7 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,synthetic_fixture_not_evidence,limina,L1,14 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,synthetic_fixture_not_evidence,limina,L1,28 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,synthetic_fixture_not_evidence,limina,L1,42 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,synthetic_fixture_not_evidence,limina,L1,0 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,0,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,synthetic_fixture_not_evidence,limina,L1,7 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,synthetic_fixture_not_evidence,limina,L1,14 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,synthetic_fixture_not_evidence,limina,L1,28 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,synthetic_fixture_not_evidence,limina,L1,42 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,false,0.04,0,0.90,true,900,940,115,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,synthetic_fixture_not_evidence,limina,L1,0 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,synthetic_fixture_not_evidence,limina,L1,7 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,synthetic_fixture_not_evidence,limina,L1,14 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,synthetic_fixture_not_evidence,limina,L1,28 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,synthetic_fixture_not_evidence,limina,L1,42 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,synthetic_fixture_not_evidence,limina,L1,0 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,synthetic_fixture_not_evidence,limina,L1,7 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,synthetic_fixture_not_evidence,limina,L1,14 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,synthetic_fixture_not_evidence,limina,L1,28 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,synthetic_fixture_not_evidence,limina,L1,42 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,synthetic_fixture_not_evidence,limina,L1,0 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,synthetic_fixture_not_evidence,limina,L1,7 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,synthetic_fixture_not_evidence,limina,L1,14 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,synthetic_fixture_not_evidence,limina,L1,28 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,synthetic_fixture_not_evidence,limina,L1,42 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,900,940,100,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,synthetic_fixture_not_evidence,limina,L1,0 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,synthetic_fixture_not_evidence,limina,L1,7 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,synthetic_fixture_not_evidence,limina,L1,14 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,synthetic_fixture_not_evidence,limina,L1,28 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,synthetic_fixture_not_evidence,limina,L1,42 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,synthetic_fixture_not_evidence,limina,L1,0 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,synthetic_fixture_not_evidence,limina,L1,7 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,synthetic_fixture_not_evidence,limina,L1,14 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,synthetic_fixture_not_evidence,limina,L1,28 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,synthetic_fixture_not_evidence,limina,L1,42 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,synthetic_fixture_not_evidence,limina,L1,0 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,synthetic_fixture_not_evidence,limina,L1,7 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,synthetic_fixture_not_evidence,limina,L1,14 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,synthetic_fixture_not_evidence,limina,L1,28 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,synthetic_fixture_not_evidence,limina,L1,42 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,900,940,70,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,synthetic_fixture_not_evidence,limina,L1,0 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,synthetic_fixture_not_evidence,limina,L1,7 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,synthetic_fixture_not_evidence,limina,L1,14 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,synthetic_fixture_not_evidence,limina,L1,28 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,synthetic_fixture_not_evidence,limina,L1,42 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,synthetic_fixture_not_evidence,limina,L1,0 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,synthetic_fixture_not_evidence,limina,L1,7 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,synthetic_fixture_not_evidence,limina,L1,14 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,synthetic_fixture_not_evidence,limina,L1,28 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,synthetic_fixture_not_evidence,limina,L1,42 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,synthetic_fixture_not_evidence,limina,L1,0 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,synthetic_fixture_not_evidence,limina,L1,7 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,synthetic_fixture_not_evidence,limina,L1,14 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,synthetic_fixture_not_evidence,limina,L1,28 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,synthetic_fixture_not_evidence,limina,L1,42 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,900,940,60,1.0,0.92,0.92,8,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,synthetic_fixture_not_evidence,limina,L2,7 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,synthetic_fixture_not_evidence,limina,L2,14 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,synthetic_fixture_not_evidence,limina,L2,28 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,synthetic_fixture_not_evidence,limina,L2,42 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,synthetic_fixture_not_evidence,limina,L2,7 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,synthetic_fixture_not_evidence,limina,L2,14 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,synthetic_fixture_not_evidence,limina,L2,28 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,synthetic_fixture_not_evidence,limina,L2,42 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,synthetic_fixture_not_evidence,limina,L2,7 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,synthetic_fixture_not_evidence,limina,L2,14 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,synthetic_fixture_not_evidence,limina,L2,28 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,synthetic_fixture_not_evidence,limina,L2,42 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,96,100,92,0,96,96,94,95,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,synthetic_fixture_not_evidence,limina,L2,7 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,synthetic_fixture_not_evidence,limina,L2,14 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,synthetic_fixture_not_evidence,limina,L2,28 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,synthetic_fixture_not_evidence,limina,L2,42 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,synthetic_fixture_not_evidence,limina,L2,7 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,synthetic_fixture_not_evidence,limina,L2,14 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,synthetic_fixture_not_evidence,limina,L2,28 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,synthetic_fixture_not_evidence,limina,L2,42 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,synthetic_fixture_not_evidence,limina,L2,7 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,synthetic_fixture_not_evidence,limina,L2,14 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,synthetic_fixture_not_evidence,limina,L2,28 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,synthetic_fixture_not_evidence,limina,L2,42 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,100,100,100,0,100,100,100,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,synthetic_fixture_not_evidence,limina,L2,7 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,synthetic_fixture_not_evidence,limina,L2,14 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,synthetic_fixture_not_evidence,limina,L2,28 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,70,100,98,3,98,35,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,synthetic_fixture_not_evidence,limina,L2,42 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,synthetic_fixture_not_evidence,limina,L2,7 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,synthetic_fixture_not_evidence,limina,L2,14 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,synthetic_fixture_not_evidence,limina,L2,28 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,70,100,98,3,98,35,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,synthetic_fixture_not_evidence,limina,L2,42 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,synthetic_fixture_not_evidence,limina,L2,7 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,synthetic_fixture_not_evidence,limina,L2,14 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,synthetic_fixture_not_evidence,limina,L2,28 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,70,100,98,3,98,35,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,synthetic_fixture_not_evidence,limina,L2,42 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,98,100,98,0,98,102,101,100,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,synthetic_fixture_not_evidence,limina,L2,7 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,synthetic_fixture_not_evidence,limina,L2,14 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,synthetic_fixture_not_evidence,limina,L2,28 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,synthetic_fixture_not_evidence,limina,L2,42 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,synthetic_fixture_not_evidence,limina,L2,7 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,synthetic_fixture_not_evidence,limina,L2,14 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,synthetic_fixture_not_evidence,limina,L2,28 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,synthetic_fixture_not_evidence,limina,L2,42 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,synthetic_fixture_not_evidence,limina,L2,7 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,synthetic_fixture_not_evidence,limina,L2,14 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,synthetic_fixture_not_evidence,limina,L2,28 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,synthetic_fixture_not_evidence,limina,L2,42 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,86,115,88,1,88,90,88,90,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,synthetic_fixture_not_evidence,limina,L2,7 d,1,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,7,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,synthetic_fixture_not_evidence,limina,L2,14 d,1,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,14,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,synthetic_fixture_not_evidence,limina,L2,28 d,1,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,28,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,synthetic_fixture_not_evidence,limina,L2,42 d,1,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,42,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,synthetic_fixture_not_evidence,limina,L2,7 d,2,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,7,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,synthetic_fixture_not_evidence,limina,L2,14 d,2,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,14,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,synthetic_fixture_not_evidence,limina,L2,28 d,2,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,28,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,synthetic_fixture_not_evidence,limina,L2,42 d,2,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,42,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,synthetic_fixture_not_evidence,limina,L2,7 d,3,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,7,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,synthetic_fixture_not_evidence,limina,L2,14 d,3,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,14,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,synthetic_fixture_not_evidence,limina,L2,28 d,3,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,28,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,synthetic_fixture_not_evidence,limina,L2,42 d,3,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,42,,assay_control,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,40,250,20,3,15,10,8,10,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,24,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,24,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,24,,none,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,88,87,15,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,0,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,90,90,12,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,low,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,92,91,10,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,synthetic_fixture_not_evidence,limina,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,synthetic_fixture_not_evidence,limina,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,synthetic_fixture_not_evidence,limina,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,high,standard_laminin,false,0.04,0,0.90,true,,,,,,,,,,,,,,,,84,83,22,,,synthetic_fixture_not_material_evidence diff --git a/data/fixtures/nhi_pedot_runs_full_pass_fixture.csv b/data/fixtures/nhi_pedot_runs_full_pass_fixture.csv deleted file mode 100644 index a4b4799..0000000 --- a/data/fixtures/nhi_pedot_runs_full_pass_fixture.csv +++ /dev/null @@ -1,169 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,mea_coupon_id,electrode_material,hydrogel_matrix,hydrogel_modulus_kpa,hydrogel_thickness_um,pedot_pss_loading_fraction,pedot_pss_pre_rinse_protocol,laminin_or_peptide_density,crosslinking_protocol,sterilization_or_aseptic_protocol,medium_name,medium_lot,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,visible_precipitate,visible_shedding,swelling_fraction,delamination_score,optical_transparency_fraction,eis_1khz_initial_ohm,eis_1khz_final_ohm,charge_storage_capacity_initial,charge_storage_capacity_final,cell_model,seeding_density,viability_fraction,ldh_fold_control,neurite_coverage_fraction,mean_neurite_length_um,electrode_yield_fraction,spike_rate_hz,burst_rate_hz,gate_results,source_file,notes -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R2-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R2-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R2-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R2-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R3-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R3-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R3-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R3-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R1-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R1-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R1-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R1-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R2-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R2-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R2-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R2-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R3-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R3-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R3-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R3-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R2-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R2-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R2-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R2-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R3-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R3-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R3-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R3-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R2-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R2-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R2-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R2-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R3-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R3-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R3-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R3-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R2-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R2-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R2-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R2-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R3-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R3-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R3-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R3-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R1-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R1-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R1-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R1-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R2-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R2-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R2-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R2-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R3-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R3-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R3-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R3-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R1-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R1-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R1-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R1-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R2-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R2-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R2-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R2-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R3-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R3-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R3-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R3-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R2-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R2-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R2-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R2-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R3-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R3-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R3-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R3-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R2-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R2-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R2-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R2-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R3-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R3-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R3-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R3-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R2-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R2-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R2-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R2-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R3-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R3-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R3-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R3-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R1-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R1-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R1-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R2-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R2-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R2-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R2-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R3-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R3-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R3-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R3-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R2-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R2-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R2-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R2-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R3-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R3-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R3-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R3-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R2-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R2-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R2-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R2-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R3-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R3-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R3-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R3-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R2-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R2-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R2-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R2-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R3-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R3-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R3-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R3-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence diff --git a/data/fixtures/nhi_pedot_runs_lead_fail_fixture.csv b/data/fixtures/nhi_pedot_runs_lead_fail_fixture.csv deleted file mode 100644 index 0791eac..0000000 --- a/data/fixtures/nhi_pedot_runs_lead_fail_fixture.csv +++ /dev/null @@ -1,169 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,mea_coupon_id,electrode_material,hydrogel_matrix,hydrogel_modulus_kpa,hydrogel_thickness_um,pedot_pss_loading_fraction,pedot_pss_pre_rinse_protocol,laminin_or_peptide_density,crosslinking_protocol,sterilization_or_aseptic_protocol,medium_name,medium_lot,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,visible_precipitate,visible_shedding,swelling_fraction,delamination_score,optical_transparency_fraction,eis_1khz_initial_ohm,eis_1khz_final_ohm,charge_storage_capacity_initial,charge_storage_capacity_final,cell_model,seeding_density,viability_fraction,ldh_fold_control,neurite_coverage_fraction,mean_neurite_length_um,electrode_yield_fraction,spike_rate_hz,burst_rate_hz,gate_results,source_file,notes -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R2-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R2-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R2-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R2-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R3-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R3-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R3-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-no_coating_mea_control-R3-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R1-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R1-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R1-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R1-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R2-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R2-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R2-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R2-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R3-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R3-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R3-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-laminin_only_control-R3-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R2-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R2-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R2-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R2-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R3-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R3-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R3-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-hydrogel_laminin_control-R3-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.75,300,302,14.0,14.1,false,true,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R2-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R2-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R2-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.75,300,302,14.0,14.1,false,true,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R2-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R3-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R3-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R3-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.75,300,302,14.0,14.1,false,true,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R3-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R2-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R2-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R2-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R2-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R3-0h,synthetic_fixture_not_evidence,limina,H-A,0 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R3-4h,synthetic_fixture_not_evidence,limina,H-A,4 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R3-24h,synthetic_fixture_not_evidence,limina,H-A,24 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R3-72h,synthetic_fixture_not_evidence,limina,H-A,72 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R1-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R1-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R1-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R1-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,1,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R2-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R2-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R2-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R2-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,2,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R3-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R3-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R3-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-no_coating_mea_control-R3-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,3,no_coating_mea_control,,no_coating_mea_control,,,none,3.0,80,0,,standard_control_or_none,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1200,1150,0.5,0.5,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R1-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R1-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R1-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R1-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R2-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R2-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R2-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R2-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R3-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R3-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R3-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-laminin_only_control-R3-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,1100,1050,0.6,0.6,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R2-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R2-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R2-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R2-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R3-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R3-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R3-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-hydrogel_laminin_control-R3-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,950,900,0.8,0.8,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R2-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R2-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R2-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R2-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R3-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R3-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R3-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R3-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,850,620,0.9,1.20,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R2-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R2-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R2-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R2-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R3-pre_soak,synthetic_fixture_not_evidence,limina,H-B,pre-soak,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R3-24hsoak,synthetic_fixture_not_evidence,limina,H-B,24 h soak,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R3-72hsoak,synthetic_fixture_not_evidence,limina,H-B,72 h soak,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R3-post_cycling,synthetic_fixture_not_evidence,limina,H-B,post-cycling,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,750,520,1.0,1.45,,,,,,,,,,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R1-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R1-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R1-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R2-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R2-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R2-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R2-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R3-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R3-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R3-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-laminin_only_control-R3-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.93,1.0,0.70,205,0.78,1.80,0.35,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R2-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R2-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R2-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R2-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R3-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R3-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R3-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-hydrogel_laminin_control-R3-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,0,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.95,1.0,0.75,220,0.80,2.00,0.40,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R2-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R2-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R2-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R2-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R3-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R3-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R3-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R3-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,low,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.96,1.0,0.78,230,0.83,2.10,0.42,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R2-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R2-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R2-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R2-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R3-24h,synthetic_fixture_not_evidence,limina,H-C,24 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R3-7d,synthetic_fixture_not_evidence,limina,H-C,7 d,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R3-14d,synthetic_fixture_not_evidence,limina,H-C,14 d,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R3-28difearlygatespass,synthetic_fixture_not_evidence,limina,H-C,28 d if early gates pass,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,3.0,80,high,,standard_laminin,,,synthetic_neural_medium,fixture,37,7.40,7.41,300,302,14.0,14.1,false,false,0.05,0,0.92,,,,,synthetic_hiPSC_cortical_neuron_fixture,synthetic,0.92,1.05,0.74,215,0.79,1.95,0.39,,,synthetic_fixture_not_material_evidence diff --git a/data/fixtures/zrc_nd_bio_runs_full_pass_fixture.csv b/data/fixtures/zrc_nd_bio_runs_full_pass_fixture.csv deleted file mode 100644 index c89d9c6..0000000 --- a/data/fixtures/zrc_nd_bio_runs_full_pass_fixture.csv +++ /dev/null @@ -1,55 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,cell_model,medium_condition,exposure_time_h,viability_metabolic_pct_control,ldh_release_pct_control,neurite_length_pct_control,neurite_branching_pct_control,cell_body_count_pct_control,network_spike_rate_pct_control,burst_rate_pct_control,synchrony_pct_control,morphology_notes,gate_results,notes -fixture-D1-bio_no_module_control-R1-24h,2026-05-23,fixture,D1,24 h,1,bio_no_module_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,100,100,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_lead_zrc_nd_3p5m_guard-R1-24h,2026-05-23,fixture,D1,24 h,1,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,96,104,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_baseline_rc_3p5m_guard-R1-24h,2026-05-23,fixture,D1,24 h,1,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,95,106,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_challenge_zrc_nd_10m_guard-R1-24h,2026-05-23,fixture,D1,24 h,1,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,88,132,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_positive_toxicity_control-R1-24h,2026-05-23,fixture,D1,24 h,1,bio_positive_toxicity_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,45,240,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_no_module_control-R1-72h,2026-05-23,fixture,D1,72 h,1,bio_no_module_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,100,100,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_lead_zrc_nd_3p5m_guard-R1-72h,2026-05-23,fixture,D1,72 h,1,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,96,104,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_baseline_rc_3p5m_guard-R1-72h,2026-05-23,fixture,D1,72 h,1,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,95,106,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_challenge_zrc_nd_10m_guard-R1-72h,2026-05-23,fixture,D1,72 h,1,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,88,132,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_positive_toxicity_control-R1-72h,2026-05-23,fixture,D1,72 h,1,bio_positive_toxicity_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,45,240,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D2-bio_no_module_control-R1-72h,2026-05-23,fixture,D2,72 h,1,bio_no_module_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,100,100,100,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D2-bio_lead_zrc_nd_3p5m_guard-R1-72h,2026-05-23,fixture,D2,72 h,1,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,94,93,96,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D2-bio_baseline_rc_3p5m_guard-R1-72h,2026-05-23,fixture,D2,72 h,1,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,95,94,97,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D2-bio_challenge_zrc_nd_10m_guard-R1-72h,2026-05-23,fixture,D2,72 h,1,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,82,80,88,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D3-bio_no_module_control-R1-72h,2026-05-23,fixture,D3,72 h,1,bio_no_module_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,,,,100,100,100,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D3-bio_lead_zrc_nd_3p5m_guard-R1-72h,2026-05-23,fixture,D3,72 h,1,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,,,,98,102,96,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D3-bio_baseline_rc_3p5m_guard-R1-72h,2026-05-23,fixture,D3,72 h,1,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,,,,100,98,101,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D3-bio_challenge_zrc_nd_10m_guard-R1-72h,2026-05-23,fixture,D3,72 h,1,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,,,,150,65,60,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_no_module_control-R2-24h,2026-05-23,fixture,D1,24 h,2,bio_no_module_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,100,100,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_lead_zrc_nd_3p5m_guard-R2-24h,2026-05-23,fixture,D1,24 h,2,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,96,104,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_baseline_rc_3p5m_guard-R2-24h,2026-05-23,fixture,D1,24 h,2,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,95,106,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_challenge_zrc_nd_10m_guard-R2-24h,2026-05-23,fixture,D1,24 h,2,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,88,132,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_positive_toxicity_control-R2-24h,2026-05-23,fixture,D1,24 h,2,bio_positive_toxicity_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,45,240,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_no_module_control-R2-72h,2026-05-23,fixture,D1,72 h,2,bio_no_module_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,100,100,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_lead_zrc_nd_3p5m_guard-R2-72h,2026-05-23,fixture,D1,72 h,2,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,96,104,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_baseline_rc_3p5m_guard-R2-72h,2026-05-23,fixture,D1,72 h,2,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,95,106,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_challenge_zrc_nd_10m_guard-R2-72h,2026-05-23,fixture,D1,72 h,2,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,88,132,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_positive_toxicity_control-R2-72h,2026-05-23,fixture,D1,72 h,2,bio_positive_toxicity_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,45,240,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D2-bio_no_module_control-R2-72h,2026-05-23,fixture,D2,72 h,2,bio_no_module_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,100,100,100,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D2-bio_lead_zrc_nd_3p5m_guard-R2-72h,2026-05-23,fixture,D2,72 h,2,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,94,93,96,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D2-bio_baseline_rc_3p5m_guard-R2-72h,2026-05-23,fixture,D2,72 h,2,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,95,94,97,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D2-bio_challenge_zrc_nd_10m_guard-R2-72h,2026-05-23,fixture,D2,72 h,2,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,82,80,88,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D3-bio_no_module_control-R2-72h,2026-05-23,fixture,D3,72 h,2,bio_no_module_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,,,,100,100,100,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D3-bio_lead_zrc_nd_3p5m_guard-R2-72h,2026-05-23,fixture,D3,72 h,2,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,,,,98,102,96,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D3-bio_baseline_rc_3p5m_guard-R2-72h,2026-05-23,fixture,D3,72 h,2,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,,,,100,98,101,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D3-bio_challenge_zrc_nd_10m_guard-R2-72h,2026-05-23,fixture,D3,72 h,2,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,,,,150,65,60,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_no_module_control-R3-24h,2026-05-23,fixture,D1,24 h,3,bio_no_module_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,100,100,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_lead_zrc_nd_3p5m_guard-R3-24h,2026-05-23,fixture,D1,24 h,3,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,96,104,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_baseline_rc_3p5m_guard-R3-24h,2026-05-23,fixture,D1,24 h,3,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,95,106,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_challenge_zrc_nd_10m_guard-R3-24h,2026-05-23,fixture,D1,24 h,3,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,88,132,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_positive_toxicity_control-R3-24h,2026-05-23,fixture,D1,24 h,3,bio_positive_toxicity_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,24,45,240,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_no_module_control-R3-72h,2026-05-23,fixture,D1,72 h,3,bio_no_module_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,100,100,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_lead_zrc_nd_3p5m_guard-R3-72h,2026-05-23,fixture,D1,72 h,3,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,96,104,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_baseline_rc_3p5m_guard-R3-72h,2026-05-23,fixture,D1,72 h,3,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,95,106,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_challenge_zrc_nd_10m_guard-R3-72h,2026-05-23,fixture,D1,72 h,3,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,88,132,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D1-bio_positive_toxicity_control-R3-72h,2026-05-23,fixture,D1,72 h,3,bio_positive_toxicity_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,45,240,,,,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D2-bio_no_module_control-R3-72h,2026-05-23,fixture,D2,72 h,3,bio_no_module_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,100,100,100,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D2-bio_lead_zrc_nd_3p5m_guard-R3-72h,2026-05-23,fixture,D2,72 h,3,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,94,93,96,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D2-bio_baseline_rc_3p5m_guard-R3-72h,2026-05-23,fixture,D2,72 h,3,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,95,94,97,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D2-bio_challenge_zrc_nd_10m_guard-R3-72h,2026-05-23,fixture,D2,72 h,3,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,82,80,88,,,,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D3-bio_no_module_control-R3-72h,2026-05-23,fixture,D3,72 h,3,bio_no_module_control,,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,,,,100,100,100,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D3-bio_lead_zrc_nd_3p5m_guard-R3-72h,2026-05-23,fixture,D3,72 h,3,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,,,,98,102,96,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D3-bio_baseline_rc_3p5m_guard-R3-72h,2026-05-23,fixture,D3,72 h,3,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,,,,100,98,101,synthetic fixture only,,synthetic fixture only; not material evidence -fixture-D3-bio_challenge_zrc_nd_10m_guard-R3-72h,2026-05-23,fixture,D3,72 h,3,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,synthetic_neural_culture_proxy,synthetic_conditioned_medium,72,,,,,,150,65,60,synthetic fixture only,,synthetic fixture only; not material evidence diff --git a/data/fixtures/zrc_nd_phase_a_sentinel_fail_fixture.csv b/data/fixtures/zrc_nd_phase_a_sentinel_fail_fixture.csv deleted file mode 100644 index a9619f8..0000000 --- a/data/fixtures/zrc_nd_phase_a_sentinel_fail_fixture.csv +++ /dev/null @@ -1,9 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,membrane_lot,mwco_kda,membrane_area_cm2,surface_modification,prefilter_lot,housing_material,medium_name,medium_lot,initial_volume_ml,flow_rate_ul_min,exposure_time_h,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,lactate_initial_mM,lactate_final_mM,ammonia_initial_uM,ammonia_final_uM,bdnf_initial_pg_ml,bdnf_final_pg_ml,ngf_initial_pg_ml,ngf_final_pg_ml,albumin_initial,albumin_final,transferrin_initial,transferrin_final,total_protein_initial,total_protein_final,flow_resistance_initial,flow_resistance_final,bubble_events,visible_precipitate,gate_results,notes -ZRCND-A-baseline_rc_3p5m_guard-R1-0h,2026-05-23,fixture,A,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,fixture_membrane_lot,3.5,1.0,none,fixture_guard_lot,coc_cop,test_medium,fixture_medium_lot,1.0,0,0,37,7.40,7.40,300,300,15.0,15.0,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only -ZRCND-A-baseline_rc_3p5m_guard-R1-24h,2026-05-23,fixture,A,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,fixture_membrane_lot,3.5,1.0,none,fixture_guard_lot,coc_cop,test_medium,fixture_medium_lot,1.0,0,24,37,7.40,7.38,300,304,15.0,15.20,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,2026-05-23,fixture,A,0 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,fixture_membrane_lot,10,1.0,pda_polympc_surface_only,fixture_guard_lot,coc_cop,test_medium,fixture_medium_lot,1.0,0,0,37,7.40,7.40,300,300,15.0,15.0,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,2026-05-23,fixture,A,24 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,fixture_membrane_lot,10,1.0,pda_polympc_surface_only,fixture_guard_lot,coc_cop,test_medium,fixture_medium_lot,1.0,0,24,37,7.40,7.36,300,305,15.0,15.25,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,2026-05-23,fixture,A,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,fixture_membrane_lot,3.5,1.0,pda_polympc_surface_only,fixture_guard_lot,coc_cop,test_medium,fixture_medium_lot,1.0,0,0,37,7.40,7.40,300,300,15.0,15.0,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,2026-05-23,fixture,A,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,fixture_membrane_lot,3.5,1.0,pda_polympc_surface_only,fixture_guard_lot,coc_cop,test_medium,fixture_medium_lot,1.0,0,24,37,7.40,7.12,300,330,15.0,16.5,,,,,,,,,,,,,,,,,,true,,synthetic failing sentinel fixture only -ZRCND-A-no_module_static_control-R1-0h,2026-05-23,fixture,A,0 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,test_medium,fixture_medium_lot,1.0,0,0,37,7.40,7.40,300,300,15.0,15.0,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only -ZRCND-A-no_module_static_control-R1-24h,2026-05-23,fixture,A,24 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,test_medium,fixture_medium_lot,1.0,0,24,37,7.40,7.39,300,301,15.0,15.01,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only diff --git a/data/fixtures/zrc_nd_phase_a_sentinel_pass_fixture.csv b/data/fixtures/zrc_nd_phase_a_sentinel_pass_fixture.csv deleted file mode 100644 index 5b9ff14..0000000 --- a/data/fixtures/zrc_nd_phase_a_sentinel_pass_fixture.csv +++ /dev/null @@ -1,9 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,membrane_lot,mwco_kda,membrane_area_cm2,surface_modification,prefilter_lot,housing_material,medium_name,medium_lot,initial_volume_ml,flow_rate_ul_min,exposure_time_h,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,lactate_initial_mM,lactate_final_mM,ammonia_initial_uM,ammonia_final_uM,bdnf_initial_pg_ml,bdnf_final_pg_ml,ngf_initial_pg_ml,ngf_final_pg_ml,albumin_initial,albumin_final,transferrin_initial,transferrin_final,total_protein_initial,total_protein_final,flow_resistance_initial,flow_resistance_final,bubble_events,visible_precipitate,gate_results,notes -ZRCND-A-baseline_rc_3p5m_guard-R1-0h,2026-05-23,fixture,A,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,fixture_membrane_lot,3.5,1.0,none,fixture_guard_lot,coc_cop,test_medium,fixture_medium_lot,1.0,0,0,37,7.40,7.40,300,300,15.0,15.0,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only -ZRCND-A-baseline_rc_3p5m_guard-R1-24h,2026-05-23,fixture,A,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,fixture_membrane_lot,3.5,1.0,none,fixture_guard_lot,coc_cop,test_medium,fixture_medium_lot,1.0,0,24,37,7.40,7.38,300,304,15.0,15.20,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,2026-05-23,fixture,A,0 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,fixture_membrane_lot,10,1.0,pda_polympc_surface_only,fixture_guard_lot,coc_cop,test_medium,fixture_medium_lot,1.0,0,0,37,7.40,7.40,300,300,15.0,15.0,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,2026-05-23,fixture,A,24 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,fixture_membrane_lot,10,1.0,pda_polympc_surface_only,fixture_guard_lot,coc_cop,test_medium,fixture_medium_lot,1.0,0,24,37,7.40,7.36,300,305,15.0,15.25,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,2026-05-23,fixture,A,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,fixture_membrane_lot,3.5,1.0,pda_polympc_surface_only,fixture_guard_lot,coc_cop,test_medium,fixture_medium_lot,1.0,0,0,37,7.40,7.40,300,300,15.0,15.0,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,2026-05-23,fixture,A,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,fixture_membrane_lot,3.5,1.0,pda_polympc_surface_only,fixture_guard_lot,coc_cop,test_medium,fixture_medium_lot,1.0,0,24,37,7.40,7.37,300,305,15.0,15.30,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only -ZRCND-A-no_module_static_control-R1-0h,2026-05-23,fixture,A,0 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,test_medium,fixture_medium_lot,1.0,0,0,37,7.40,7.40,300,300,15.0,15.0,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only -ZRCND-A-no_module_static_control-R1-24h,2026-05-23,fixture,A,24 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,test_medium,fixture_medium_lot,1.0,0,24,37,7.40,7.39,300,301,15.0,15.01,,,,,,,,,,,,,,,,,,false,,synthetic phase A sentinel fixture only diff --git a/data/fixtures/zrc_nd_validation_runs_full_pass_fixture.csv b/data/fixtures/zrc_nd_validation_runs_full_pass_fixture.csv deleted file mode 100644 index 9385770..0000000 --- a/data/fixtures/zrc_nd_validation_runs_full_pass_fixture.csv +++ /dev/null @@ -1,73 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,membrane_lot,mwco_kda,membrane_area_cm2,surface_modification,prefilter_lot,housing_material,medium_name,medium_lot,initial_volume_ml,flow_rate_ul_min,exposure_time_h,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,lactate_initial_mM,lactate_final_mM,ammonia_initial_uM,ammonia_final_uM,bdnf_initial_pg_ml,bdnf_final_pg_ml,ngf_initial_pg_ml,ngf_final_pg_ml,albumin_initial,albumin_final,transferrin_initial,transferrin_final,total_protein_initial,total_protein_final,flow_resistance_initial,flow_resistance_final,bubble_events,visible_precipitate,gate_results,notes -fixture-A-no_module_static_control-R1-0h,,fixture,A,0 h,1,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-A-lead_zrc_nd_3p5m_guard-R1-0h,,fixture,A,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-A-baseline_rc_3p5m_guard-R1-0h,,fixture,A,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-A-challenge_zrc_nd_10m_guard-R1-0h,,fixture,A,0 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-A-no_module_static_control-R1-24h,,fixture,A,24 h,1,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,24,37,7.40,7.39,300,301,15,15.01,10,9.8,1000,990,100,98,100,98,100,99,100,99,100,99,1.0,1.01,0,false,,synthetic fixture only -fixture-A-lead_zrc_nd_3p5m_guard-R1-24h,,fixture,A,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.0,1000,700,100,96,100,95,100,98,100,97,100,97,1.0,1.08,0,false,,synthetic fixture only -fixture-A-baseline_rc_3p5m_guard-R1-24h,,fixture,A,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.5,1000,760,100,94,100,94,100,97,100,96,100,96,1.0,1.16,0,false,,synthetic fixture only -fixture-A-challenge_zrc_nd_10m_guard-R1-24h,,fixture,A,24 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,6.6,1000,650,100,84,100,85,100,91,100,90,100,90,1.0,1.09,0,false,,synthetic fixture only -fixture-A-no_module_static_control-R2-0h,,fixture,A,0 h,2,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-A-lead_zrc_nd_3p5m_guard-R2-0h,,fixture,A,0 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-A-baseline_rc_3p5m_guard-R2-0h,,fixture,A,0 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-A-challenge_zrc_nd_10m_guard-R2-0h,,fixture,A,0 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-A-no_module_static_control-R2-24h,,fixture,A,24 h,2,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,24,37,7.40,7.39,300,301,15,15.01,10,9.8,1000,990,100,98,100,98,100,99,100,99,100,99,1.0,1.01,0,false,,synthetic fixture only -fixture-A-lead_zrc_nd_3p5m_guard-R2-24h,,fixture,A,24 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.0,1000,700,100,96,100,95,100,98,100,97,100,97,1.0,1.08,0,false,,synthetic fixture only -fixture-A-baseline_rc_3p5m_guard-R2-24h,,fixture,A,24 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.5,1000,760,100,94,100,94,100,97,100,96,100,96,1.0,1.16,0,false,,synthetic fixture only -fixture-A-challenge_zrc_nd_10m_guard-R2-24h,,fixture,A,24 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,6.6,1000,650,100,84,100,85,100,91,100,90,100,90,1.0,1.09,0,false,,synthetic fixture only -fixture-A-no_module_static_control-R3-0h,,fixture,A,0 h,3,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-A-lead_zrc_nd_3p5m_guard-R3-0h,,fixture,A,0 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-A-baseline_rc_3p5m_guard-R3-0h,,fixture,A,0 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-A-challenge_zrc_nd_10m_guard-R3-0h,,fixture,A,0 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-A-no_module_static_control-R3-24h,,fixture,A,24 h,3,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,24,37,7.40,7.39,300,301,15,15.01,10,9.8,1000,990,100,98,100,98,100,99,100,99,100,99,1.0,1.01,0,false,,synthetic fixture only -fixture-A-lead_zrc_nd_3p5m_guard-R3-24h,,fixture,A,24 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.0,1000,700,100,96,100,95,100,98,100,97,100,97,1.0,1.08,0,false,,synthetic fixture only -fixture-A-baseline_rc_3p5m_guard-R3-24h,,fixture,A,24 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.5,1000,760,100,94,100,94,100,97,100,96,100,96,1.0,1.16,0,false,,synthetic fixture only -fixture-A-challenge_zrc_nd_10m_guard-R3-24h,,fixture,A,24 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,6.6,1000,650,100,84,100,85,100,91,100,90,100,90,1.0,1.09,0,false,,synthetic fixture only -fixture-B-no_module_static_control-R1-0h,,fixture,B,0 h,1,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-B-lead_zrc_nd_3p5m_guard-R1-0h,,fixture,B,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-B-baseline_rc_3p5m_guard-R1-0h,,fixture,B,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-B-challenge_zrc_nd_10m_guard-R1-0h,,fixture,B,0 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-B-no_module_static_control-R1-24h,,fixture,B,24 h,1,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,24,37,7.40,7.39,300,301,15,15.01,10,9.8,1000,990,100,98,100,98,100,99,100,99,100,99,1.0,1.01,0,false,,synthetic fixture only -fixture-B-lead_zrc_nd_3p5m_guard-R1-24h,,fixture,B,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.0,1000,700,100,96,100,95,100,98,100,97,100,97,1.0,1.08,0,false,,synthetic fixture only -fixture-B-baseline_rc_3p5m_guard-R1-24h,,fixture,B,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.5,1000,760,100,94,100,94,100,97,100,96,100,96,1.0,1.16,0,false,,synthetic fixture only -fixture-B-challenge_zrc_nd_10m_guard-R1-24h,,fixture,B,24 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,6.6,1000,650,100,84,100,85,100,91,100,90,100,90,1.0,1.09,0,false,,synthetic fixture only -fixture-B-no_module_static_control-R2-0h,,fixture,B,0 h,2,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-B-lead_zrc_nd_3p5m_guard-R2-0h,,fixture,B,0 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-B-baseline_rc_3p5m_guard-R2-0h,,fixture,B,0 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-B-challenge_zrc_nd_10m_guard-R2-0h,,fixture,B,0 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-B-no_module_static_control-R2-24h,,fixture,B,24 h,2,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,24,37,7.40,7.39,300,301,15,15.01,10,9.8,1000,990,100,98,100,98,100,99,100,99,100,99,1.0,1.01,0,false,,synthetic fixture only -fixture-B-lead_zrc_nd_3p5m_guard-R2-24h,,fixture,B,24 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.0,1000,700,100,96,100,95,100,98,100,97,100,97,1.0,1.08,0,false,,synthetic fixture only -fixture-B-baseline_rc_3p5m_guard-R2-24h,,fixture,B,24 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.5,1000,760,100,94,100,94,100,97,100,96,100,96,1.0,1.16,0,false,,synthetic fixture only -fixture-B-challenge_zrc_nd_10m_guard-R2-24h,,fixture,B,24 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,6.6,1000,650,100,84,100,85,100,91,100,90,100,90,1.0,1.09,0,false,,synthetic fixture only -fixture-B-no_module_static_control-R3-0h,,fixture,B,0 h,3,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-B-lead_zrc_nd_3p5m_guard-R3-0h,,fixture,B,0 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-B-baseline_rc_3p5m_guard-R3-0h,,fixture,B,0 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-B-challenge_zrc_nd_10m_guard-R3-0h,,fixture,B,0 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-B-no_module_static_control-R3-24h,,fixture,B,24 h,3,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,24,37,7.40,7.39,300,301,15,15.01,10,9.8,1000,990,100,98,100,98,100,99,100,99,100,99,1.0,1.01,0,false,,synthetic fixture only -fixture-B-lead_zrc_nd_3p5m_guard-R3-24h,,fixture,B,24 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.0,1000,700,100,96,100,95,100,98,100,97,100,97,1.0,1.08,0,false,,synthetic fixture only -fixture-B-baseline_rc_3p5m_guard-R3-24h,,fixture,B,24 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.5,1000,760,100,94,100,94,100,97,100,96,100,96,1.0,1.16,0,false,,synthetic fixture only -fixture-B-challenge_zrc_nd_10m_guard-R3-24h,,fixture,B,24 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,6.6,1000,650,100,84,100,85,100,91,100,90,100,90,1.0,1.09,0,false,,synthetic fixture only -fixture-C-no_module_static_control-R1-0h,,fixture,C,0 h,1,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-C-lead_zrc_nd_3p5m_guard-R1-0h,,fixture,C,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-C-baseline_rc_3p5m_guard-R1-0h,,fixture,C,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-C-challenge_zrc_nd_10m_guard-R1-0h,,fixture,C,0 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-C-no_module_static_control-R1-24h,,fixture,C,24 h,1,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,24,37,7.40,7.39,300,301,15,15.01,10,9.8,1000,990,100,98,100,98,100,99,100,99,100,99,1.0,1.01,0,false,,synthetic fixture only -fixture-C-lead_zrc_nd_3p5m_guard-R1-24h,,fixture,C,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.0,1000,700,100,96,100,95,100,98,100,97,100,97,1.0,1.08,0,false,,synthetic fixture only -fixture-C-baseline_rc_3p5m_guard-R1-24h,,fixture,C,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.5,1000,760,100,94,100,94,100,97,100,96,100,96,1.0,1.16,0,false,,synthetic fixture only -fixture-C-challenge_zrc_nd_10m_guard-R1-24h,,fixture,C,24 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,6.6,1000,650,100,84,100,85,100,91,100,90,100,90,1.0,1.09,0,false,,synthetic fixture only -fixture-C-no_module_static_control-R2-0h,,fixture,C,0 h,2,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-C-lead_zrc_nd_3p5m_guard-R2-0h,,fixture,C,0 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-C-baseline_rc_3p5m_guard-R2-0h,,fixture,C,0 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-C-challenge_zrc_nd_10m_guard-R2-0h,,fixture,C,0 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-C-no_module_static_control-R2-24h,,fixture,C,24 h,2,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,24,37,7.40,7.39,300,301,15,15.01,10,9.8,1000,990,100,98,100,98,100,99,100,99,100,99,1.0,1.01,0,false,,synthetic fixture only -fixture-C-lead_zrc_nd_3p5m_guard-R2-24h,,fixture,C,24 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.0,1000,700,100,96,100,95,100,98,100,97,100,97,1.0,1.08,0,false,,synthetic fixture only -fixture-C-baseline_rc_3p5m_guard-R2-24h,,fixture,C,24 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.5,1000,760,100,94,100,94,100,97,100,96,100,96,1.0,1.16,0,false,,synthetic fixture only -fixture-C-challenge_zrc_nd_10m_guard-R2-24h,,fixture,C,24 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,6.6,1000,650,100,84,100,85,100,91,100,90,100,90,1.0,1.09,0,false,,synthetic fixture only -fixture-C-no_module_static_control-R3-0h,,fixture,C,0 h,3,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-C-lead_zrc_nd_3p5m_guard-R3-0h,,fixture,C,0 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-C-baseline_rc_3p5m_guard-R3-0h,,fixture,C,0 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-C-challenge_zrc_nd_10m_guard-R3-0h,,fixture,C,0 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,0,37,7.40,7.40,300,300,15,15,10,10,1000,1000,100,100,100,100,100,100,100,100,100,100,1.0,1.0,0,false,,synthetic fixture only -fixture-C-no_module_static_control-R3-24h,,fixture,C,24 h,3,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,24,37,7.40,7.39,300,301,15,15.01,10,9.8,1000,990,100,98,100,98,100,99,100,99,100,99,1.0,1.01,0,false,,synthetic fixture only -fixture-C-lead_zrc_nd_3p5m_guard-R3-24h,,fixture,C,24 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.0,1000,700,100,96,100,95,100,98,100,97,100,97,1.0,1.08,0,false,,synthetic fixture only -fixture-C-baseline_rc_3p5m_guard-R3-24h,,fixture,C,24 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.5,1000,760,100,94,100,94,100,97,100,96,100,96,1.0,1.16,0,false,,synthetic fixture only -fixture-C-challenge_zrc_nd_10m_guard-R3-24h,,fixture,C,24 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,6.6,1000,650,100,84,100,85,100,91,100,90,100,90,1.0,1.09,0,false,,synthetic fixture only diff --git a/data/fixtures/zrc_nd_validation_runs_pass_fixture.csv b/data/fixtures/zrc_nd_validation_runs_pass_fixture.csv deleted file mode 100644 index e7459d3..0000000 --- a/data/fixtures/zrc_nd_validation_runs_pass_fixture.csv +++ /dev/null @@ -1,5 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,membrane_lot,mwco_kda,membrane_area_cm2,surface_modification,prefilter_lot,housing_material,medium_name,medium_lot,initial_volume_ml,flow_rate_ul_min,exposure_time_h,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,lactate_initial_mM,lactate_final_mM,ammonia_initial_uM,ammonia_final_uM,bdnf_initial_pg_ml,bdnf_final_pg_ml,ngf_initial_pg_ml,ngf_final_pg_ml,albumin_initial,albumin_final,transferrin_initial,transferrin_final,total_protein_initial,total_protein_final,flow_resistance_initial,flow_resistance_final,bubble_events,visible_precipitate,gate_results,notes -fixture-control,,fixture,B,24 h,1,no_module_static_control,,no_module_static_control,,0,,none,,none,test_medium,fixture,1.0,100,24,37,7.40,7.39,300,301,15,15.01,10,9.8,1000,990,100,98,100,98,100,99,100,99,100,99,1.0,1.01,0,false,,synthetic fixture only -fixture-lead,,fixture,B,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.37,300,305,15,15.30,10,7.0,1000,700,100,96,100,95,100,98,100,97,100,97,1.0,1.08,0,false,,synthetic fixture only -fixture-baseline,,fixture,B,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.38,300,304,15,15.20,10,7.5,1000,760,100,94,100,94,100,97,100,96,100,96,1.0,1.16,0,false,,synthetic fixture only -fixture-challenge,,fixture,B,24 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,test_medium,fixture,1.0,100,24,37,7.40,7.36,300,305,15,15.25,10,6.6,1000,650,100,84,100,85,100,91,100,90,100,90,1.0,1.09,0,false,,synthetic fixture only diff --git a/data/limina.duckdb b/data/limina.duckdb deleted file mode 100644 index 03a0fc2..0000000 Binary files a/data/limina.duckdb and /dev/null differ diff --git a/data/limina_claim_guard_regression.json b/data/limina_claim_guard_regression.json deleted file mode 100644 index d840c38..0000000 --- a/data/limina_claim_guard_regression.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "assertions": [ - { - "detail": "all steps returned 0", - "name": "all_commands_succeeded", - "passed": true - }, - { - "detail": "coupon evaluator status=nhi_pedot_passes_gates", - "name": "coupon_fixture_exercises_full_pass", - "passed": true - }, - { - "detail": "long evaluator status=nhi_pedot_long_passes_gates", - "name": "long_fixture_exercises_full_pass", - "passed": true - }, - { - "detail": "zrc evaluator status=lead_passes_non_cell_gates", - "name": "zrc_fixture_exercises_full_pass", - "passed": true - }, - { - "detail": "zrc bio evaluator status=bio_followup_passes_gates", - "name": "zrc_bio_fixture_exercises_full_pass", - "passed": true - }, - { - "detail": "zrc readiness=suitable; suitable=True", - "name": "zrc_readiness_fixture_can_reach_suitable", - "passed": true - }, - { - "detail": "h_a status=h_a_invalid_provenance; h_a_qc intake_ready=False", - "name": "h_a_fixture_rejected_before_interpretation", - "passed": true - }, - { - "detail": "forward status=preregistered_waiting_for_h_a", - "name": "forward_package_not_activated_by_fixture", - "passed": true - }, - { - "detail": "claim_ready=False; status=no_suitable_material_claim_ready", - "name": "audit_refuses_synthetic_claim", - "passed": true - }, - { - "detail": "claimable=False; synthetic=12", - "name": "h_a_source_non_claimable", - "passed": true - }, - { - "detail": "claimable=False; synthetic=168", - "name": "coupon_source_non_claimable", - "passed": true - }, - { - "detail": "claimable=False; synthetic=156", - "name": "long_source_non_claimable", - "passed": true - }, - { - "detail": "claimable=False; synthetic=72", - "name": "zrc_source_non_claimable", - "passed": true - }, - { - "detail": "claimable=False; synthetic=54", - "name": "zrc_bio_source_non_claimable", - "passed": true - } - ], - "fixtures": { - "coupon_full_pass": "data/fixtures/nhi_pedot_runs_full_pass_fixture.csv", - "h_a_raw_full_pass": "data/fixtures/nhi_pedot_h_a_raw_full_pass_fixture.csv", - "long_full_pass": "data/fixtures/nhi_pedot_long_full_pass_fixture.csv", - "zrc_bio_full_pass": "data/fixtures/zrc_nd_bio_runs_full_pass_fixture.csv", - "zrc_full_pass": "data/fixtures/zrc_nd_validation_runs_full_pass_fixture.csv" - }, - "status": "pass", - "steps": [ - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/generate_nhi_pedot_h_a_raw_fixture_data.py" - ], - "id": "generate_h_a_raw_fixture", - "returncode": 0, - "stderr": "", - "stdout": "Wrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/nhi_pedot_h_a_raw_full_pass_fixture.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/nhi_pedot_h_a_raw_lead_fail_fixture.csv\nRows per fixture: 228" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/generate_nhi_pedot_fixture_data.py" - ], - "id": "generate_coupon_fixture", - "returncode": 0, - "stderr": "", - "stdout": "Wrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/nhi_pedot_runs_full_pass_fixture.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/nhi_pedot_runs_lead_fail_fixture.csv\nRows per fixture: 168" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/generate_nhi_pedot_long_fixture_data.py" - ], - "id": "generate_long_fixture", - "returncode": 0, - "stderr": "", - "stdout": "Wrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/nhi_pedot_long_full_pass_fixture.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/nhi_pedot_long_lead_fail_fixture.csv\nRows per fixture: 156" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/merge_nhi_pedot_h_a_raw_measurements.py", - "--raw", - "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/nhi_pedot_h_a_raw_full_pass_fixture.csv", - "--out", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_active.csv", - "--json-out", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_merge.json", - "--report", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_merge.md" - ], - "id": "merge_h_a_full_pass_fixture", - "returncode": 0, - "stderr": "", - "stdout": "Merged H-A raw measurements: applied=228 unresolved=0 unknown_run_ids=0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/nhi_pedot_h_a_raw_full_pass_fixture.csv\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_active.csv\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_merge.json\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_merge.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/qc_nhi_pedot_h_a_intake.py", - "--runs", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_active.csv", - "--json-out", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_qc.json", - "--report", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_qc.md" - ], - "id": "qc_h_a_full_pass_fixture", - "returncode": 0, - "stderr": "", - "stdout": "H-A intake QC: h_a_intake_not_ready\nErrors: 36\nWarnings: 0\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_qc.json\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_qc.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/interpret_nhi_pedot_h_a_sentinel.py", - "--runs", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_active.csv", - "--json-out", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_interpretation.json", - "--report", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_interpretation.md" - ], - "id": "interpret_h_a_full_pass_fixture", - "returncode": 0, - "stderr": "", - "stdout": "NHI-PEDOT H-A sentinel: h_a_invalid_provenance\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_interpretation.json\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_interpretation.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/generate_nhi_pedot_forward_gate_package.py", - "--h-a", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_interpretation.json", - "--json-out", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/forward.json", - "--csv-out", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/forward.csv", - "--report", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/forward.md" - ], - "id": "generate_forward_package", - "returncode": 0, - "stderr": "", - "stdout": "NHI-PEDOT forward gate package: preregistered_waiting_for_h_a\nRows: 28\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/forward.json\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/forward.csv\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/forward.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/evaluate_nhi_pedot_runs.py", - "--runs", - "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/nhi_pedot_runs_full_pass_fixture.csv", - "--results", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/coupon_results.json", - "--report", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/coupon_results.md" - ], - "id": "evaluate_coupon_full_pass_fixture", - "returncode": 0, - "stderr": "", - "stdout": "NHI-PEDOT: nhi_pedot_passes_gates\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/coupon_results.json\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/coupon_results.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/evaluate_nhi_pedot_long_runs.py", - "--runs", - "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/nhi_pedot_long_full_pass_fixture.csv", - "--results", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/long_results.json", - "--report", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/long_results.md" - ], - "id": "evaluate_long_full_pass_fixture", - "returncode": 0, - "stderr": "", - "stdout": "NHI-PEDOT long: nhi_pedot_long_passes_gates\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/long_results.json\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/long_results.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/evaluate_zrc_nd_validation_runs.py", - "--runs", - "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/zrc_nd_validation_runs_full_pass_fixture.csv", - "--results", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_results.json", - "--report", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_results.md" - ], - "id": "evaluate_zrc_full_pass_fixture", - "returncode": 0, - "stderr": "", - "stdout": "Evaluated 72 row(s): lead_passes_non_cell_gates\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_results.json\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_results.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/evaluate_zrc_nd_bio_runs.py", - "--runs", - "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/zrc_nd_bio_runs_full_pass_fixture.csv", - "--results", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_bio_results.json", - "--report", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_bio_results.md" - ], - "id": "evaluate_zrc_bio_full_pass_fixture", - "returncode": 0, - "stderr": "", - "stdout": "Evaluated 54 biological row(s): bio_followup_passes_gates\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_bio_results.json\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_bio_results.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/audit_zrc_nd_readiness.py", - "--results", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_results.json", - "--bio-results", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_bio_results.json", - "--json-out", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_readiness.json", - "--out", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_readiness.md" - ], - "id": "audit_zrc_with_full_pass_fixtures", - "returncode": 0, - "stderr": "", - "stdout": "Readiness: suitable\nSuitable: True\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_readiness.json\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_readiness.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/audit_limina_suitability_claim.py", - "--zrc-readiness", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_readiness.json", - "--zrc-runs", - "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/zrc_nd_validation_runs_full_pass_fixture.csv", - "--zrc-bio-runs", - "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/zrc_nd_bio_runs_full_pass_fixture.csv", - "--nhi-h-a", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_interpretation.json", - "--nhi-h-a-runs", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_active.csv", - "--nhi-forward", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/forward.json", - "--nhi-results", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/coupon_results.json", - "--nhi-runs", - "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/nhi_pedot_runs_full_pass_fixture.csv", - "--nhi-long-results", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/long_results.json", - "--nhi-long-runs", - "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/fixtures/nhi_pedot_long_full_pass_fixture.csv", - "--json-out", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/claim_audit.json", - "--report", - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/claim_audit.md" - ], - "id": "audit_claim_with_full_pass_fixtures", - "returncode": 0, - "stderr": "", - "stdout": "Claim ready: False\nStatus: no_suitable_material_claim_ready\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/claim_audit.json\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/claim_audit.md" - } - ], - "summaries": { - "claim_audit": { - "claim_ready": false, - "nhi": { - "blockers": [ - "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "NHI-PEDOT H-B/H-C forward gate package is preregistered and waiting for H-A, not measured evidence.", - "NHI-PEDOT H-A sentinel source has no measured run rows.", - "NHI-PEDOT H-A sentinel source contains synthetic or fixture-marked rows.", - "NHI-PEDOT H-A sentinel source contains placeholder or pending-measurement rows.", - "NHI-PEDOT H-A sentinel source contains missing, rejected, or out-of-policy source_file references.", - "NHI-PEDOT coupon source has no measured run rows.", - "NHI-PEDOT coupon source contains synthetic or fixture-marked rows.", - "NHI-PEDOT coupon source contains placeholder or pending-measurement rows.", - "NHI-PEDOT long-duration source has no measured run rows.", - "NHI-PEDOT long-duration source contains synthetic or fixture-marked rows.", - "NHI-PEDOT long-duration source contains placeholder or pending-measurement rows.", - "NHI-PEDOT coupon result row count (168) does not match CSV rows (0).", - "NHI-PEDOT long-duration result row count (156) does not match CSV rows (0)." - ], - "claim_candidate_id": "limina_alg_lam_pedot_lowdose_v0_2", - "claim_ready": false, - "decision": "not_claim_ready", - "evidence_status": { - "coupon_result_rows": 168, - "coupon_status": "nhi_pedot_passes_gates", - "forward_rows": 28, - "forward_status": "preregistered_waiting_for_h_a", - "h_a_measured_rows": 0, - "h_a_status": "h_a_invalid_provenance", - "long_result_rows": 156, - "long_status": "nhi_pedot_long_passes_gates" - }, - "provenance": { - "coupon": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "data/fixtures/nhi_pedot_runs_full_pass_fixture.csv", - "path_fixture_marker": true, - "placeholder_examples": [ - { - "markers": [ - "source_file=missing" - ], - "row_number": 1, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "markers": [ - "source_file=missing" - ], - "row_number": 2, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-4h" - }, - { - "markers": [ - "source_file=missing" - ], - "row_number": 3, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "markers": [ - "source_file=missing" - ], - "row_number": 4, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "markers": [ - "source_file=missing" - ], - "row_number": 5, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R2-0h" - }, - { - "markers": [ - "source_file=missing" - ], - "row_number": 6, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R2-4h" - }, - { - "markers": [ - "source_file=missing" - ], - "row_number": 7, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R2-24h" - }, - { - "markers": [ - "source_file=missing" - ], - "row_number": 8, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R2-72h" - } - ], - "placeholder_row_count": 168, - "row_count": 168, - "source_file_issue_count": 0, - "source_file_issue_examples": [], - "synthetic_examples": [ - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "medium_lot=fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 1, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "medium_lot=fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 2, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-4h" - }, - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "medium_lot=fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 3, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "medium_lot=fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 4, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "medium_lot=fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 5, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R2-0h" - }, - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "medium_lot=fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 6, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R2-4h" - }, - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "medium_lot=fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 7, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R2-24h" - }, - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "medium_lot=fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 8, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R2-72h" - } - ], - "synthetic_row_count": 168 - }, - "h_a_sentinel": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_active.csv", - "path_fixture_marker": false, - "placeholder_examples": [ - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 3, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 4, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 5, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 6, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 7, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 8, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - } - ], - "placeholder_row_count": 12, - "row_count": 12, - "source_file_issue_count": 12, - "source_file_issue_examples": [ - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 3, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 4, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 5, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 6, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 7, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 8, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - } - ], - "synthetic_examples": [ - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 3, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 4, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 5, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 6, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 7, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 8, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - } - ], - "synthetic_row_count": 12 - }, - "long_duration": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "data/fixtures/nhi_pedot_long_full_pass_fixture.csv", - "path_fixture_marker": true, - "placeholder_examples": [ - { - "markers": [ - "cell_model=tbd", - "source_file=missing" - ], - "row_number": 1, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d" - }, - { - "markers": [ - "cell_model=tbd", - "source_file=missing" - ], - "row_number": 2, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d" - }, - { - "markers": [ - "cell_model=tbd", - "source_file=missing" - ], - "row_number": 3, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d" - }, - { - "markers": [ - "cell_model=tbd", - "source_file=missing" - ], - "row_number": 4, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d" - }, - { - "markers": [ - "cell_model=tbd", - "source_file=missing" - ], - "row_number": 5, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d" - }, - { - "markers": [ - "cell_model=tbd", - "source_file=missing" - ], - "row_number": 6, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d" - }, - { - "markers": [ - "cell_model=tbd", - "source_file=missing" - ], - "row_number": 7, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d" - }, - { - "markers": [ - "cell_model=tbd", - "source_file=missing" - ], - "row_number": 8, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d" - } - ], - "placeholder_row_count": 156, - "row_count": 156, - "source_file_issue_count": 0, - "source_file_issue_examples": [], - "synthetic_examples": [ - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 1, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d" - }, - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 2, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d" - }, - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 3, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d" - }, - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 4, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d" - }, - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 5, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d" - }, - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 6, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d" - }, - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 7, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d" - }, - { - "markers": [ - "date=fixture", - "date=fixture_not_evidence", - "date=not_evidence", - "date=synthetic_fixture", - "notes=fixture", - "notes=fixture_not_material", - "notes=synthetic_fixture" - ], - "row_number": 8, - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d" - } - ], - "synthetic_row_count": 156 - } - }, - "technology_id": "limina_nhi_pedot_laminin_v0_1" - }, - "status": "no_suitable_material_claim_ready", - "zrc": { - "blockers": [ - "ZRC-ND non-cell source has no measured run rows.", - "ZRC-ND non-cell source contains synthetic or fixture-marked rows.", - "ZRC-ND non-cell source contains placeholder or pending-measurement rows.", - "ZRC-ND biological source has no measured run rows.", - "ZRC-ND biological source contains synthetic or fixture-marked rows.", - "ZRC-ND biological source contains placeholder or pending-measurement rows." - ], - "claim_candidate_id": "limina_zrc_nd_v0_1", - "claim_ready": false, - "decision": "not_claim_ready", - "evidence_status": { - "readiness": "suitable", - "suitable": true - }, - "provenance": { - "biological": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "data/fixtures/zrc_nd_bio_runs_full_pass_fixture.csv", - "path_fixture_marker": true, - "placeholder_examples": [ - { - "markers": [ - "source_file=missing" - ], - "row_number": 1, - "run_id": "fixture-D1-bio_no_module_control-R1-24h" - }, - { - "markers": [ - "source_file=missing" - ], - "row_number": 2, - "run_id": "fixture-D1-bio_lead_zrc_nd_3p5m_guard-R1-24h" - }, - { - "markers": [ - "source_file=missing" - ], - "row_number": 3, - "run_id": "fixture-D1-bio_baseline_rc_3p5m_guard-R1-24h" - }, - { - "markers": [ - "source_file=missing" - ], - "row_number": 4, - "run_id": "fixture-D1-bio_challenge_zrc_nd_10m_guard-R1-24h" - }, - { - "markers": [ - "source_file=missing" - ], - "row_number": 5, - "run_id": "fixture-D1-bio_positive_toxicity_control-R1-24h" - }, - { - "markers": [ - "source_file=missing" - ], - "row_number": 6, - "run_id": "fixture-D1-bio_no_module_control-R1-72h" - }, - { - "markers": [ - "source_file=missing" - ], - "row_number": 7, - "run_id": "fixture-D1-bio_lead_zrc_nd_3p5m_guard-R1-72h" - }, - { - "markers": [ - "source_file=missing" - ], - "row_number": 8, - "run_id": "fixture-D1-bio_baseline_rc_3p5m_guard-R1-72h" - } - ], - "placeholder_row_count": 54, - "row_count": 54, - "source_file_issue_count": 0, - "source_file_issue_examples": [], - "synthetic_examples": [ - { - "markers": [ - "morphology_notes=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 1, - "run_id": "fixture-D1-bio_no_module_control-R1-24h" - }, - { - "markers": [ - "morphology_notes=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 2, - "run_id": "fixture-D1-bio_lead_zrc_nd_3p5m_guard-R1-24h" - }, - { - "markers": [ - "morphology_notes=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 3, - "run_id": "fixture-D1-bio_baseline_rc_3p5m_guard-R1-24h" - }, - { - "markers": [ - "morphology_notes=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 4, - "run_id": "fixture-D1-bio_challenge_zrc_nd_10m_guard-R1-24h" - }, - { - "markers": [ - "morphology_notes=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 5, - "run_id": "fixture-D1-bio_positive_toxicity_control-R1-24h" - }, - { - "markers": [ - "morphology_notes=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 6, - "run_id": "fixture-D1-bio_no_module_control-R1-72h" - }, - { - "markers": [ - "morphology_notes=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 7, - "run_id": "fixture-D1-bio_lead_zrc_nd_3p5m_guard-R1-72h" - }, - { - "markers": [ - "morphology_notes=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 8, - "run_id": "fixture-D1-bio_baseline_rc_3p5m_guard-R1-72h" - } - ], - "synthetic_row_count": 54 - }, - "non_cell": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "data/fixtures/zrc_nd_validation_runs_full_pass_fixture.csv", - "path_fixture_marker": true, - "placeholder_examples": [ - { - "markers": [ - "date=missing", - "source_file=missing" - ], - "row_number": 1, - "run_id": "fixture-A-no_module_static_control-R1-0h" - }, - { - "markers": [ - "date=missing", - "source_file=missing" - ], - "row_number": 2, - "run_id": "fixture-A-lead_zrc_nd_3p5m_guard-R1-0h" - }, - { - "markers": [ - "date=missing", - "source_file=missing" - ], - "row_number": 3, - "run_id": "fixture-A-baseline_rc_3p5m_guard-R1-0h" - }, - { - "markers": [ - "date=missing", - "source_file=missing" - ], - "row_number": 4, - "run_id": "fixture-A-challenge_zrc_nd_10m_guard-R1-0h" - }, - { - "markers": [ - "date=missing", - "source_file=missing" - ], - "row_number": 5, - "run_id": "fixture-A-no_module_static_control-R1-24h" - }, - { - "markers": [ - "date=missing", - "source_file=missing" - ], - "row_number": 6, - "run_id": "fixture-A-lead_zrc_nd_3p5m_guard-R1-24h" - }, - { - "markers": [ - "date=missing", - "source_file=missing" - ], - "row_number": 7, - "run_id": "fixture-A-baseline_rc_3p5m_guard-R1-24h" - }, - { - "markers": [ - "date=missing", - "source_file=missing" - ], - "row_number": 8, - "run_id": "fixture-A-challenge_zrc_nd_10m_guard-R1-24h" - } - ], - "placeholder_row_count": 72, - "row_count": 72, - "source_file_issue_count": 0, - "source_file_issue_examples": [], - "synthetic_examples": [ - { - "markers": [ - "medium_lot=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 1, - "run_id": "fixture-A-no_module_static_control-R1-0h" - }, - { - "markers": [ - "medium_lot=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 2, - "run_id": "fixture-A-lead_zrc_nd_3p5m_guard-R1-0h" - }, - { - "markers": [ - "medium_lot=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 3, - "run_id": "fixture-A-baseline_rc_3p5m_guard-R1-0h" - }, - { - "markers": [ - "medium_lot=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 4, - "run_id": "fixture-A-challenge_zrc_nd_10m_guard-R1-0h" - }, - { - "markers": [ - "medium_lot=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 5, - "run_id": "fixture-A-no_module_static_control-R1-24h" - }, - { - "markers": [ - "medium_lot=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 6, - "run_id": "fixture-A-lead_zrc_nd_3p5m_guard-R1-24h" - }, - { - "markers": [ - "medium_lot=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 7, - "run_id": "fixture-A-baseline_rc_3p5m_guard-R1-24h" - }, - { - "markers": [ - "medium_lot=fixture", - "notes=fixture", - "operator_or_agent=fixture", - "run_id=fixture" - ], - "row_number": 8, - "run_id": "fixture-A-challenge_zrc_nd_10m_guard-R1-24h" - } - ], - "synthetic_row_count": 72 - } - }, - "technology_id": "limina_zrc_nd_v0_1" - } - }, - "coupon": { - "rows": 168, - "status": "nhi_pedot_passes_gates" - }, - "forward": { - "rows": 28, - "status": "preregistered_waiting_for_h_a" - }, - "h_a": { - "intake_ready": false, - "provenance": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_active.csv", - "path_fixture_marker": false, - "placeholder_examples": [ - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 3, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 4, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 5, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 6, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 7, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "markers": [ - "notes=pending_real_measurement" - ], - "row_number": 8, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - } - ], - "placeholder_row_count": 12, - "row_count": 12, - "source_file_issue_count": 12, - "source_file_issue_examples": [ - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 3, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 4, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 5, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 6, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 7, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "issues": [ - "synthetic_fixture_not_material_evidence.csv: rejected source marker" - ], - "row_number": 8, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - } - ], - "synthetic_examples": [ - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 3, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 4, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 5, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 6, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 7, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "markers": [ - "notes=fixture", - "notes=not_evidence", - "notes=synthetic_fixture", - "operator_or_agent=fixture", - "operator_or_agent=synthetic_fixture", - "source_file=fixture", - "source_file=fixture_not_material", - "source_file=synthetic_fixture" - ], - "row_number": 8, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - } - ], - "synthetic_row_count": 12 - }, - "status": "h_a_invalid_provenance" - }, - "long": { - "rows": 156, - "status": "nhi_pedot_long_passes_gates" - }, - "zrc": { - "rows": 72, - "status": "lead_passes_non_cell_gates" - }, - "zrc_bio": { - "rows": 54, - "status": "bio_followup_passes_gates" - }, - "zrc_readiness": { - "readiness": "suitable", - "suitable": true - } - }, - "temporary_outputs": { - "audit_json": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/claim_audit.json", - "audit_report": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/claim_audit.md", - "coupon_json": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/coupon_results.json", - "coupon_report": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/coupon_results.md", - "forward_csv": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/forward.csv", - "forward_json": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/forward.json", - "forward_report": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/forward.md", - "h_a_active": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_active.csv", - "h_a_json": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_interpretation.json", - "h_a_merge_json": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_merge.json", - "h_a_merge_report": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_merge.md", - "h_a_qc_json": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_qc.json", - "h_a_qc_report": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_qc.md", - "h_a_report": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/h_a_interpretation.md", - "long_json": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/long_results.json", - "long_report": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/long_results.md", - "zrc_bio_json": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_bio_results.json", - "zrc_bio_report": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_bio_results.md", - "zrc_json": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_results.json", - "zrc_readiness_json": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_readiness.json", - "zrc_readiness_report": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_readiness.md", - "zrc_report": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20/zrc_results.md" - }, - "tmp_dir": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_claim_guard_regression_jer61x20" -} \ No newline at end of file diff --git a/data/limina_discovery_candidates.json b/data/limina_discovery_candidates.json deleted file mode 100644 index 76a4816..0000000 --- a/data/limina_discovery_candidates.json +++ /dev/null @@ -1,432 +0,0 @@ -[ - { - "id": "limina_alg_lam_pedot_lowdose_v0_2", - "name": "ALG-LAM-PEDOT Low-Dose Neural Hydrogel Interphase", - "lane": "LIMINA-Cell-1", - "status": "promote_to_recipe_specific_validation", - "one_line": "A recipe-specific evolution of NHI-PEDOT that anchors the lead around alginate-laminin PEDOT:PSS hydrogel evidence instead of keeping the matrix choice broad.", - "material_stack": [ - "MEA witness coupon with masked electrode windows", - "alginate-rich soft hydrogel matrix tuned near brain-like low-kPa mechanics", - "laminin or laminin-derived adhesive presentation", - "lowest PEDOT:PSS loading that gives a measurable impedance or charge-storage gain after medium soak" - ], - "why_it_matters": "This is the shortest path to a real suitability claim because it has direct 28-day human iPSC cortical neuron culture evidence and can reuse the existing H-A/H-B/H-C plus long-duration NHI-PEDOT gates.", - "near_term_test": "Lock the H-A sentinel to alginate-laminin low-dose PEDOT:PSS and fill acellular medium, physical stability, and electrochemical fields before any live-cell expansion.", - "evidence_refs": [ - "pedot_neural_culture_hydrogel_2025", - "pedot_brain_monitoring_2025", - "hydrogel_neural_tissue_2020", - "dnt_nam_viability_neurite_mea_2022" - ], - "known_risks": [ - "PEDOT:PSS or PSS-related extractables could still harm long-lived cultures.", - "Hydrogel swelling or delamination can erase electrochemical benefits.", - "Published neural culture format must be adapted to the actual MEA geometry." - ], - "scores": { - "direct_neural_cell_evidence": 5, - "time_to_first_gate": 5, - "measurement_accessibility": 4, - "optimization_space": 4, - "novelty_upside": 3.5, - "integration_risk_control": 3.5, - "manufacturability": 3.5, - "proof_gap_clarity": 5 - } - }, - { - "id": "limina_pda_anchor_alg_lam_pedot_window_v0_1", - "name": "PDA-Anchored ALG-LAM-PEDOT Electrode-Window Interphase", - "lane": "LIMINA-Cell-1", - "status": "parallel_design_variant", - "one_line": "A mechanically safer version of the low-dose alginate-laminin PEDOT:PSS lead that treats electrode-window adhesion and insulation boundaries as first-class material variables.", - "material_stack": [ - "polydopamine or oxygen-plasma primer on MEA witness coupons", - "alginate-laminin hydrogel matrix", - "localized low-dose PEDOT:PSS microdomains near electrode windows", - "hydrogel-only and laminin-only matched controls" - ], - "why_it_matters": "If the current NHI-PEDOT lead fails by delamination or window occlusion rather than biology, this variant gives a fast rescue path without changing the main biological presentation concept.", - "near_term_test": "Add one anchored lead article to H-B electrochemical/physical stability only after the acellular H-A blank passes for the unanchored low-dose lead.", - "evidence_refs": [ - "pedot_neural_culture_hydrogel_2025", - "pedot_brain_monitoring_2025", - "gelma_pedot_micropatterning_2026", - "neuronal_network_material_biocompatibility_mea_2013" - ], - "known_risks": [ - "Primer chemistry may add its own extractables.", - "Localized conductive domains may be harder to fabricate reproducibly.", - "Anchoring can improve stability while reducing softness at the cell interface." - ], - "scores": { - "direct_neural_cell_evidence": 4, - "time_to_first_gate": 3.5, - "measurement_accessibility": 3.5, - "optimization_space": 4, - "novelty_upside": 4, - "integration_risk_control": 3, - "manufacturability": 3, - "proof_gap_clarity": 4 - } - }, - { - "id": "limina_all_dry_zwitterionic_external_v0_1", - "name": "All-Dry Zwitterionic Gradient External-Fluidic Coating", - "lane": "LIMINA-External-1", - "status": "external_surface_rescue_candidate", - "one_line": "A substrate-independent zwitterionic gradient coating for cartridge housings, tubing inserts, or non-MWCO surfaces to reduce protein adsorption and biofouling.", - "material_stack": [ - "COC, COP, PEEK, glass, or non-critical cartridge surface", - "all-dry zwitterionic gradient coating", - "regenerated-cellulose MWCO membrane kept as the transport-selective element", - "BDNF, NGF, albumin, transferrin, lactate, and ammonium recovery panel" - ], - "why_it_matters": "This can improve the ZRC-ND external branch without risking direct cell-contact exposure, and it is especially useful if the Phase A sentinel shows protein adsorption or fouling rather than MWCO failure.", - "near_term_test": "Run as a coating-on-housing comparator after ZRC-ND Phase A sentinel defines whether adsorption/fouling is the limiting failure mode.", - "evidence_refs": [ - "all_dry_zwitterionic_gradient_2024", - "zwitterionic_membrane_antifouling_2016", - "zwitterionic_cellulose_acetate_hfm_2026", - "organ_chip_perfusion_review_2022" - ], - "known_risks": [ - "Coating could change extractables or optical inspection properties.", - "It may not solve protein loss if the MWCO membrane itself dominates adsorption.", - "Not yet validated in CL1-like neuronal medium." - ], - "scores": { - "direct_neural_cell_evidence": 2, - "time_to_first_gate": 4, - "measurement_accessibility": 4, - "optimization_space": 4, - "novelty_upside": 4, - "integration_risk_control": 4, - "manufacturability": 3, - "proof_gap_clarity": 4 - } - }, - { - "id": "limina_zwitterionic_pedot_hydrogel_v0_1", - "name": "Zwitterionic PEDOT:PSS Hydrated Electrode Hydrogel", - "lane": "LIMINA-Cell-1", - "status": "watch_for_second_wave", - "one_line": "A hydrated conductive hydrogel direction that combines zwitterionic antifouling chemistry with PEDOT:PSS mixed conduction.", - "material_stack": [ - "zwitterionic hydrogel network", - "PEDOT:PSS mixed-conducting phase", - "MEA electrode-window pattern", - "laminin or ECM-mimetic top presentation if direct neural culture is attempted" - ], - "why_it_matters": "It may solve the core NHI-PEDOT tension between hydrated cell compatibility and electrical coupling, but the current evidence is more implant/electrode oriented than CL1-like culture oriented.", - "near_term_test": "Do not displace ALG-LAM-PEDOT yet; use as a later comparator if acellular extract and impedance data look better than the alginate-laminin lead.", - "evidence_refs": [ - "zwitterionic_pedot_eeg_hydrogel_2025", - "pedot_brain_monitoring_2025", - "pedot_bio_sei_2026", - "conductive_hydrogels_2025" - ], - "known_risks": [ - "In vivo electrode evidence does not prove in vitro neuronal network compatibility.", - "Zwitterionic monomers and crosslinkers can create new leachable risks.", - "Fabrication complexity may slow the first suitability claim." - ], - "scores": { - "direct_neural_cell_evidence": 3, - "time_to_first_gate": 2.5, - "measurement_accessibility": 3, - "optimization_space": 4, - "novelty_upside": 4.5, - "integration_risk_control": 2.8, - "manufacturability": 2.5, - "proof_gap_clarity": 3 - } - }, - { - "id": "limina_anisotropic_spedot_psbma_hydrogel_v0_1", - "name": "Anisotropic S-PEDOT/PSBMA Antifouling Hydrogel Electrode", - "lane": "LIMINA-Cell-1", - "status": "high_novelty_antifouling_conductive_hydrogel", - "one_line": "A 2026 conductive antifouling hydrogel direction that aligns PEDOT-family conductive networks inside a zwitterionic hydrated matrix.", - "material_stack": [ - "S-PEDOT or PEDOT-family aligned conductive phase", - "PSBMA-like zwitterionic hydrated network", - "MEA witness coupon or electrode-window hydrogel comparator", - "laminin-compatible top presentation to be proven before any live neural exposure" - ], - "why_it_matters": "It targets the same core tension as the first LIMINA cell-contact route: retain a wet, low-fouling biological interface while improving electrical coupling. The latest evidence makes it a useful second-wave comparator, but not a first-claim replacement until extract and neural gates are available.", - "near_term_test": "Do not displace ALG-LAM-PEDOT. If formulation access is practical, run a tiny acellular witness coupon for pH, osmolality, conductivity, protein adsorption, swelling, delamination, transparency, and 1 kHz impedance before any neural work.", - "evidence_refs": [ - "anisotropic_spedot_psbma_hydrogel_2026", - "zwitterionic_pedot_eeg_hydrogel_2025", - "topologically_entangled_psbma_hydrogel_2026", - "conductive_hydrogels_2025" - ], - "known_risks": [ - "Physiological monitoring evidence is not direct neuronal-network compatibility evidence.", - "Zwitterionic antifouling chemistry may interfere with laminin presentation unless a cell-adhesion layer is engineered.", - "Synthesis and alignment may be harder to reproduce than the current alginate-laminin PEDOT:PSS route." - ], - "scores": { - "direct_neural_cell_evidence": 2.2, - "time_to_first_gate": 2.5, - "measurement_accessibility": 2.5, - "optimization_space": 5, - "novelty_upside": 4.7, - "integration_risk_control": 2.7, - "manufacturability": 2.2, - "proof_gap_clarity": 3.2 - } - }, - { - "id": "limina_pedot_sgagh_ecm_signal_hydrogel_v0_1", - "name": "PEDOT:sGAGh Electronic ECM Signal Hydrogel", - "lane": "LIMINA-Cell-1", - "status": "high_novelty_horizon_scan", - "one_line": "A 2026 electronic-ECM direction that uses sulfated glycosaminoglycan chemistry to couple soft PEDOT hydrogel conduction with growth-factor sequestration and release.", - "material_stack": [ - "soft PEDOT:sGAGh hydrogel or coating", - "MEA witness coupon or OECT-style electrode witness coupon", - "laminin or ECM-mimetic top presentation if neural culture is attempted", - "blank extract and growth-factor recovery panel before live-cell work" - ], - "why_it_matters": "This is one of the most interesting new design spaces because it may move beyond passive biocompatibility into controllable biochemical cue presentation, but it has not yet earned first-claim status for CL1-like neuronal networks.", - "near_term_test": "Keep behind ALG-LAM-PEDOT until a small H-A/H-B witness coupon can show clean extract behavior, stable pH/osmolality/conductivity, retained BDNF/laminin signal, and no delamination.", - "evidence_refs": [ - "pedot_sgagh_electronic_ecm_2026", - "pedot_bio_sei_2026", - "conductive_hydrogels_2025", - "hydrogel_neural_tissue_2020" - ], - "known_risks": [ - "High novelty comes with synthesis, procurement, and reproducibility uncertainty.", - "Growth-factor binding is attractive but could perturb neuronal differentiation or maturation in unwanted directions.", - "No direct long-duration human neuronal-network compatibility evidence yet." - ], - "scores": { - "direct_neural_cell_evidence": 2.8, - "time_to_first_gate": 2.5, - "measurement_accessibility": 2.5, - "optimization_space": 5, - "novelty_upside": 5, - "integration_risk_control": 2.6, - "manufacturability": 2, - "proof_gap_clarity": 3 - } - }, - { - "id": "limina_alg_gel_pedot_ppy_lowoxidant_v0_1", - "name": "Alg-Gel PEDOT/PPy Low-Oxidant Biointerface Comparator", - "lane": "LIMINA-Cell-1", - "status": "electrochemical_comparator_candidate", - "one_line": "A tunable alginate-gelatin conductive hydrogel family that can benchmark conductivity and stability gains against the safer ALG-LAM-PEDOT lead.", - "material_stack": [ - "alginate-gelatin hydrogel", - "PEDOT:PSS-only low-loading arm", - "PPy/PSS or PEDOT-plus-PPy challenge arm", - "extractables-first witness coupon before neural exposure" - ], - "why_it_matters": "It has a large optimization surface for conductivity, impedance, and wet stability, but the PPy route adds residue and leachable risk that makes it a comparator rather than the first living-network claim path.", - "near_term_test": "Use only after ALG-LAM-PEDOT H-A/H-B establishes a baseline; run as an acellular H-B conductivity/stability comparator with strict extract and shedding fields.", - "evidence_refs": [ - "alg_gel_pedot_ppy_biointerface_2026", - "gelma_pedot_composite_2018", - "conductive_hydrogels_2025", - "iso_10993_5_cytotoxicity_extract_fda" - ], - "known_risks": [ - "Fibroblast cytocompatibility is not a neuronal-network compatibility claim.", - "PPy oxidation chemistry can leave residues that matter in long-lived neural cultures.", - "High conductivity may trade off with optical transparency or softness." - ], - "scores": { - "direct_neural_cell_evidence": 2.3, - "time_to_first_gate": 3, - "measurement_accessibility": 3.5, - "optimization_space": 4.5, - "novelty_upside": 3.7, - "integration_risk_control": 2.7, - "manufacturability": 3, - "proof_gap_clarity": 3.5 - } - }, - { - "id": "limina_cameo_cnt_organoid_frame_v0_1", - "name": "CNT Organoid MEA Recording Frame", - "lane": "LIMINA-Cell-1", - "status": "device_side_horizon_scan", - "one_line": "A carbon-nanotube organoid recording platform that informs future organoid-scale CL1 interfaces but is not a first direct-contact material lead.", - "material_stack": [ - "carbon nanotube microelectrode array", - "organoid or neural aggregate culture interface", - "particle-shedding and extractables witness coupon", - "matched non-CNT electrode control" - ], - "why_it_matters": "It points toward higher-surface-area, scalable electrophysiology for organoid formats, which may matter if CL1 moves from 2D cultures toward 3D aggregates.", - "near_term_test": "Do not place in first-claim path; use as a literature/device benchmark until CNT exposure, particle release, and long-duration neural health risks are bounded.", - "evidence_refs": [ - "cameo_cnt_organoid_mea_2026", - "shape_conformal_organoid_framework_2026", - "neuronal_network_material_biocompatibility_mea_2013", - "iso_10993_5_cytotoxicity_extract_fda" - ], - "known_risks": [ - "CNT exposure is a major long-duration neural culture uncertainty.", - "The value may be device geometry rather than material chemistry.", - "Fabrication may not be accessible on the current local project timeline." - ], - "scores": { - "direct_neural_cell_evidence": 3.2, - "time_to_first_gate": 2, - "measurement_accessibility": 2, - "optimization_space": 3.5, - "novelty_upside": 4.2, - "integration_risk_control": 2.4, - "manufacturability": 1.8, - "proof_gap_clarity": 3 - } - }, - { - "id": "limina_op_apa_fillerfree_hydrogel_v0_1", - "name": "OP-APA Filler-Free Adaptive Bioelectronic Hydrogel", - "lane": "LIMINA-Cell-1", - "status": "watch_high_novelty", - "one_line": "A high-novelty filler-free polysaccharide/peptide-amphiphile hydrogel concept that may avoid conductive-particle shedding if independently reproduced.", - "material_stack": [ - "okra mucilage polysaccharide backbone", - "alpha-helical peptide amphiphile network", - "no conductive-particle filler in the baseline concept", - "MEA coupling layer to be defined only after replication" - ], - "why_it_matters": "It points toward a material class that could be biologically gentle and mechanically adaptive, but the proof path is less immediate than the alginate-laminin PEDOT:PSS route.", - "near_term_test": "Keep as literature-watch until formulation access, independent replication, extract chemistry, and neural culture compatibility are clearer.", - "evidence_refs": [ - "op_apa_self_adaptive_hydrogel_2026", - "hydrogel_neural_tissue_2020", - "conductive_hydrogels_2025" - ], - "known_risks": [ - "Preprint-level evidence.", - "Reproducibility and sourcing are uncertain.", - "First proof requires more materials work before coupon validation." - ], - "scores": { - "direct_neural_cell_evidence": 2, - "time_to_first_gate": 2, - "measurement_accessibility": 2, - "optimization_space": 5, - "novelty_upside": 5, - "integration_risk_control": 2.2, - "manufacturability": 2, - "proof_gap_clarity": 2.5 - } - }, - { - "id": "limina_mxene_gel_oha_sensing_hydrogel_v0_1", - "name": "MXene-Gel/OHA Conductive Adhesive Hydrogel Comparator", - "lane": "LIMINA-Cell-1", - "status": "hold_direct_cell_contact", - "one_line": "A high-conductivity adhesive hydrogel comparator for signal coupling, held back from first-claim status because MXene exposure is a major neural-culture risk.", - "material_stack": [ - "gelatin or oxidized hyaluronic-acid adhesive hydrogel", - "MXene conductive filler", - "soft bioelectronic sensor geometry", - "extract and particle-shedding assays before any neural culture" - ], - "why_it_matters": "It can benchmark the maximum conductivity/adhesion upside, but it is unlikely to be the first safe CL1-like cell-contact material without a large toxicity and leachability proof package.", - "near_term_test": "Use only as an acellular extract and impedance comparator after safer PEDOT:PSS and hydrogel-only leads establish a baseline.", - "evidence_refs": [ - "mxene_adhesive_hydrogel_bmi_2025", - "conductive_hydrogels_2025", - "iso_10993_5_cytotoxicity_extract_fda" - ], - "known_risks": [ - "Nanomaterial leaching or particle shedding could dominate neural toxicity.", - "Adhesive performance may not translate to transparent MEA culture.", - "The proof gap is larger than for PEDOT:PSS hydrogel routes." - ], - "scores": { - "direct_neural_cell_evidence": 1.8, - "time_to_first_gate": 2, - "measurement_accessibility": 2.5, - "optimization_space": 4.5, - "novelty_upside": 4, - "integration_risk_control": 1.8, - "manufacturability": 2, - "proof_gap_clarity": 2.5 - } - }, - { - "id": "limina_hydrogel_actuated_multilayer_3d_mea_v0_1", - "name": "Hydrogel-Actuated Multilayer 3D Organoid MEA Interface", - "lane": "LIMINA-Cell-1", - "status": "3d_organoid_horizon_scan", - "one_line": "A future CL1-like 3D neural-computing interface direction that combines hydrogel-actuated geometry with multilayer mesh MEA depth recording.", - "material_stack": [ - "hydrogel-actuated or shape-conformal 3D support frame", - "flexible mesh MEA layers separated by compliant spacers", - "Pt-black or other low-impedance electrode finish", - "organoid or neural aggregate witness model before any CL1-like adoption" - ], - "why_it_matters": "If the project shifts from planar neuronal cultures toward organoids or neural aggregates, depth-resolved and mechanically adaptive electrode geometries may matter as much as hydrogel chemistry.", - "near_term_test": "Keep as a device-architecture horizon scan; extract a simplified witness-coupon plan only after the planar ALG-LAM-PEDOT H-A/H-B route has real data.", - "evidence_refs": [ - "mlmea_organoid_depth_interface_2026", - "eflower_hydrogel_actuated_3d_mea_2024", - "shape_conformal_organoid_framework_2026", - "neuronal_network_material_biocompatibility_mea_2013" - ], - "known_risks": [ - "Fabrication is much harder than a planar witness coupon.", - "Pt-black, PDMS, and actuator hydrogels each need extractables, adsorption, and stability checks.", - "Organoid electrophysiology evidence does not directly prove compatibility with the current CL1-like planar path." - ], - "scores": { - "direct_neural_cell_evidence": 4.1, - "time_to_first_gate": 2, - "measurement_accessibility": 2, - "optimization_space": 4.2, - "novelty_upside": 4.3, - "integration_risk_control": 2.8, - "manufacturability": 1.6, - "proof_gap_clarity": 3.5 - } - }, - { - "id": "limina_entangled_zwitterionic_mechanoadaptive_matrix_v0_1", - "name": "Entangled Zwitterionic Mechanoadaptive Hydrogel Matrix", - "lane": "LIMINA-Cell-1", - "status": "mechanics_low_fouling_horizon_scan", - "one_line": "A low-fouling zwitterionic hydrogel mechanics module that may later tune softness and protein adsorption without conductive filler exposure.", - "material_stack": [ - "PSBMA or related zwitterionic hydrogel network", - "laminin or ECM-mimetic functionalization layer still to be defined", - "hydrogel-only witness coupon before any conductive phase", - "matched alginate-laminin and no-coating controls" - ], - "why_it_matters": "It expands the non-conductive matrix design space: if ALG-LAM-PEDOT fails because of swelling, fouling, or softness mismatch, a zwitterionic mechanoadaptive matrix could become a later rescue substrate.", - "near_term_test": "Do not promote yet; first require extract chemistry, laminin presentation, neural adhesion, and medium-stability witness coupons.", - "evidence_refs": [ - "topologically_entangled_psbma_hydrogel_2026", - "zwitterionic_membrane_antifouling_2016", - "hydrogel_neural_tissue_2020", - "iso_10993_5_cytotoxicity_extract_fda" - ], - "known_risks": [ - "No direct neural-network or MEA evidence yet.", - "Zwitterionic non-fouling behavior may resist the very protein adhesion needed for neurons.", - "Synthesis and functionalization need a clearer near-term recipe before coupon testing." - ], - "scores": { - "direct_neural_cell_evidence": 1.5, - "time_to_first_gate": 2, - "measurement_accessibility": 2.5, - "optimization_space": 4.8, - "novelty_upside": 4.7, - "integration_risk_control": 2.6, - "manufacturability": 2, - "proof_gap_clarity": 2.8 - } - } -] diff --git a/data/limina_discovery_cycle_state.json b/data/limina_discovery_cycle_state.json deleted file mode 100644 index adb7701..0000000 --- a/data/limina_discovery_cycle_state.json +++ /dev/null @@ -1,1077 +0,0 @@ -{ - "active_discovery_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "active_discovery_priority": "promote_now", - "active_discovery_score": 4.285, - "active_material_route": "ALG-LAM-PEDOT low-dose neural hydrogel interphase", - "active_route_gate": "H-A", - "all_candidate_blockers": [ - { - "blockers": [ - "ZRC-ND readiness audit is not suitable; measured non-cell and biological gates are incomplete.", - "ZRC-ND non-cell source has no measured run rows.", - "ZRC-ND biological source has no measured run rows." - ], - "decision": "not_claim_ready", - "technology_id": "limina_zrc_nd_v0_1" - }, - { - "blockers": [ - "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "NHI-PEDOT coupon gates are `no_data`, not `nhi_pedot_passes_gates`.", - "NHI-PEDOT H-B/H-C forward gate package is preregistered and waiting for H-A, not measured evidence.", - "NHI-PEDOT long-duration gates are `no_data`, not `nhi_pedot_long_passes_gates`.", - "NHI-PEDOT H-A sentinel source has no measured run rows.", - "NHI-PEDOT H-A sentinel source contains placeholder or pending-measurement rows.", - "NHI-PEDOT coupon source has no measured run rows.", - "NHI-PEDOT long-duration source has no measured run rows." - ], - "decision": "not_claim_ready", - "technology_id": "limina_nhi_pedot_laminin_v0_1" - } - ], - "claim_ready": false, - "claim_status": "no_suitable_material_claim_ready", - "completion_requirements": [ - "H-A acellular medium-integrity and physical-stability rows must be real, non-placeholder, non-synthetic measurements.", - "H-B electrochemical/physical rows must prove the lead adds electrical value without instability.", - "H-C neural viability, neurite/morphology, and MEA network rows must be non-inferior to controls.", - "Long-duration CL1-like MEA/network follow-up must pass on real rows.", - "The final limina_suitability_claim_audit must report claim_ready true for a candidate." - ], - "evidence_gaps": [ - "Portfolio bypass audit: no_h_a_bypass_claim_ready; audit_rows=12; non_h_a_candidates=1; non_h_a_claim_ready=0; top_non_h_a=limina_all_dry_zwitterionic_external_v0_1; recommended_action=run_zrc_phase_a_real_measurements_before_any_non_h_a_claim", - "H-A measured rows: 0 of 12", - "H-A placeholder rows: 12", - "H-A bench sheet: tasks=12; blank_raw_entries=228", - "H-A service request: ready_to_request_real_measurements; raw_entries=228", - "H-A sample handoff: ready_for_sample_handoff; labels=36; custody_rows=36; pending_transfers=36", - "H-A sample submission: sample_submission_precheck_ready; shipping_status=do_not_ship_until_vendor_confirms_quote_sample_acceptance_sds_and_custody", - "H-A split-scope plan: split_scope_plan_ready; pairs=7; preferred_pairs=5", - "H-A vendor outreach: ready_for_vendor_screening; first_wave_contacts=4", - "H-A RFQ packet: ready_to_send_rfq; quote_tracker=pending_outreach", - "H-A RFQ outbox: ready_to_send_outbox; ready_to_send=4 of 4", - "H-A RFQ EML drafts: h_a_rfq_eml_drafts_ready; rows=4; ready=4; missing_to=0; missing_bundle=0", - "H-A RFQ EML integrity audit: h_a_rfq_eml_integrity_ready; rows=4; pass=4; fail=0; attachment_mismatch=0", - "H-A RFQ send action pack: h_a_rfq_send_action_pack_ready; rows=4; ready=4; verified=0", - "H-A RFQ dispatch manifest: h_a_rfq_dispatch_manifest_ready; rows=4; ready=4; blocked=0; bundle_matches=4", - "H-A RFQ send cockpit: h_a_rfq_send_cockpit_ready_for_manual_send; rows=4; ready=4; confirmations=0; replies=0; missing_eml=0; missing_bundle=0", - "H-A RFQ dispatch archive: h_a_rfq_dispatch_archive_ready; files=22; missing=0; hash_mismatches=0; archive=data/nhi_pedot_h_a_rfq_dispatch_archive/nhi_pedot_h_a_rfq_dispatch_archive.zip", - "H-A RFQ send confirmation intake: nhi_pedot_h_a_rfq_send_confirmation_intake_waiting_for_confirmation_files; files=0; applied=0; needs_review=0; bundle_matched=0", - "H-A RFQ send confirmation entry sheet: h_a_rfq_send_confirmation_entry_sheet_waiting_for_confirmation_files; rows=4; source_files=0; ready=0; blocked=0", - "H-A RFQ send confirmation entry apply: h_a_rfq_send_confirmation_entry_apply_no_apply_rows; apply_rows=0; applied=0; blocked=0", - "H-A RFQ send log: nhi_pedot_h_a_rfq_send_log_waiting_for_sent_entries; rows=4; sent=0; valid=0", - "H-A RFQ reply intake: nhi_pedot_h_a_rfq_reply_intake_waiting_for_reply_files; files=0; applied=0; needs_review=0; needs_verified_send=0", - "H-A RFQ reply log: nhi_pedot_h_a_rfq_reply_log_waiting_for_reply_files; rows=4; received=0; valid=0", - "H-A RFQ reply action pack: h_a_rfq_reply_action_pack_waiting_for_send; rows=4; waiting_send=4; awaiting_reply=0; ready_apply=0", - "H-A vendor contact plan: contact_plan_ready; ready_first_wave=4; standby_second_wave=4; total=8", - "H-A vendor contact source audit: h_a_vendor_contact_source_audit_ready; rows=4; pass=4; fail=0; stale=0", - "H-A quote selection: pending_outreach; replies=0; source_backed_replies=0; shortlist=0", - "H-A vendor return intake: awaiting_vendor_return_files; raw_value_rows=0; bundle_rows=96; bundle_apply_rows=0; export_files=0", - "H-A vendor bundle entry sheet: h_a_vendor_bundle_entry_sheet_ready; bundles=96; ready=0; blocked=0", - "H-A vendor bundle entry return apply: h_a_vendor_bundle_entry_return_no_apply_rows; sheet_exists=true; bundles=0; source_rows=0; errors=0", - "H-A raw merge: applied=0; unresolved_targets=0; unknown_run_ids=0", - "H-A intake QC: h_a_intake_not_ready; errors=183; warnings=24", - "Recommended H-A rows waiting: 12", - "NHI-PEDOT H-B/H-C package: preregistered_waiting_for_h_a; rows=28", - "NHI-PEDOT H-B/H-C source values: nhi_pedot_forward_source_values_sheet_ready; rows=592; filled=0; import_ready=0", - "NHI-PEDOT H-B/H-C source drop plan: nhi_pedot_forward_source_drop_plan_ready; planned_files=592; dirs=28; existing_files=0; missing_files=592", - "NHI-PEDOT H-B/H-C source file templates: nhi_pedot_forward_source_file_template_pack_ready; templates=6; target_files=592", - "NHI-PEDOT H-B/H-C raw CSV extraction: nhi_pedot_forward_raw_csv_value_extraction_no_raw_csv; files=0; rows=0; errors=0", - "NHI-PEDOT H-B/H-C source import: nhi_pedot_forward_source_value_import_no_importable_rows; rows=592; imported=0; errors=0", - "NHI-PEDOT coupon results: no_data; rows=0", - "NHI-PEDOT long-duration source values: nhi_pedot_long_source_values_sheet_ready; rows=4836; filled=0; import_ready=0", - "NHI-PEDOT long-duration source drop plan: nhi_pedot_long_source_drop_plan_ready; planned_files=4836; dirs=156; existing_files=0; missing_files=4836", - "NHI-PEDOT long-duration source file templates: nhi_pedot_long_source_file_template_pack_ready; templates=5; target_files=4836", - "NHI-PEDOT long-duration raw CSV extraction: nhi_pedot_long_raw_csv_value_extraction_no_raw_csv; files=0; rows=0; errors=0", - "NHI-PEDOT long-duration source import: nhi_pedot_long_source_value_import_no_importable_rows; rows=4836; imported=0; errors=0", - "NHI-PEDOT long-duration results: no_data; rows=0", - "ZRC-ND readiness: not_suitable_yet_no_measured_data; suitable=false", - "ZRC-ND Phase A sentinel: no_sentinel_rows; rows=0", - "ZRC-ND next measurements: needs_phase_a_sentinel; recommended_rows=8", - "ZRC-ND Phase A source values: zrc_nd_phase_a_source_values_sheet_ready; rows=304; filled=0; import_ready=0", - "ZRC-ND Phase A source drop plan: zrc_nd_phase_a_source_drop_plan_ready; planned_files=304; dirs=8; existing_files=0; missing_files=304", - "ZRC-ND Phase A source file templates: zrc_nd_phase_a_source_file_template_pack_ready; templates=8; target_files=304", - "ZRC-ND Phase A vendor bundle entry sheet: zrc_phase_a_vendor_bundle_entry_sheet_ready; bundles=64; ready=0; blocked=0", - "ZRC-ND Phase A vendor bundle entry apply: zrc_phase_a_vendor_bundle_entry_apply_no_apply_rows; apply_rows=0; bundles=0; source_rows=0; errors=0", - "ZRC-ND Phase A raw CSV extraction: zrc_nd_phase_a_raw_csv_value_extraction_no_raw_csv; files=0; rows=0; errors=0", - "ZRC-ND Phase A source import: zrc_nd_phase_a_source_value_import_no_importable_rows; rows=304; imported=0; errors=0", - "ZRC-ND Phase A service request: ready_to_request_real_phase_a_measurements; runs=8", - "ZRC-ND Phase A sample handoff: ready_for_phase_a_sample_handoff; labels=16; custody_rows=16", - "ZRC-ND Phase A delivery package: ready_to_send; missing_files=0", - "ZRC-ND Phase A vendor outreach: ready_for_vendor_screening; first_wave_contacts=4", - "ZRC-ND Phase A RFQ packet: ready_to_send_rfq", - "ZRC-ND Phase A RFQ outbox: ready_to_send_outbox; ready_to_send=4 of 4", - "ZRC-ND Phase A quote tracker: pending_outreach", - "ZRC-ND Phase A RFQ send confirmation intake: zrc_nd_phase_a_rfq_send_confirmation_intake_waiting_for_confirmation_files; files=0; applied=0; needs_review=0; bundle_matched=0", - "ZRC-ND Phase A RFQ send confirmation entry sheet: zrc_phase_a_rfq_send_confirmation_entry_sheet_waiting_for_confirmation_files; rows=4; source_files=0; ready=0; blocked=0", - "ZRC-ND Phase A RFQ send confirmation entry apply: zrc_phase_a_rfq_send_confirmation_entry_apply_no_apply_rows; apply_rows=0; applied=0; blocked=0", - "ZRC-ND Phase A RFQ send log: zrc_nd_phase_a_rfq_send_log_waiting_for_sent_entries; rows=4; sent=0; valid=0; applied_dates=0; errors=0", - "ZRC-ND Phase A RFQ reply intake: zrc_nd_phase_a_rfq_reply_intake_waiting_for_reply_files; files=0; applied=0; needs_review=0; needs_verified_send=0", - "ZRC-ND Phase A RFQ reply log: zrc_nd_phase_a_rfq_reply_log_waiting_for_reply_files; rows=4; received=0; valid=0; applied_fields=0; errors=0", - "ZRC-ND Phase A vendor contact plan: contact_plan_ready; ready_first_wave=4; standby_second_wave=4; total=8", - "ZRC-ND Phase A RFQ dispatch manifest: zrc_phase_a_rfq_dispatch_manifest_ready; rows=4; ready=4; blocked=0", - "ZRC-ND Phase A RFQ dispatch archive: zrc_phase_a_rfq_dispatch_archive_ready; files=24; missing=0; hash_mismatches=0; archive=data/zrc_nd_phase_a_rfq_dispatch_archive/zrc_nd_phase_a_rfq_dispatch_archive.zip", - "ZRC-ND Phase A RFQ reply action pack: zrc_phase_a_rfq_reply_action_pack_waiting_for_send; rows=4; waiting_send=4; awaiting_reply=0; ready_apply=0", - "ZRC-ND Phase A RFQ send cockpit: zrc_phase_a_rfq_send_cockpit_ready_for_manual_send; rows=4; ready=4; confirmations=0; replies=0; html=reports/zrc_nd_phase_a_rfq_send_cockpit.html", - "ZRC-ND Phase A quote selection: pending_outreach; replies=0; source_backed_replies=0; shortlist=0", - "ZRC-ND Phase A execution authorization log: zrc_nd_phase_a_execution_authorization_waiting_for_selected_provider; rows=0; valid=0; errors=0", - "ZRC-ND Phase A execution release audit: zrc_nd_phase_a_execution_release_blocked_no_source_backed_provider_selection; ready=false; released=false; blockers=1; authorization_blockers=0", - "ZRC-ND Phase A vendor return intake: awaiting_vendor_return_files; rows=0; export_files=0", - "ZRC-ND measurement merge: awaiting_measurement_file; inserted=0; updated=0; output_rows=0", - "ZRC-ND run completeness: no_measured_rows; measured_known=0 of 132", - "ZRC-ND validation results: no_data; rows=0", - "First-wave RFQ dispatch cockpit: first_wave_rfq_dispatch_cockpit_ready_for_manual_send; rows=8; ready=8; confirmations=0; replies=0", - "First-wave post-dispatch processing: first_wave_post_dispatch_waiting_for_real_send_confirmations; failed_commands=0; confirmations=0; replies=0", - "Second-wave candidate queue: second_wave_candidate_queue_ready_while_first_wave_waits; rows=6; ready_scope_lock=2; watch=2; hold=2", - "Second-wave scope-lock pack: second_wave_scope_lock_pack_ready; ready_candidates=2; tasks=8; source_classes=5; claim_evidence_created=false", - "H-A RFQ send log: nhi_pedot_h_a_rfq_send_log_waiting_for_sent_entries; rows=4; sent=0; valid=0; applied_dates=0; errors=0", - "H-A RFQ reply log: nhi_pedot_h_a_rfq_reply_log_waiting_for_reply_files; rows=4; received=0; valid=0; applied_fields=0; errors=0", - "H-A execution authorization log: nhi_pedot_h_a_execution_authorization_waiting_for_selected_provider; rows=0; valid=0; errors=0", - "H-A execution release audit: nhi_pedot_h_a_execution_release_blocked_no_source_backed_provider_selection; ready=false; released=false; blockers=1; authorization_blockers=0", - "Hybrid measurement routing: hybrid_measurement_plan_ready; local_rows=184; outsource_preferred_rows=40; provenance_rows=126; total_rows=350", - "Local capture pack: local_capture_pack_ready; tasks=350; local_tasks=184; outsource_tasks=40; provenance_tasks=126", - "Source-file manifest: source_file_manifest_ready; allowed_roots=12; source_classes=12", - "Source-file inventory: source_file_inventory_empty; files=0; refs=0; capture_refs=0; filled_source_value_refs=0; missing_refs=0; unreferenced=0", - "H-A source drop plan: nhi_pedot_h_a_source_drop_plan_ready; planned_files=228; dirs=48; existing_files=0; missing_files=228", - "H-A raw CSV extraction: h_a_raw_csv_value_extraction_no_raw_csv; files=0; rows=0; errors=0", - "Local capture preflight: local_capture_preflight_awaiting_entries; ready=false; filled=0; pending=350; errors=0; warnings=0", - "Smoke capture tranche: smoke_capture_tranche_ready; tasks=172; local_or_record_tasks=152; outsource_tasks=20", - "Smoke execution queue: smoke_execution_queue_ready; rows=172; h_a_rows=114; zrc_rows=58; awaiting=172; source_ready=0", - "Smoke entry sheet: smoke_entry_sheet_ready; rows=172; filled=0; ready_to_apply=0", - "Smoke source drop plan: smoke_source_drop_plan_ready; planned_files=172; dirs=10; existing_files=0; missing_files=172", - "Smoke source values sheet: smoke_source_values_sheet_ready; rows=172; starter=19; filled=0; import_ready=0", - "Smoke starter batch readiness: smoke_starter_batch_awaiting_values; rows=19; ready=0; blocked=19", - "Smoke starter execution pack: smoke_starter_execution_pack_ready; rows=19; dirs=1; existing_files=0", - "Smoke starter raw-file template pack: smoke_starter_raw_file_template_pack_ready; rows=19; templates=8", - "Smoke raw CSV extraction: smoke_raw_csv_value_extraction_no_raw_csv; files=0; rows=0; errors=0", - "Smoke unstructured source intake: smoke_unstructured_source_intake_waiting_for_files; rows=10; ready=0; missing=10; invalid=0", - "Smoke unstructured review values: smoke_unstructured_review_values_waiting_for_source_files; rows=10; ready_sources=0; filled=0; import_ready=0; invalid_sources=0", - "Smoke source value import: smoke_source_value_import_no_importable_rows; files=3; rows=182; imported=0; errors=0", - "Smoke entry apply: smoke_entry_apply_no_filled_rows; applied=0; errors=0", - "Smoke capture preflight: local_capture_preflight_awaiting_entries; ready=false; filled=0; pending=172; errors=0; warnings=0", - "Smoke rehearsal: smoke_rehearsal_waiting_for_preflight; preflight=local_capture_preflight_awaiting_entries; ready=false; filled=0; pending=172; errors=0; warnings=0; h_a_qc=-; zrc_validation=-" - ], - "first_wave_post_dispatch_confirmations": 0, - "first_wave_post_dispatch_failed_commands": 0, - "first_wave_post_dispatch_replies": 0, - "first_wave_post_dispatch_status": "first_wave_post_dispatch_waiting_for_real_send_confirmations", - "first_wave_rfq_dispatch_cockpit_confirmations": 0, - "first_wave_rfq_dispatch_cockpit_html": "reports/limina_first_wave_rfq_dispatch_cockpit.html", - "first_wave_rfq_dispatch_cockpit_missing_bundles": 0, - "first_wave_rfq_dispatch_cockpit_missing_messages": 0, - "first_wave_rfq_dispatch_cockpit_ready_rows": 8, - "first_wave_rfq_dispatch_cockpit_replies": 0, - "first_wave_rfq_dispatch_cockpit_rows": 8, - "first_wave_rfq_dispatch_cockpit_status": "first_wave_rfq_dispatch_cockpit_ready_for_manual_send", - "h_a_bench_blank_raw_entries_to_fill": 228, - "h_a_bench_status": "rendered", - "h_a_bench_task_count": 12, - "h_a_chain_of_custody_rows": 36, - "h_a_chain_of_custody_status": "ready_for_sample_handoff", - "h_a_execution_authorization_errors": 0, - "h_a_execution_authorization_rows": 0, - "h_a_execution_authorization_status": "nhi_pedot_h_a_execution_authorization_waiting_for_selected_provider", - "h_a_execution_authorization_valid_rows": 0, - "h_a_execution_release_authorization_blockers": 0, - "h_a_execution_release_blockers": 1, - "h_a_execution_release_ready": false, - "h_a_execution_release_released": false, - "h_a_execution_release_status": "nhi_pedot_h_a_execution_release_blocked_no_source_backed_provider_selection", - "h_a_intake_qc_issue_counts": { - "error": 183, - "warning": 24 - }, - "h_a_intake_qc_ready": false, - "h_a_intake_qc_status": "h_a_intake_not_ready", - "h_a_measurement_merge_stats": { - "applied_values": 0, - "date_updates": 0, - "issues": [], - "operator_updates": 0, - "output_rows": 12, - "raw_rows": 228, - "skipped_blank_values": 228, - "skipped_missing_run_id": 0, - "skipped_unknown_run_id": 0, - "source_file_updates": 0, - "synthetic_marker_propagations": 0, - "unit_warnings": 0, - "unresolved_targets": 0 - }, - "h_a_measurement_merge_status": "merged", - "h_a_missing_field_summary": [ - { - "field": "date", - "missing_rows": 12 - }, - { - "field": "medium_lot", - "missing_rows": 12 - }, - { - "field": "pH_initial", - "missing_rows": 12 - }, - { - "field": "pH_final", - "missing_rows": 12 - }, - { - "field": "osmolality_initial_mOsm_kg", - "missing_rows": 12 - }, - { - "field": "osmolality_final_mOsm_kg", - "missing_rows": 12 - }, - { - "field": "conductivity_initial_mS_cm", - "missing_rows": 12 - }, - { - "field": "conductivity_final_mS_cm", - "missing_rows": 12 - }, - { - "field": "visible_precipitate", - "missing_rows": 12 - }, - { - "field": "visible_shedding", - "missing_rows": 12 - }, - { - "field": "swelling_fraction", - "missing_rows": 12 - }, - { - "field": "delamination_score", - "missing_rows": 12 - } - ], - "h_a_next_action": "Replace fixture, pending, and record_actual/record_lot placeholders with real measured provenance before interpreting H-A.", - "h_a_pending_transfer_rows": 36, - "h_a_provenance": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "data/nhi_pedot_h_a_sentinel_template.csv", - "path_fixture_marker": false, - "placeholder_examples": [ - { - "markers": [ - "date=missing", - "notes=pending_real_measurement", - "source_file=missing" - ], - "row_number": 1, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "markers": [ - "date=missing", - "notes=pending_real_measurement", - "source_file=missing" - ], - "row_number": 2, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "markers": [ - "date=missing", - "notes=pending_real_measurement", - "source_file=missing" - ], - "row_number": 3, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 4, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 5, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 6, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 7, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 8, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - } - ], - "placeholder_row_count": 12, - "row_count": 12, - "source_file_issue_count": 0, - "source_file_issue_examples": [], - "synthetic_examples": [], - "synthetic_row_count": 0 - }, - "h_a_quote_selection_reply_count": 0, - "h_a_quote_selection_sent_count": 0, - "h_a_quote_selection_shortlist_count": 0, - "h_a_quote_selection_source_backed_reply_count": 0, - "h_a_quote_selection_status": "pending_outreach", - "h_a_quote_tracker_status": "pending_outreach", - "h_a_raw_csv_extraction_errors": 0, - "h_a_raw_csv_extraction_files": 0, - "h_a_raw_csv_extraction_rows": 0, - "h_a_raw_csv_extraction_status": "h_a_raw_csv_value_extraction_no_raw_csv", - "h_a_rfq_dispatch_archive_files": 22, - "h_a_rfq_dispatch_archive_hash_mismatches": 0, - "h_a_rfq_dispatch_archive_missing_files": 0, - "h_a_rfq_dispatch_archive_path": "data/nhi_pedot_h_a_rfq_dispatch_archive/nhi_pedot_h_a_rfq_dispatch_archive.zip", - "h_a_rfq_dispatch_archive_sha256": "b739036ff6d618bec4b57e1c028676338ef58599a11fb7a6822a6df9b725368b", - "h_a_rfq_dispatch_archive_status": "h_a_rfq_dispatch_archive_ready", - "h_a_rfq_dispatch_manifest_blocked_rows": 0, - "h_a_rfq_dispatch_manifest_bundle_match_rows": 4, - "h_a_rfq_dispatch_manifest_ready_rows": 4, - "h_a_rfq_dispatch_manifest_rows": 4, - "h_a_rfq_dispatch_manifest_status": "h_a_rfq_dispatch_manifest_ready", - "h_a_rfq_eml_drafts_missing_bundle_rows": 0, - "h_a_rfq_eml_drafts_missing_to_rows": 0, - "h_a_rfq_eml_drafts_ready_rows": 4, - "h_a_rfq_eml_drafts_rows": 4, - "h_a_rfq_eml_drafts_status": "h_a_rfq_eml_drafts_ready", - "h_a_rfq_eml_integrity_attachment_mismatch_rows": 0, - "h_a_rfq_eml_integrity_fail_rows": 0, - "h_a_rfq_eml_integrity_pass_rows": 4, - "h_a_rfq_eml_integrity_rows": 4, - "h_a_rfq_eml_integrity_status": "h_a_rfq_eml_integrity_ready", - "h_a_rfq_outbox_quote_count": 4, - "h_a_rfq_outbox_ready_count": 4, - "h_a_rfq_outbox_status": "ready_to_send_outbox", - "h_a_rfq_packet_status": "ready_to_send_rfq", - "h_a_rfq_reply_action_pack_awaiting_reply_rows": 0, - "h_a_rfq_reply_action_pack_needs_source_rows": 0, - "h_a_rfq_reply_action_pack_ready_apply_rows": 0, - "h_a_rfq_reply_action_pack_rows": 4, - "h_a_rfq_reply_action_pack_status": "h_a_rfq_reply_action_pack_waiting_for_send", - "h_a_rfq_reply_action_pack_waiting_send_rows": 4, - "h_a_rfq_reply_intake_applied_rows": 0, - "h_a_rfq_reply_intake_files": 0, - "h_a_rfq_reply_intake_needs_review_rows": 0, - "h_a_rfq_reply_intake_needs_verified_send_rows": 0, - "h_a_rfq_reply_intake_status": "nhi_pedot_h_a_rfq_reply_intake_waiting_for_reply_files", - "h_a_rfq_reply_log_applied_fields": 0, - "h_a_rfq_reply_log_errors": 0, - "h_a_rfq_reply_log_received_rows": 0, - "h_a_rfq_reply_log_rows": 4, - "h_a_rfq_reply_log_status": "nhi_pedot_h_a_rfq_reply_log_waiting_for_reply_files", - "h_a_rfq_reply_log_valid_rows": 0, - "h_a_rfq_send_action_pack_needs_confirmation_rows": 0, - "h_a_rfq_send_action_pack_ready_rows": 4, - "h_a_rfq_send_action_pack_rows": 4, - "h_a_rfq_send_action_pack_status": "h_a_rfq_send_action_pack_ready", - "h_a_rfq_send_action_pack_verified_rows": 0, - "h_a_rfq_send_cockpit_confirmations": 0, - "h_a_rfq_send_cockpit_html": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "h_a_rfq_send_cockpit_missing_bundle": 0, - "h_a_rfq_send_cockpit_missing_eml": 0, - "h_a_rfq_send_cockpit_ready_rows": 4, - "h_a_rfq_send_cockpit_replies": 0, - "h_a_rfq_send_cockpit_rows": 4, - "h_a_rfq_send_cockpit_status": "h_a_rfq_send_cockpit_ready_for_manual_send", - "h_a_rfq_send_confirmation_entry_apply_applied_rows": 0, - "h_a_rfq_send_confirmation_entry_apply_blocked_rows": 0, - "h_a_rfq_send_confirmation_entry_apply_rows": 0, - "h_a_rfq_send_confirmation_entry_apply_status": "h_a_rfq_send_confirmation_entry_apply_no_apply_rows", - "h_a_rfq_send_confirmation_entry_sheet_blocked_rows": 0, - "h_a_rfq_send_confirmation_entry_sheet_ready_rows": 0, - "h_a_rfq_send_confirmation_entry_sheet_rows": 4, - "h_a_rfq_send_confirmation_entry_sheet_source_files": 0, - "h_a_rfq_send_confirmation_entry_sheet_status": "h_a_rfq_send_confirmation_entry_sheet_waiting_for_confirmation_files", - "h_a_rfq_send_confirmation_intake_applied_rows": 0, - "h_a_rfq_send_confirmation_intake_bundle_matched_rows": 0, - "h_a_rfq_send_confirmation_intake_files": 0, - "h_a_rfq_send_confirmation_intake_needs_review_rows": 0, - "h_a_rfq_send_confirmation_intake_status": "nhi_pedot_h_a_rfq_send_confirmation_intake_waiting_for_confirmation_files", - "h_a_rfq_send_log_applied_dates": 0, - "h_a_rfq_send_log_errors": 0, - "h_a_rfq_send_log_rows": 4, - "h_a_rfq_send_log_sent_rows": 0, - "h_a_rfq_send_log_status": "nhi_pedot_h_a_rfq_send_log_waiting_for_sent_entries", - "h_a_rfq_send_log_valid_sent_rows": 0, - "h_a_sample_label_count": 36, - "h_a_sample_submission_shipping_status": "do_not_ship_until_vendor_confirms_quote_sample_acceptance_sds_and_custody", - "h_a_sample_submission_status": "sample_submission_precheck_ready", - "h_a_service_request_raw_entries": 228, - "h_a_service_request_status": "ready_to_request_real_measurements", - "h_a_source_drop_dirs": 48, - "h_a_source_drop_existing_files": 0, - "h_a_source_drop_missing_files": 228, - "h_a_source_drop_planned_files": 228, - "h_a_source_drop_status": "nhi_pedot_h_a_source_drop_plan_ready", - "h_a_source_value_import_errors": 0, - "h_a_source_value_import_files": 2, - "h_a_source_value_import_imported_rows": 0, - "h_a_source_value_import_rows": 228, - "h_a_source_value_import_status": "h_a_source_value_import_no_importable_rows", - "h_a_source_values_sheet_filled_rows": 0, - "h_a_source_values_sheet_import_ready_rows": 0, - "h_a_source_values_sheet_rows": 228, - "h_a_source_values_sheet_source_file_exists_rows": 0, - "h_a_source_values_sheet_status": "h_a_source_values_sheet_ready", - "h_a_split_scope_pair_count": 7, - "h_a_split_scope_preferred_count": 5, - "h_a_split_scope_status": "split_scope_plan_ready", - "h_a_status": "h_a_invalid_provenance", - "h_a_vendor_bundle_entry_apply_bundles": 0, - "h_a_vendor_bundle_entry_apply_errors": 0, - "h_a_vendor_bundle_entry_apply_sheet_exists": true, - "h_a_vendor_bundle_entry_apply_source_rows": 0, - "h_a_vendor_bundle_entry_apply_status": "h_a_vendor_bundle_entry_return_no_apply_rows", - "h_a_vendor_bundle_entry_sheet_blocked_rows": 0, - "h_a_vendor_bundle_entry_sheet_bundles": 96, - "h_a_vendor_bundle_entry_sheet_ready_rows": 0, - "h_a_vendor_bundle_entry_sheet_status": "h_a_vendor_bundle_entry_sheet_ready", - "h_a_vendor_contact_plan_status": "contact_plan_ready", - "h_a_vendor_contact_ready_count": 4, - "h_a_vendor_contact_row_count": 8, - "h_a_vendor_contact_source_audit_fail_rows": 0, - "h_a_vendor_contact_source_audit_pass_rows": 4, - "h_a_vendor_contact_source_audit_rows": 4, - "h_a_vendor_contact_source_audit_stale_rows": 0, - "h_a_vendor_contact_source_audit_status": "h_a_vendor_contact_source_audit_ready", - "h_a_vendor_contact_standby_count": 4, - "h_a_vendor_first_wave_count": 4, - "h_a_vendor_outreach_status": "ready_for_vendor_screening", - "h_a_vendor_return_bundle_apply_rows": 0, - "h_a_vendor_return_bundle_rows": 96, - "h_a_vendor_return_export_files": 0, - "h_a_vendor_return_raw_value_rows": 0, - "h_a_vendor_return_status": "awaiting_vendor_return_files", - "hybrid_measurement_inhouse_rows": 184, - "hybrid_measurement_outsource_rows": 40, - "hybrid_measurement_plan_status": "hybrid_measurement_plan_ready", - "hybrid_measurement_provenance_rows": 126, - "hybrid_measurement_total_rows": 350, - "local_capture_local_tasks": 184, - "local_capture_outsource_tasks": 40, - "local_capture_pack_status": "local_capture_pack_ready", - "local_capture_preflight_errors": 0, - "local_capture_preflight_filled_tasks": 0, - "local_capture_preflight_pending_tasks": 350, - "local_capture_preflight_ready": false, - "local_capture_preflight_status": "local_capture_preflight_awaiting_entries", - "local_capture_preflight_warnings": 0, - "local_capture_provenance_tasks": 126, - "local_capture_task_count": 350, - "mission_state": "awaiting_real_h_a_measurements", - "next_actions": [ - { - "action_id": "use_first_wave_rfq_dispatch_cockpit", - "command": "manual: open reports/limina_first_wave_rfq_dispatch_cockpit.html and send ready first-wave RFQs", - "rank": 1, - "stage": "sourcing", - "success_criterion": "Real confirmation files are saved for sent H-A and ZRC vendors, then send-confirmation intake and send-log apply can advance the sourcing chain.", - "target_artifact": "data/rfq_send_confirmation_files", - "why": "The combined cockpit is the shortest path from prepared RFQ artifacts to real send confirmations for both active measurement branches." - }, - { - "action_id": "process_first_wave_post_dispatch_files", - "command": "python3 scripts/process_limina_first_wave_post_dispatch.py", - "rank": 2, - "stage": "sourcing", - "success_criterion": "Saved confirmations or replies are reflected into source-backed send/reply logs without creating measurement evidence.", - "target_artifact": "reports/limina_first_wave_post_dispatch_processing.md", - "why": "After any real send confirmation or vendor reply is saved, the combined processor runs both H-A and ZRC intake/apply/evaluate/audit chains." - }, - { - "action_id": "review_second_wave_candidate_queue", - "command": "python3 scripts/render_limina_second_wave_candidate_queue.py", - "rank": 3, - "stage": "portfolio", - "success_criterion": "Second-wave candidates remain planning-only rows until a source-backed measurement package is created and the final claim audit still reports false.", - "target_artifact": "reports/limina_second_wave_candidate_queue.md", - "why": "The first-wave measurement route is waiting on real confirmations/replies, so the highest-ranked non-active candidates can be scope-locked without creating suitability evidence." - }, - { - "action_id": "review_second_wave_scope_lock_pack", - "command": "python3 scripts/render_limina_second_wave_scope_lock_pack.py", - "rank": 4, - "stage": "portfolio", - "success_criterion": "Scope-lock tasks are reviewed while claim_ready remains false and no task is treated as measured material evidence.", - "target_artifact": "reports/limina_second_wave_scope_lock_pack.md", - "why": "The second-wave queue has been translated into concrete material-identity, trigger-boundary, and future source-class tasks." - }, - { - "action_id": "send_h_a_rfq_eml_drafts", - "command": "manual: use data/nhi_pedot_h_a_rfq_dispatch_archive/nhi_pedot_h_a_rfq_dispatch_archive.zip or reports/nhi_pedot_h_a_rfq_send_cockpit.html to send ready drafts", - "rank": 5, - "stage": "H-A", - "success_criterion": "Each sent vendor has a real sent-email export, web-form confirmation, PDF, or screenshot saved under data/rfq_send_confirmation_files/h_a, after h_a_vendor_contact_source_audit_ready, h_a_rfq_dispatch_manifest_ready, h_a_rfq_dispatch_archive_ready, and h_a_rfq_eml_integrity_ready remain true.", - "target_artifact": "data/rfq_send_confirmation_files/h_a", - "why": "The RFQ .eml drafts and vendor bundles are ready, contact-source audited, integrity checked, bound into a dispatch manifest, and packaged into a single dispatch archive; real H-A measurements cannot arrive until the first-wave outreach is actually sent." - }, - { - "action_id": "send_zrc_phase_a_rfq", - "command": "manual: use reports/zrc_nd_phase_a_rfq_send_cockpit.html or data/zrc_nd_phase_a_rfq_dispatch_archive/zrc_nd_phase_a_rfq_dispatch_archive.zip to send ready RFQs", - "rank": 6, - "stage": "ZRC Phase A", - "success_criterion": "Each sent ZRC Phase A vendor has a real sent-email export, web-form confirmation, PDF, or screenshot saved under data/rfq_send_confirmation_files/zrc_phase_a.", - "target_artifact": "data/rfq_send_confirmation_files/zrc_phase_a", - "why": "The portfolio bypass audit says the only current non-H-A branch still needs real ZRC Phase A measurements before any non-H-A claim." - }, - { - "action_id": "intake_zrc_phase_a_rfq_send_confirmations", - "command": "python3 scripts/intake_limina_rfq_send_confirmations.py --profile zrc_phase_a", - "rank": 7, - "stage": "ZRC Phase A", - "success_criterion": "The intake registers real confirmation files with matching bundle hashes or flags rows for human review.", - "target_artifact": "data/zrc_nd_phase_a_rfq_send_confirmation_intake.json", - "why": "Saved ZRC send confirmations need to be parsed or flagged before replies are trusted as source-backed." - }, - { - "action_id": "apply_zrc_phase_a_non_eml_send_confirmations", - "command": "run: python3 scripts/render_zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.py, then python3 scripts/apply_zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.py", - "rank": 8, - "stage": "ZRC Phase A", - "success_criterion": "Non-EML ZRC confirmations are applied only when a real source file exists, current SHA-256 is recorded, bundle hash matches the dispatch manifest, and apply=yes is human-reviewed.", - "target_artifact": "data/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.json", - "why": "Web-form/PDF/screenshot confirmations need a guarded manual entry path before the ZRC send log is trusted." - }, - { - "action_id": "apply_zrc_phase_a_rfq_send_log", - "command": "python3 scripts/apply_limina_rfq_send_log.py --profile zrc_phase_a", - "rank": 9, - "stage": "ZRC Phase A", - "success_criterion": "The send log has valid sent rows and tracker contact dates for sent first-wave ZRC vendors.", - "target_artifact": "data/zrc_nd_phase_a_rfq_send_log.json", - "why": "Verified send rows must be reflected into the ZRC quote tracker before reply intake and provider selection." - }, - { - "action_id": "save_zrc_phase_a_rfq_replies", - "command": "manual: save original replies under data/rfq_reply_files/zrc_phase_a", - "rank": 10, - "stage": "ZRC Phase A", - "success_criterion": "Every received vendor reply, quote PDF, proposal, or clarification email is saved at the path listed in reports/zrc_nd_phase_a_rfq_reply_action_pack.md.", - "target_artifact": "data/rfq_reply_files/zrc_phase_a", - "why": "Vendor replies are needed for execution selection but must be preserved as original source files." - }, - { - "action_id": "intake_h_a_rfq_send_confirmations", - "command": "python3 scripts/intake_limina_rfq_send_confirmations.py --profile h_a", - "rank": 11, - "stage": "H-A", - "success_criterion": "The intake registers real confirmation files with matching bundle hashes or flags rows for human review.", - "target_artifact": "data/nhi_pedot_h_a_rfq_send_confirmation_intake.json", - "why": "Saved confirmations should be parsed before the tracker is treated as source-backed outreach." - }, - { - "action_id": "apply_h_a_non_eml_send_confirmations", - "command": "run: python3 scripts/render_nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.py, then python3 scripts/apply_nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.py", - "rank": 12, - "stage": "H-A", - "success_criterion": "Non-EML confirmations are applied only when a real source file exists, current SHA-256 is recorded, bundle hash matches the dispatch manifest, and apply=yes is human-reviewed.", - "target_artifact": "data/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.json", - "why": "If the RFQ was sent through a web form, PDF/screenshot/saved-page confirmations need a guarded manual entry path before the send log is trusted." - }, - { - "action_id": "apply_h_a_rfq_send_log", - "command": "python3 scripts/apply_limina_rfq_send_log.py --profile h_a", - "rank": 13, - "stage": "H-A", - "success_criterion": "The send log has valid sent rows and tracker contact dates for the sent first-wave vendors.", - "target_artifact": "data/nhi_pedot_h_a_rfq_send_log.json", - "why": "Verified send rows must be reflected into the RFQ send log and quote tracker before replies are accepted as sourced." - }, - { - "action_id": "save_h_a_rfq_replies", - "command": "manual: save original replies under data/rfq_reply_files/h_a", - "rank": 14, - "stage": "H-A", - "success_criterion": "Every received vendor reply, quote PDF, proposal, or clarification email is saved at the path listed in reports/nhi_pedot_h_a_rfq_reply_action_pack.md.", - "target_artifact": "data/rfq_reply_files/h_a", - "why": "Vendor replies are the next external input after verified sends, but they must be preserved as original source files." - }, - { - "action_id": "intake_h_a_rfq_replies", - "command": "python3 scripts/intake_limina_rfq_replies.py --profile h_a", - "rank": 15, - "stage": "H-A", - "success_criterion": "Source-backed replies are registered for review without auto-scoring or provider selection.", - "target_artifact": "data/nhi_pedot_h_a_rfq_reply_intake.json", - "why": "Reply intake only registers parsable source-backed replies after verified sends and leaves quote interpretation to review." - }, - { - "action_id": "apply_h_a_rfq_reply_log", - "command": "python3 scripts/apply_limina_rfq_reply_log.py --profile h_a", - "rank": 16, - "stage": "H-A", - "success_criterion": "The reply log has valid received rows and applies only source-backed review fields.", - "target_artifact": "data/nhi_pedot_h_a_rfq_reply_log.json", - "why": "Reviewed reply fields should be applied to the tracker before provider scoring." - }, - { - "action_id": "score_h_a_quote_replies", - "command": "python3 scripts/evaluate_nhi_pedot_h_a_quote_replies.py", - "rank": 17, - "stage": "H-A", - "success_criterion": "Quote selection reports ready_to_select_provider only when reply fields pass hard requirements and the scorecard threshold.", - "target_artifact": "reports/nhi_pedot_h_a_quote_selection.md", - "why": "The scorecard should choose execution partners by raw-data fidelity and field coverage rather than narrative vendor claims." - }, - { - "action_id": "record_h_a_execution_authorization", - "command": "python3 scripts/apply_limina_execution_authorization_log.py --profile h_a", - "rank": 18, - "stage": "H-A", - "success_criterion": "Execution authorization is source-backed for the selected provider or remains explicitly waiting for human authorization.", - "target_artifact": "data/nhi_pedot_h_a_execution_authorization_log.json", - "why": "A selected provider still needs human authorization before samples are released." - }, - { - "action_id": "audit_h_a_execution_release", - "command": "python3 scripts/audit_limina_execution_release.py --profile h_a", - "rank": 19, - "stage": "H-A", - "success_criterion": "Execution is released only when the audit has no blockers and the authorized provider is source-backed.", - "target_artifact": "data/nhi_pedot_h_a_execution_release_audit.json", - "why": "The release audit checks that provider selection, authorization, custody, sample submission, and return expectations are all satisfied." - }, - { - "action_id": "check_h_a_vendor_return_inbox", - "command": "python3 scripts/render_nhi_pedot_h_a_vendor_return_intake.py", - "rank": 20, - "stage": "H-A", - "success_criterion": "Vendor return intake reports vendor_return_ready_for_merge only when required return files and source_file references are present.", - "target_artifact": "reports/nhi_pedot_h_a_vendor_return_intake.md", - "why": "Once a vendor returns files, the inbox checker verifies raw CSV schema, chain-of-custody, deviation log, bundle-entry sheet, and source_file references before merge/QC." - }, - { - "action_id": "render_h_a_vendor_bundle_entry_sheet", - "command": "python3 scripts/render_nhi_pedot_h_a_vendor_bundle_entry_sheet.py", - "rank": 21, - "stage": "H-A", - "success_criterion": "The vendor bundle-entry sheet is ready, points source_file defaults at the vendor return inbox, and has no ready rows until real returned files are reviewed.", - "target_artifact": "reports/nhi_pedot_h_a_vendor_bundle_entry_sheet.md", - "why": "The compact returned bundle-entry path needs a scaffold in the vendor inbox so providers can fill one row per source-file bundle." - }, - { - "action_id": "apply_h_a_vendor_bundle_entry_return", - "command": "python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py", - "rank": 22, - "stage": "H-A", - "success_criterion": "Returned apply=yes bundle rows are expanded into source-value rows with allowed source_file references and zero errors.", - "target_artifact": "data/nhi_pedot_h_a_vendor_bundle_entry_apply.json", - "why": "The compact returned bundle-entry sheet can fill source-value rows without hand-copying 228 individual entries." - }, - { - "action_id": "extract_h_a_raw_csv_values", - "command": "python3 scripts/extract_nhi_pedot_h_a_raw_csv_values.py", - "rank": 23, - "stage": "H-A", - "success_criterion": "Extraction finds real raw CSV files and emits no schema or source-reference errors.", - "target_artifact": "data/nhi_pedot_h_a_raw_csv_value_extraction.json", - "why": "Raw vendor CSV exports should be converted to source-value rows before merge." - }, - { - "action_id": "import_h_a_source_values", - "command": "python3 scripts/import_nhi_pedot_h_a_source_values.py", - "rank": 24, - "stage": "H-A", - "success_criterion": "Import applies only rows with filled values and real source_file provenance.", - "target_artifact": "data/nhi_pedot_h_a_source_value_import.json", - "why": "Source-value rows from returned bundles or raw CSV extraction must be imported before active H-A runs can change." - }, - { - "action_id": "merge_raw_h_a_measurements", - "command": "python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py", - "rank": 25, - "stage": "H-A", - "success_criterion": "Raw rows have been merged into active runs and no unresolved target or unknown run_id errors remain.", - "target_artifact": "data/nhi_pedot_h_a_runs_active.csv", - "why": "Raw instrument/inspection entries should be merged into an active runs CSV before QC." - }, - { - "action_id": "complete_h_a_rows_and_run_intake_qc", - "command": "python3 scripts/qc_nhi_pedot_h_a_intake.py --runs data/nhi_pedot_h_a_runs_active.csv", - "rank": 26, - "stage": "H-A", - "success_criterion": "H-A intake QC reports h_a_intake_ready with zero errors and claimable measured provenance.", - "target_artifact": "data/nhi_pedot_h_a_runs_active.csv", - "why": "The leading route cannot move until the acellular medium/physical sentinel has QC-clean real rows." - }, - { - "action_id": "interpret_qc_ready_h_a", - "command": "python3 scripts/interpret_nhi_pedot_h_a_sentinel.py --runs data/nhi_pedot_h_a_runs_active.csv", - "rank": 27, - "stage": "H-A", - "success_criterion": "H-A interpretation is no longer h_a_invalid_provenance and measured_row_count equals row_count for required sentinel rows.", - "target_artifact": "data/nhi_pedot_h_a_sentinel_interpretation.json", - "why": "The H-A interpreter should only be trusted after intake QC is clean." - }, - { - "action_id": "refresh_next_measurement_selector", - "command": "python3 scripts/suggest_nhi_pedot_next_measurements.py", - "rank": 28, - "stage": "H-A", - "success_criterion": "Recommended rows match the remaining unmet H-A coverage instead of stale no-data rows.", - "target_artifact": "data/nhi_pedot_next_measurements.json", - "why": "The selector should be regenerated after any new measured rows land." - }, - { - "action_id": "refresh_h_a_packet", - "command": "python3 scripts/generate_nhi_pedot_sentinel_packet.py", - "rank": 29, - "stage": "H-A", - "success_criterion": "The packet rows match the current next-measurement selector and remain marked as pending until real values are entered.", - "target_artifact": "reports/nhi_pedot_h_a_sentinel_packet.md", - "why": "The data-entry packet should reflect the current selector output and recipe lock." - }, - { - "action_id": "keep_variant_ladder_ready", - "command": "python3 scripts/design_nhi_pedot_variant_ladder.py", - "rank": 30, - "stage": "adaptive_design", - "success_criterion": "Variant ladder still ranks the 0.6 wt percent lead first and records trigger conditions for rescue variants.", - "target_artifact": "reports/nhi_pedot_variant_ladder.md", - "why": "Current lead is alg_lam_pedot_0p6pct_lead; rescue routes are predeclared but must wait for measured H-A signals." - } - ], - "next_measurement_row_count": 12, - "next_measurement_status": "needs_h_a_sentinel", - "nhi_coupon_result_rows": 0, - "nhi_coupon_result_status": "no_data", - "nhi_forward_raw_csv_extraction_errors": 0, - "nhi_forward_raw_csv_extraction_files": 0, - "nhi_forward_raw_csv_extraction_rows": 0, - "nhi_forward_raw_csv_extraction_status": "nhi_pedot_forward_raw_csv_value_extraction_no_raw_csv", - "nhi_forward_rows": 28, - "nhi_forward_source_drop_dirs": 28, - "nhi_forward_source_drop_existing_files": 0, - "nhi_forward_source_drop_missing_files": 592, - "nhi_forward_source_drop_planned_files": 592, - "nhi_forward_source_drop_status": "nhi_pedot_forward_source_drop_plan_ready", - "nhi_forward_source_import_errors": 0, - "nhi_forward_source_import_files": 2, - "nhi_forward_source_import_imported_rows": 0, - "nhi_forward_source_import_rows": 592, - "nhi_forward_source_import_status": "nhi_pedot_forward_source_value_import_no_importable_rows", - "nhi_forward_source_template_pack_status": "nhi_pedot_forward_source_file_template_pack_ready", - "nhi_forward_source_template_pack_target_files": 592, - "nhi_forward_source_template_pack_templates": 6, - "nhi_forward_source_values_filled_rows": 0, - "nhi_forward_source_values_import_ready_rows": 0, - "nhi_forward_source_values_rows": 592, - "nhi_forward_source_values_source_file_exists_rows": 0, - "nhi_forward_source_values_status": "nhi_pedot_forward_source_values_sheet_ready", - "nhi_forward_status": "preregistered_waiting_for_h_a", - "nhi_long_raw_csv_extraction_errors": 0, - "nhi_long_raw_csv_extraction_files": 0, - "nhi_long_raw_csv_extraction_rows": 0, - "nhi_long_raw_csv_extraction_status": "nhi_pedot_long_raw_csv_value_extraction_no_raw_csv", - "nhi_long_result_rows": 0, - "nhi_long_result_status": "no_data", - "nhi_long_source_drop_dirs": 156, - "nhi_long_source_drop_existing_files": 0, - "nhi_long_source_drop_missing_files": 4836, - "nhi_long_source_drop_planned_files": 4836, - "nhi_long_source_drop_status": "nhi_pedot_long_source_drop_plan_ready", - "nhi_long_source_import_errors": 0, - "nhi_long_source_import_files": 2, - "nhi_long_source_import_imported_rows": 0, - "nhi_long_source_import_rows": 4836, - "nhi_long_source_import_status": "nhi_pedot_long_source_value_import_no_importable_rows", - "nhi_long_source_template_pack_status": "nhi_pedot_long_source_file_template_pack_ready", - "nhi_long_source_template_pack_target_files": 4836, - "nhi_long_source_template_pack_templates": 5, - "nhi_long_source_values_filled_rows": 0, - "nhi_long_source_values_import_ready_rows": 0, - "nhi_long_source_values_rows": 4836, - "nhi_long_source_values_source_file_exists_rows": 0, - "nhi_long_source_values_status": "nhi_pedot_long_source_values_sheet_ready", - "nhi_pedot_claim_blockers": [ - "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "NHI-PEDOT coupon gates are `no_data`, not `nhi_pedot_passes_gates`.", - "NHI-PEDOT H-B/H-C forward gate package is preregistered and waiting for H-A, not measured evidence.", - "NHI-PEDOT long-duration gates are `no_data`, not `nhi_pedot_long_passes_gates`.", - "NHI-PEDOT H-A sentinel source has no measured run rows.", - "NHI-PEDOT H-A sentinel source contains placeholder or pending-measurement rows.", - "NHI-PEDOT coupon source has no measured run rows.", - "NHI-PEDOT long-duration source has no measured run rows." - ], - "portfolio_bypass_non_h_a_candidate_rows": 1, - "portfolio_bypass_non_h_a_claim_ready_rows": 0, - "portfolio_bypass_recommended_action": "run_zrc_phase_a_real_measurements_before_any_non_h_a_claim", - "portfolio_bypass_status": "no_h_a_bypass_claim_ready", - "portfolio_bypass_top_non_h_a_candidate": "limina_all_dry_zwitterionic_external_v0_1", - "second_wave_candidate_queue_hold_rows": 2, - "second_wave_candidate_queue_ready_scope_lock_rows": 2, - "second_wave_candidate_queue_rows": 6, - "second_wave_candidate_queue_status": "second_wave_candidate_queue_ready_while_first_wave_waits", - "second_wave_candidate_queue_watch_rows": 2, - "second_wave_scope_lock_pack_claim_evidence_created": false, - "second_wave_scope_lock_pack_ready_candidates": 2, - "second_wave_scope_lock_pack_source_classes": 5, - "second_wave_scope_lock_pack_status": "second_wave_scope_lock_pack_ready", - "second_wave_scope_lock_pack_tasks": 8, - "smoke_capture_local_or_record_tasks": 152, - "smoke_capture_outsource_tasks": 20, - "smoke_capture_preflight_errors": 0, - "smoke_capture_preflight_filled_tasks": 0, - "smoke_capture_preflight_pending_tasks": 172, - "smoke_capture_preflight_ready": false, - "smoke_capture_preflight_status": "local_capture_preflight_awaiting_entries", - "smoke_capture_preflight_warnings": 0, - "smoke_capture_task_count": 172, - "smoke_capture_tranche_status": "smoke_capture_tranche_ready", - "smoke_entry_apply_applied_values": 0, - "smoke_entry_apply_errors": 0, - "smoke_entry_apply_status": "smoke_entry_apply_no_filled_rows", - "smoke_entry_sheet_filled_value_rows": 0, - "smoke_entry_sheet_ready_rows": 0, - "smoke_entry_sheet_rows": 172, - "smoke_entry_sheet_status": "smoke_entry_sheet_ready", - "smoke_execution_queue_awaiting_rows": 172, - "smoke_execution_queue_h_a_rows": 114, - "smoke_execution_queue_rows": 172, - "smoke_execution_queue_source_ready_rows": 0, - "smoke_execution_queue_status": "smoke_execution_queue_ready", - "smoke_execution_queue_zrc_rows": 58, - "smoke_raw_csv_extraction_errors": 0, - "smoke_raw_csv_extraction_files": 0, - "smoke_raw_csv_extraction_rows": 0, - "smoke_raw_csv_extraction_status": "smoke_raw_csv_value_extraction_no_raw_csv", - "smoke_rehearsal_errors": 0, - "smoke_rehearsal_filled_tasks": 0, - "smoke_rehearsal_h_a_qc_status": "-", - "smoke_rehearsal_pending_tasks": 172, - "smoke_rehearsal_preflight_ready": false, - "smoke_rehearsal_preflight_status": "local_capture_preflight_awaiting_entries", - "smoke_rehearsal_status": "smoke_rehearsal_waiting_for_preflight", - "smoke_rehearsal_warnings": 0, - "smoke_rehearsal_zrc_validation_status": "-", - "smoke_source_drop_dirs": 10, - "smoke_source_drop_existing_files": 0, - "smoke_source_drop_missing_files": 172, - "smoke_source_drop_planned_files": 172, - "smoke_source_drop_status": "smoke_source_drop_plan_ready", - "smoke_source_value_import_errors": 0, - "smoke_source_value_import_files": 3, - "smoke_source_value_import_imported_rows": 0, - "smoke_source_value_import_rows": 182, - "smoke_source_value_import_status": "smoke_source_value_import_no_importable_rows", - "smoke_source_values_sheet_filled_rows": 0, - "smoke_source_values_sheet_import_ready_rows": 0, - "smoke_source_values_sheet_rows": 172, - "smoke_source_values_sheet_starter_rows": 19, - "smoke_source_values_sheet_status": "smoke_source_values_sheet_ready", - "smoke_starter_batch_blocked_rows": 19, - "smoke_starter_batch_readiness_status": "smoke_starter_batch_awaiting_values", - "smoke_starter_batch_ready_rows": 0, - "smoke_starter_batch_rows": 19, - "smoke_starter_execution_pack_dirs": 1, - "smoke_starter_execution_pack_existing_files": 0, - "smoke_starter_execution_pack_rows": 19, - "smoke_starter_execution_pack_status": "smoke_starter_execution_pack_ready", - "smoke_starter_template_pack_rows": 19, - "smoke_starter_template_pack_status": "smoke_starter_raw_file_template_pack_ready", - "smoke_starter_template_pack_templates": 8, - "smoke_unstructured_intake_invalid": 0, - "smoke_unstructured_intake_missing": 10, - "smoke_unstructured_intake_ready": 0, - "smoke_unstructured_intake_rows": 10, - "smoke_unstructured_intake_status": "smoke_unstructured_source_intake_waiting_for_files", - "smoke_unstructured_review_values_filled_rows": 0, - "smoke_unstructured_review_values_import_ready_rows": 0, - "smoke_unstructured_review_values_invalid_sources": 0, - "smoke_unstructured_review_values_ready_sources": 0, - "smoke_unstructured_review_values_rows": 10, - "smoke_unstructured_review_values_status": "smoke_unstructured_review_values_waiting_for_source_files", - "source_file_allowed_root_count": 12, - "source_file_expected_class_count": 12, - "source_file_inventory_capture_reference_count": 0, - "source_file_inventory_file_count": 0, - "source_file_inventory_missing_reference_count": 0, - "source_file_inventory_reference_count": 0, - "source_file_inventory_source_value_reference_count": 0, - "source_file_inventory_status": "source_file_inventory_empty", - "source_file_inventory_unreferenced_file_count": 0, - "source_file_manifest_status": "source_file_manifest_ready", - "state_reason": "Replace fixture, pending, and record_actual/record_lot placeholders with real measured provenance before interpreting H-A.", - "status": "cycle_state_built", - "variant_ladder_top": "alg_lam_pedot_0p6pct_lead", - "zrc_measurement_merge_inserted": 0, - "zrc_measurement_merge_output_rows": 0, - "zrc_measurement_merge_status": "awaiting_measurement_file", - "zrc_measurement_merge_updated": 0, - "zrc_next_recommended_rows": 8, - "zrc_next_status": "needs_phase_a_sentinel", - "zrc_phase_a_chain_rows": 16, - "zrc_phase_a_chain_status": "ready_for_phase_a_sample_handoff", - "zrc_phase_a_contact_plan_status": "contact_plan_ready", - "zrc_phase_a_contact_ready_count": 4, - "zrc_phase_a_contact_row_count": 8, - "zrc_phase_a_contact_standby_count": 4, - "zrc_phase_a_delivery_missing_files": 0, - "zrc_phase_a_delivery_status": "ready_to_send", - "zrc_phase_a_execution_authorization_errors": 0, - "zrc_phase_a_execution_authorization_rows": 0, - "zrc_phase_a_execution_authorization_status": "zrc_nd_phase_a_execution_authorization_waiting_for_selected_provider", - "zrc_phase_a_execution_authorization_valid_rows": 0, - "zrc_phase_a_execution_release_authorization_blockers": 0, - "zrc_phase_a_execution_release_blockers": 1, - "zrc_phase_a_execution_release_ready": false, - "zrc_phase_a_execution_release_released": false, - "zrc_phase_a_execution_release_status": "zrc_nd_phase_a_execution_release_blocked_no_source_backed_provider_selection", - "zrc_phase_a_pending_transfer_rows": 16, - "zrc_phase_a_quote_selection_reply_count": 0, - "zrc_phase_a_quote_selection_sent_count": 0, - "zrc_phase_a_quote_selection_shortlist_count": 0, - "zrc_phase_a_quote_selection_source_backed_reply_count": 0, - "zrc_phase_a_quote_selection_status": "pending_outreach", - "zrc_phase_a_quote_tracker_status": "pending_outreach", - "zrc_phase_a_raw_csv_extraction_errors": 0, - "zrc_phase_a_raw_csv_extraction_files": 0, - "zrc_phase_a_raw_csv_extraction_rows": 0, - "zrc_phase_a_raw_csv_extraction_status": "zrc_nd_phase_a_raw_csv_value_extraction_no_raw_csv", - "zrc_phase_a_rfq_dispatch_archive_files": 24, - "zrc_phase_a_rfq_dispatch_archive_hash_mismatches": 0, - "zrc_phase_a_rfq_dispatch_archive_missing_files": 0, - "zrc_phase_a_rfq_dispatch_archive_path": "data/zrc_nd_phase_a_rfq_dispatch_archive/zrc_nd_phase_a_rfq_dispatch_archive.zip", - "zrc_phase_a_rfq_dispatch_archive_sha256": "2a2ca661089a7d5ae0a91205968a383b98d7fbd90cea45c46fd4f6c8eab917d7", - "zrc_phase_a_rfq_dispatch_archive_status": "zrc_phase_a_rfq_dispatch_archive_ready", - "zrc_phase_a_rfq_dispatch_manifest_blocked_rows": 0, - "zrc_phase_a_rfq_dispatch_manifest_ready_rows": 4, - "zrc_phase_a_rfq_dispatch_manifest_rows": 4, - "zrc_phase_a_rfq_dispatch_manifest_status": "zrc_phase_a_rfq_dispatch_manifest_ready", - "zrc_phase_a_rfq_outbox_quote_count": 4, - "zrc_phase_a_rfq_outbox_ready_count": 4, - "zrc_phase_a_rfq_outbox_status": "ready_to_send_outbox", - "zrc_phase_a_rfq_reply_action_pack_awaiting_reply_rows": 0, - "zrc_phase_a_rfq_reply_action_pack_needs_source_rows": 0, - "zrc_phase_a_rfq_reply_action_pack_ready_apply_rows": 0, - "zrc_phase_a_rfq_reply_action_pack_rows": 4, - "zrc_phase_a_rfq_reply_action_pack_status": "zrc_phase_a_rfq_reply_action_pack_waiting_for_send", - "zrc_phase_a_rfq_reply_action_pack_waiting_send_rows": 4, - "zrc_phase_a_rfq_reply_intake_applied_rows": 0, - "zrc_phase_a_rfq_reply_intake_files": 0, - "zrc_phase_a_rfq_reply_intake_needs_review_rows": 0, - "zrc_phase_a_rfq_reply_intake_needs_verified_send_rows": 0, - "zrc_phase_a_rfq_reply_intake_status": "zrc_nd_phase_a_rfq_reply_intake_waiting_for_reply_files", - "zrc_phase_a_rfq_reply_log_applied_fields": 0, - "zrc_phase_a_rfq_reply_log_errors": 0, - "zrc_phase_a_rfq_reply_log_received_rows": 0, - "zrc_phase_a_rfq_reply_log_rows": 4, - "zrc_phase_a_rfq_reply_log_status": "zrc_nd_phase_a_rfq_reply_log_waiting_for_reply_files", - "zrc_phase_a_rfq_reply_log_valid_rows": 0, - "zrc_phase_a_rfq_send_cockpit_confirmations": 0, - "zrc_phase_a_rfq_send_cockpit_html": "reports/zrc_nd_phase_a_rfq_send_cockpit.html", - "zrc_phase_a_rfq_send_cockpit_missing_bundle": 0, - "zrc_phase_a_rfq_send_cockpit_missing_email": 0, - "zrc_phase_a_rfq_send_cockpit_ready_rows": 4, - "zrc_phase_a_rfq_send_cockpit_replies": 0, - "zrc_phase_a_rfq_send_cockpit_rows": 4, - "zrc_phase_a_rfq_send_cockpit_status": "zrc_phase_a_rfq_send_cockpit_ready_for_manual_send", - "zrc_phase_a_rfq_send_confirmation_entry_apply_applied_rows": 0, - "zrc_phase_a_rfq_send_confirmation_entry_apply_blocked_rows": 0, - "zrc_phase_a_rfq_send_confirmation_entry_apply_rows": 0, - "zrc_phase_a_rfq_send_confirmation_entry_apply_status": "zrc_phase_a_rfq_send_confirmation_entry_apply_no_apply_rows", - "zrc_phase_a_rfq_send_confirmation_entry_sheet_blocked_rows": 0, - "zrc_phase_a_rfq_send_confirmation_entry_sheet_ready_rows": 0, - "zrc_phase_a_rfq_send_confirmation_entry_sheet_rows": 4, - "zrc_phase_a_rfq_send_confirmation_entry_sheet_source_files": 0, - "zrc_phase_a_rfq_send_confirmation_entry_sheet_status": "zrc_phase_a_rfq_send_confirmation_entry_sheet_waiting_for_confirmation_files", - "zrc_phase_a_rfq_send_confirmation_intake_applied_rows": 0, - "zrc_phase_a_rfq_send_confirmation_intake_bundle_matched_rows": 0, - "zrc_phase_a_rfq_send_confirmation_intake_files": 0, - "zrc_phase_a_rfq_send_confirmation_intake_needs_review_rows": 0, - "zrc_phase_a_rfq_send_confirmation_intake_status": "zrc_nd_phase_a_rfq_send_confirmation_intake_waiting_for_confirmation_files", - "zrc_phase_a_rfq_send_log_applied_dates": 0, - "zrc_phase_a_rfq_send_log_errors": 0, - "zrc_phase_a_rfq_send_log_rows": 4, - "zrc_phase_a_rfq_send_log_sent_rows": 0, - "zrc_phase_a_rfq_send_log_status": "zrc_nd_phase_a_rfq_send_log_waiting_for_sent_entries", - "zrc_phase_a_rfq_send_log_valid_sent_rows": 0, - "zrc_phase_a_rfq_status": "ready_to_send_rfq", - "zrc_phase_a_sample_label_count": 16, - "zrc_phase_a_service_runs": 8, - "zrc_phase_a_service_status": "ready_to_request_real_phase_a_measurements", - "zrc_phase_a_source_drop_dirs": 8, - "zrc_phase_a_source_drop_existing_files": 0, - "zrc_phase_a_source_drop_missing_files": 304, - "zrc_phase_a_source_drop_planned_files": 304, - "zrc_phase_a_source_drop_status": "zrc_nd_phase_a_source_drop_plan_ready", - "zrc_phase_a_source_import_errors": 0, - "zrc_phase_a_source_import_imported_rows": 0, - "zrc_phase_a_source_import_rows": 304, - "zrc_phase_a_source_import_status": "zrc_nd_phase_a_source_value_import_no_importable_rows", - "zrc_phase_a_source_template_pack_status": "zrc_nd_phase_a_source_file_template_pack_ready", - "zrc_phase_a_source_template_pack_target_files": 304, - "zrc_phase_a_source_template_pack_templates": 8, - "zrc_phase_a_source_values_filled_rows": 0, - "zrc_phase_a_source_values_import_ready_rows": 0, - "zrc_phase_a_source_values_rows": 304, - "zrc_phase_a_source_values_status": "zrc_nd_phase_a_source_values_sheet_ready", - "zrc_phase_a_vendor_bundle_entry_apply_bundles": 0, - "zrc_phase_a_vendor_bundle_entry_apply_errors": 0, - "zrc_phase_a_vendor_bundle_entry_apply_rows": 0, - "zrc_phase_a_vendor_bundle_entry_apply_source_rows": 0, - "zrc_phase_a_vendor_bundle_entry_apply_status": "zrc_phase_a_vendor_bundle_entry_apply_no_apply_rows", - "zrc_phase_a_vendor_bundle_entry_sheet_blocked_rows": 0, - "zrc_phase_a_vendor_bundle_entry_sheet_bundles": 64, - "zrc_phase_a_vendor_bundle_entry_sheet_ready_rows": 0, - "zrc_phase_a_vendor_bundle_entry_sheet_status": "zrc_phase_a_vendor_bundle_entry_sheet_ready", - "zrc_phase_a_vendor_first_wave_count": 4, - "zrc_phase_a_vendor_outreach_status": "ready_for_vendor_screening", - "zrc_phase_a_vendor_return_export_files": 0, - "zrc_phase_a_vendor_return_rows": 0, - "zrc_phase_a_vendor_return_status": "awaiting_vendor_return_files", - "zrc_readiness": "not_suitable_yet_no_measured_data", - "zrc_run_completeness_measured_known_rows": 0, - "zrc_run_completeness_planned_rows": 132, - "zrc_run_completeness_status": "no_measured_rows", - "zrc_sentinel_rows": 0, - "zrc_sentinel_status": "no_sentinel_rows", - "zrc_suitable": false, - "zrc_validation_result_rows": 0, - "zrc_validation_result_status": "no_data" -} \ No newline at end of file diff --git a/data/limina_discovery_ranking.json b/data/limina_discovery_ranking.json deleted file mode 100644 index c62bddf..0000000 --- a/data/limina_discovery_ranking.json +++ /dev/null @@ -1,289 +0,0 @@ -{ - "items": [ - { - "evidence_refs": [ - "pedot_neural_culture_hydrogel_2025", - "pedot_brain_monitoring_2025", - "hydrogel_neural_tissue_2020", - "dnt_nam_viability_neurite_mea_2022" - ], - "gate_failures": [], - "id": "limina_alg_lam_pedot_lowdose_v0_2", - "known_risks": [ - "PEDOT:PSS or PSS-related extractables could still harm long-lived cultures.", - "Hydrogel swelling or delamination can erase electrochemical benefits.", - "Published neural culture format must be adapted to the actual MEA geometry." - ], - "lane": "LIMINA-Cell-1", - "name": "ALG-LAM-PEDOT Low-Dose Neural Hydrogel Interphase", - "near_term_test": "Lock the H-A sentinel to alginate-laminin low-dose PEDOT:PSS and fill acellular medium, physical stability, and electrochemical fields before any live-cell expansion.", - "priority": "promote_now", - "rank": 1, - "status": "promote_to_recipe_specific_validation", - "weighted_score": 4.285 - }, - { - "evidence_refs": [ - "pedot_neural_culture_hydrogel_2025", - "pedot_brain_monitoring_2025", - "gelma_pedot_micropatterning_2026", - "neuronal_network_material_biocompatibility_mea_2013" - ], - "gate_failures": [], - "id": "limina_pda_anchor_alg_lam_pedot_window_v0_1", - "known_risks": [ - "Primer chemistry may add its own extractables.", - "Localized conductive domains may be harder to fabricate reproducibly.", - "Anchoring can improve stability while reducing softness at the cell interface." - ], - "lane": "LIMINA-Cell-1", - "name": "PDA-Anchored ALG-LAM-PEDOT Electrode-Window Interphase", - "near_term_test": "Add one anchored lead article to H-B electrochemical/physical stability only after the acellular H-A blank passes for the unanchored low-dose lead.", - "priority": "parallel_screen", - "rank": 2, - "status": "parallel_design_variant", - "weighted_score": 3.67 - }, - { - "evidence_refs": [ - "all_dry_zwitterionic_gradient_2024", - "zwitterionic_membrane_antifouling_2016", - "zwitterionic_cellulose_acetate_hfm_2026", - "organ_chip_perfusion_review_2022" - ], - "gate_failures": [], - "id": "limina_all_dry_zwitterionic_external_v0_1", - "known_risks": [ - "Coating could change extractables or optical inspection properties.", - "It may not solve protein loss if the MWCO membrane itself dominates adsorption.", - "Not yet validated in CL1-like neuronal medium." - ], - "lane": "LIMINA-External-1", - "name": "All-Dry Zwitterionic Gradient External-Fluidic Coating", - "near_term_test": "Run as a coating-on-housing comparator after ZRC-ND Phase A sentinel defines whether adsorption/fouling is the limiting failure mode.", - "priority": "parallel_screen", - "rank": 3, - "status": "external_surface_rescue_candidate", - "weighted_score": 3.5 - }, - { - "evidence_refs": [ - "alg_gel_pedot_ppy_biointerface_2026", - "gelma_pedot_composite_2018", - "conductive_hydrogels_2025", - "iso_10993_5_cytotoxicity_extract_fda" - ], - "gate_failures": [], - "id": "limina_alg_gel_pedot_ppy_lowoxidant_v0_1", - "known_risks": [ - "Fibroblast cytocompatibility is not a neuronal-network compatibility claim.", - "PPy oxidation chemistry can leave residues that matter in long-lived neural cultures.", - "High conductivity may trade off with optical transparency or softness." - ], - "lane": "LIMINA-Cell-1", - "name": "Alg-Gel PEDOT/PPy Low-Oxidant Biointerface Comparator", - "near_term_test": "Use only after ALG-LAM-PEDOT H-A/H-B establishes a baseline; run as an acellular H-B conductivity/stability comparator with strict extract and shedding fields.", - "priority": "watch", - "rank": 4, - "status": "electrochemical_comparator_candidate", - "weighted_score": 3.192 - }, - { - "evidence_refs": [ - "zwitterionic_pedot_eeg_hydrogel_2025", - "pedot_brain_monitoring_2025", - "pedot_bio_sei_2026", - "conductive_hydrogels_2025" - ], - "gate_failures": [], - "id": "limina_zwitterionic_pedot_hydrogel_v0_1", - "known_risks": [ - "In vivo electrode evidence does not prove in vitro neuronal network compatibility.", - "Zwitterionic monomers and crosslinkers can create new leachable risks.", - "Fabrication complexity may slow the first suitability claim." - ], - "lane": "LIMINA-Cell-1", - "name": "Zwitterionic PEDOT:PSS Hydrated Electrode Hydrogel", - "near_term_test": "Do not displace ALG-LAM-PEDOT yet; use as a later comparator if acellular extract and impedance data look better than the alginate-laminin lead.", - "priority": "watch", - "rank": 5, - "status": "watch_for_second_wave", - "weighted_score": 3.171 - }, - { - "evidence_refs": [ - "pedot_sgagh_electronic_ecm_2026", - "pedot_bio_sei_2026", - "conductive_hydrogels_2025", - "hydrogel_neural_tissue_2020" - ], - "gate_failures": [ - "measurement_accessibility below 3: The next claim candidate must be testable with near-term coupon, medium, or simple material measurements." - ], - "id": "limina_pedot_sgagh_ecm_signal_hydrogel_v0_1", - "known_risks": [ - "High novelty comes with synthesis, procurement, and reproducibility uncertainty.", - "Growth-factor binding is attractive but could perturb neuronal differentiation or maturation in unwanted directions.", - "No direct long-duration human neuronal-network compatibility evidence yet." - ], - "lane": "LIMINA-Cell-1", - "name": "PEDOT:sGAGh Electronic ECM Signal Hydrogel", - "near_term_test": "Keep behind ALG-LAM-PEDOT until a small H-A/H-B witness coupon can show clean extract behavior, stable pH/osmolality/conductivity, retained BDNF/laminin signal, and no delamination.", - "priority": "hold", - "rank": 6, - "status": "high_novelty_horizon_scan", - "weighted_score": 3.198 - }, - { - "evidence_refs": [ - "mlmea_organoid_depth_interface_2026", - "eflower_hydrogel_actuated_3d_mea_2024", - "shape_conformal_organoid_framework_2026", - "neuronal_network_material_biocompatibility_mea_2013" - ], - "gate_failures": [ - "measurement_accessibility below 3: The next claim candidate must be testable with near-term coupon, medium, or simple material measurements." - ], - "id": "limina_hydrogel_actuated_multilayer_3d_mea_v0_1", - "known_risks": [ - "Fabrication is much harder than a planar witness coupon.", - "Pt-black, PDMS, and actuator hydrogels each need extractables, adsorption, and stability checks.", - "Organoid electrophysiology evidence does not directly prove compatibility with the current CL1-like planar path." - ], - "lane": "LIMINA-Cell-1", - "name": "Hydrogel-Actuated Multilayer 3D Organoid MEA Interface", - "near_term_test": "Keep as a device-architecture horizon scan; extract a simplified witness-coupon plan only after the planar ALG-LAM-PEDOT H-A/H-B route has real data.", - "priority": "hold", - "rank": 7, - "status": "3d_organoid_horizon_scan", - "weighted_score": 3.17 - }, - { - "evidence_refs": [ - "anisotropic_spedot_psbma_hydrogel_2026", - "zwitterionic_pedot_eeg_hydrogel_2025", - "topologically_entangled_psbma_hydrogel_2026", - "conductive_hydrogels_2025" - ], - "gate_failures": [ - "measurement_accessibility below 3: The next claim candidate must be testable with near-term coupon, medium, or simple material measurements." - ], - "id": "limina_anisotropic_spedot_psbma_hydrogel_v0_1", - "known_risks": [ - "Physiological monitoring evidence is not direct neuronal-network compatibility evidence.", - "Zwitterionic antifouling chemistry may interfere with laminin presentation unless a cell-adhesion layer is engineered.", - "Synthesis and alignment may be harder to reproduce than the current alginate-laminin PEDOT:PSS route." - ], - "lane": "LIMINA-Cell-1", - "name": "Anisotropic S-PEDOT/PSBMA Antifouling Hydrogel Electrode", - "near_term_test": "Do not displace ALG-LAM-PEDOT. If formulation access is practical, run a tiny acellular witness coupon for pH, osmolality, conductivity, protein adsorption, swelling, delamination, transparency, and 1 kHz impedance before any neural work.", - "priority": "hold", - "rank": 8, - "status": "high_novelty_antifouling_conductive_hydrogel", - "weighted_score": 3.067 - }, - { - "evidence_refs": [ - "cameo_cnt_organoid_mea_2026", - "shape_conformal_organoid_framework_2026", - "neuronal_network_material_biocompatibility_mea_2013", - "iso_10993_5_cytotoxicity_extract_fda" - ], - "gate_failures": [ - "measurement_accessibility below 3: The next claim candidate must be testable with near-term coupon, medium, or simple material measurements.", - "integration_risk_control below 2.5: Direct cell-contact candidates with uncontrolled leachables or fabrication risk should not be first-claim leads." - ], - "id": "limina_cameo_cnt_organoid_frame_v0_1", - "known_risks": [ - "CNT exposure is a major long-duration neural culture uncertainty.", - "The value may be device geometry rather than material chemistry.", - "Fabrication may not be accessible on the current local project timeline." - ], - "lane": "LIMINA-Cell-1", - "name": "CNT Organoid MEA Recording Frame", - "near_term_test": "Do not place in first-claim path; use as a literature/device benchmark until CNT exposure, particle release, and long-duration neural health risks are bounded.", - "priority": "hold", - "rank": 9, - "status": "device_side_horizon_scan", - "weighted_score": 2.802 - }, - { - "evidence_refs": [ - "op_apa_self_adaptive_hydrogel_2026", - "hydrogel_neural_tissue_2020", - "conductive_hydrogels_2025" - ], - "gate_failures": [ - "measurement_accessibility below 3: The next claim candidate must be testable with near-term coupon, medium, or simple material measurements.", - "proof_gap_clarity below 3: The next experiments must have clear pass/fail criteria, not only a broad research direction.", - "integration_risk_control below 2.5: Direct cell-contact candidates with uncontrolled leachables or fabrication risk should not be first-claim leads." - ], - "id": "limina_op_apa_fillerfree_hydrogel_v0_1", - "known_risks": [ - "Preprint-level evidence.", - "Reproducibility and sourcing are uncertain.", - "First proof requires more materials work before coupon validation." - ], - "lane": "LIMINA-Cell-1", - "name": "OP-APA Filler-Free Adaptive Bioelectronic Hydrogel", - "near_term_test": "Keep as literature-watch until formulation access, independent replication, extract chemistry, and neural culture compatibility are clearer.", - "priority": "hold", - "rank": 10, - "status": "watch_high_novelty", - "weighted_score": 2.799 - }, - { - "evidence_refs": [ - "topologically_entangled_psbma_hydrogel_2026", - "zwitterionic_membrane_antifouling_2016", - "hydrogel_neural_tissue_2020", - "iso_10993_5_cytotoxicity_extract_fda" - ], - "gate_failures": [ - "measurement_accessibility below 3: The next claim candidate must be testable with near-term coupon, medium, or simple material measurements.", - "proof_gap_clarity below 3: The next experiments must have clear pass/fail criteria, not only a broad research direction." - ], - "id": "limina_entangled_zwitterionic_mechanoadaptive_matrix_v0_1", - "known_risks": [ - "No direct neural-network or MEA evidence yet.", - "Zwitterionic non-fouling behavior may resist the very protein adhesion needed for neurons.", - "Synthesis and functionalization need a clearer near-term recipe before coupon testing." - ], - "lane": "LIMINA-Cell-1", - "name": "Entangled Zwitterionic Mechanoadaptive Hydrogel Matrix", - "near_term_test": "Do not promote yet; first require extract chemistry, laminin presentation, neural adhesion, and medium-stability witness coupons.", - "priority": "hold", - "rank": 11, - "status": "mechanics_low_fouling_horizon_scan", - "weighted_score": 2.761 - }, - { - "evidence_refs": [ - "mxene_adhesive_hydrogel_bmi_2025", - "conductive_hydrogels_2025", - "iso_10993_5_cytotoxicity_extract_fda" - ], - "gate_failures": [ - "measurement_accessibility below 3: The next claim candidate must be testable with near-term coupon, medium, or simple material measurements.", - "proof_gap_clarity below 3: The next experiments must have clear pass/fail criteria, not only a broad research direction.", - "integration_risk_control below 2.5: Direct cell-contact candidates with uncontrolled leachables or fabrication risk should not be first-claim leads." - ], - "id": "limina_mxene_gel_oha_sensing_hydrogel_v0_1", - "known_risks": [ - "Nanomaterial leaching or particle shedding could dominate neural toxicity.", - "Adhesive performance may not translate to transparent MEA culture.", - "The proof gap is larger than for PEDOT:PSS hydrogel routes." - ], - "lane": "LIMINA-Cell-1", - "name": "MXene-Gel/OHA Conductive Adhesive Hydrogel Comparator", - "near_term_test": "Use only as an acellular extract and impedance comparator after safer PEDOT:PSS and hydrogel-only leads establish a baseline.", - "priority": "hold", - "rank": 12, - "status": "hold_direct_cell_contact", - "weighted_score": 2.597 - } - ], - "status": "ranked", - "top_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "top_priority": "promote_now" -} \ No newline at end of file diff --git a/data/limina_discovery_scoring_profile.json b/data/limina_discovery_scoring_profile.json deleted file mode 100644 index 5a320cb..0000000 --- a/data/limina_discovery_scoring_profile.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": "0.1", - "purpose": "Rank material-technology prospects by how quickly they can produce defensible evidence for the first LIMINA suitability claim.", - "weights": { - "direct_neural_cell_evidence": 0.22, - "time_to_first_gate": 0.16, - "measurement_accessibility": 0.14, - "optimization_space": 0.14, - "novelty_upside": 0.11, - "integration_risk_control": 0.12, - "manufacturability": 0.06, - "proof_gap_clarity": 0.05 - }, - "gates": [ - { - "field": "measurement_accessibility", - "minimum": 3, - "reason": "The next claim candidate must be testable with near-term coupon, medium, or simple material measurements." - }, - { - "field": "proof_gap_clarity", - "minimum": 3, - "reason": "The next experiments must have clear pass/fail criteria, not only a broad research direction." - }, - { - "field": "integration_risk_control", - "minimum": 2.5, - "reason": "Direct cell-contact candidates with uncontrolled leachables or fabrication risk should not be first-claim leads." - } - ], - "score_scale": { - "1": "weak or unclear", - "2": "early and risky", - "3": "plausible but still incomplete", - "4": "strong near-term candidate", - "5": "best available for first-claim progress" - } -} diff --git a/data/limina_execution_authorization_log_regression.json b/data/limina_execution_authorization_log_regression.json deleted file mode 100644 index 12b3d3a..0000000 --- a/data/limina_execution_authorization_log_regression.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "authorized_status": "regression_execution_authorization_authorized", - "bad_hash_status": "regression_execution_authorization_has_errors", - "checks": { - "bad_hash_rejected": true, - "initial_waits_for_authorization": true, - "unbacked_selected_provider_rejected": true, - "valid_authorization_is_accepted": true - }, - "initial_status": "regression_execution_authorization_waiting_for_human_authorization", - "status": "pass", - "unbacked_status": "regression_execution_authorization_has_errors" -} \ No newline at end of file diff --git a/data/limina_execution_release_regression.json b/data/limina_execution_release_regression.json deleted file mode 100644 index 653139a..0000000 --- a/data/limina_execution_release_regression.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "checks": { - "no_source_backed_selected_provider_blocks": true, - "selected_provider_must_have_verified_send_log": true, - "selected_without_source_backing_blocks": true, - "source_backed_selected_provider_can_reach_authorization_ready": true, - "valid_authorization_releases_execution": true - }, - "no_selection_status": "regression_execution_release_blocked_no_source_backed_provider_selection", - "ready_status": "regression_execution_release_ready_for_human_authorization", - "released_status": "regression_execution_release_released_for_execution", - "status": "pass", - "unbacked_selection_status": "regression_execution_release_blocked_no_source_backed_provider_selection", - "unsent_selection_status": "regression_execution_release_blocked" -} \ No newline at end of file diff --git a/data/limina_first_wave_post_dispatch_processing.json b/data/limina_first_wave_post_dispatch_processing.json deleted file mode 100644 index d8c7cac..0000000 --- a/data/limina_first_wave_post_dispatch_processing.json +++ /dev/null @@ -1,384 +0,0 @@ -{ - "boundary": "This processing step handles outreach and sourcing artifacts only. It does not create measurements, authorize execution, or support a material suitability claim without real returned measurement rows.", - "commands": [ - { - "argv": [ - "scripts/intake_limina_rfq_send_confirmations.py", - "--profile", - "h_a" - ], - "elapsed_seconds": 0.042, - "id": "intake_h_a_send_confirmations", - "purpose": "Register source-backed H-A sent-email or web-form confirmations.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "NHI-PEDOT H-A RFQ send confirmation intake: nhi_pedot_h_a_rfq_send_confirmation_intake_waiting_for_confirmation_files\nFiles scanned: 0\nApplied rows: 0\nNeeds review: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_confirmation_intake.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_confirmation_intake.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_send_confirmation_intake.md", - "track": "h_a" - }, - { - "argv": [ - "scripts/render_nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.py" - ], - "elapsed_seconds": 0.028, - "id": "render_h_a_non_eml_confirmation_sheet", - "purpose": "Refresh guarded H-A manual-confirmation rows for non-EML confirmations.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "H-A RFQ send confirmation entry sheet: h_a_rfq_send_confirmation_entry_sheet_waiting_for_confirmation_files\nReady to apply: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.md", - "track": "h_a" - }, - { - "argv": [ - "scripts/apply_nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.py" - ], - "elapsed_seconds": 0.027, - "id": "apply_h_a_non_eml_confirmation_sheet", - "purpose": "Apply reviewed H-A non-EML confirmation entries into the send log.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "H-A RFQ send confirmation entry apply: h_a_rfq_send_confirmation_entry_apply_no_apply_rows\nApplied: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.md", - "track": "h_a" - }, - { - "argv": [ - "scripts/apply_limina_rfq_send_log.py", - "--profile", - "h_a" - ], - "elapsed_seconds": 0.035, - "id": "apply_h_a_send_log", - "purpose": "Apply verified H-A send rows into the quote tracker.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "NHI-PEDOT H-A RFQ send log: nhi_pedot_h_a_rfq_send_log_waiting_for_sent_entries\nRows: 4\nSent rows: 0\nApplied tracker contact dates: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_log.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_log.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_send_log.md", - "track": "h_a" - }, - { - "argv": [ - "scripts/intake_limina_rfq_replies.py", - "--profile", - "h_a" - ], - "elapsed_seconds": 0.043, - "id": "intake_h_a_replies", - "purpose": "Register original H-A reply source files for review.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "NHI-PEDOT H-A RFQ reply intake: nhi_pedot_h_a_rfq_reply_intake_waiting_for_reply_files\nFiles scanned: 0\nApplied rows: 0\nNeeds manual review: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_reply_intake.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_reply_intake.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_reply_intake.md", - "track": "h_a" - }, - { - "argv": [ - "scripts/apply_limina_rfq_reply_log.py", - "--profile", - "h_a" - ], - "elapsed_seconds": 0.034, - "id": "apply_h_a_reply_log", - "purpose": "Apply reviewed H-A reply fields into the quote tracker.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "NHI-PEDOT H-A RFQ reply log: nhi_pedot_h_a_rfq_reply_log_waiting_for_reply_files\nRows: 4\nReceived rows: 0\nApplied tracker field updates: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_reply_log.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_reply_log.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_reply_log.md", - "track": "h_a" - }, - { - "argv": [ - "scripts/evaluate_nhi_pedot_h_a_quote_replies.py" - ], - "elapsed_seconds": 0.025, - "id": "evaluate_h_a_quotes", - "purpose": "Evaluate source-backed H-A quote replies for provider selection.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "H-A quote selection: pending_outreach\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_quote_selection.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_quote_selection.md", - "track": "h_a" - }, - { - "argv": [ - "scripts/apply_limina_execution_authorization_log.py", - "--profile", - "h_a" - ], - "elapsed_seconds": 0.033, - "id": "apply_h_a_execution_authorization", - "purpose": "Validate any H-A execution authorization records.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "NHI-PEDOT H-A execution authorization log: nhi_pedot_h_a_execution_authorization_waiting_for_selected_provider\nRows: 0\nValid authorizations: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_execution_authorization_log.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_execution_authorization_log.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_execution_authorization_log.md", - "track": "h_a" - }, - { - "argv": [ - "scripts/audit_limina_execution_release.py", - "--profile", - "h_a" - ], - "elapsed_seconds": 0.032, - "id": "audit_h_a_execution_release", - "purpose": "Check whether H-A execution can be released after provider selection and authorization.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "NHI-PEDOT H-A execution release audit: nhi_pedot_h_a_execution_release_blocked_no_source_backed_provider_selection\nReady for authorization: false\nReleased for execution: false\nBlockers: 1\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_execution_release_audit.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_execution_release_audit.md", - "track": "h_a" - }, - { - "argv": [ - "scripts/render_nhi_pedot_h_a_vendor_return_intake.py" - ], - "elapsed_seconds": 0.028, - "id": "check_h_a_vendor_return", - "purpose": "Check whether real H-A return files are ready for merge/QC.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "H-A vendor return intake: awaiting_vendor_return_files\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_vendor_return_checklist.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_vendor_return_intake.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_vendor_return_intake.md", - "track": "h_a" - }, - { - "argv": [ - "scripts/intake_limina_rfq_send_confirmations.py", - "--profile", - "zrc_phase_a" - ], - "elapsed_seconds": 0.042, - "id": "intake_zrc_send_confirmations", - "purpose": "Register source-backed ZRC sent-email or web-form confirmations.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "ZRC-ND Phase A RFQ send confirmation intake: zrc_nd_phase_a_rfq_send_confirmation_intake_waiting_for_confirmation_files\nFiles scanned: 0\nApplied rows: 0\nNeeds review: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_confirmation_intake.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_confirmation_intake.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_send_confirmation_intake.md", - "track": "zrc_phase_a" - }, - { - "argv": [ - "scripts/render_zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.py" - ], - "elapsed_seconds": 0.028, - "id": "render_zrc_non_eml_confirmation_sheet", - "purpose": "Refresh guarded ZRC manual-confirmation rows for non-EML confirmations.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "ZRC-ND Phase A RFQ send confirmation entry sheet: zrc_phase_a_rfq_send_confirmation_entry_sheet_waiting_for_confirmation_files\nReady to apply: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.md", - "track": "zrc_phase_a" - }, - { - "argv": [ - "scripts/apply_zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.py" - ], - "elapsed_seconds": 0.027, - "id": "apply_zrc_non_eml_confirmation_sheet", - "purpose": "Apply reviewed ZRC non-EML confirmation entries into the send log.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "ZRC-ND Phase A RFQ send confirmation entry apply: zrc_phase_a_rfq_send_confirmation_entry_apply_no_apply_rows\nApplied: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.md", - "track": "zrc_phase_a" - }, - { - "argv": [ - "scripts/apply_limina_rfq_send_log.py", - "--profile", - "zrc_phase_a" - ], - "elapsed_seconds": 0.035, - "id": "apply_zrc_send_log", - "purpose": "Apply verified ZRC send rows into the quote tracker.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "ZRC-ND Phase A RFQ send log: zrc_nd_phase_a_rfq_send_log_waiting_for_sent_entries\nRows: 4\nSent rows: 0\nApplied tracker contact dates: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_log.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_log.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_send_log.md", - "track": "zrc_phase_a" - }, - { - "argv": [ - "scripts/intake_limina_rfq_replies.py", - "--profile", - "zrc_phase_a" - ], - "elapsed_seconds": 0.042, - "id": "intake_zrc_replies", - "purpose": "Register original ZRC reply source files for review.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "ZRC-ND Phase A RFQ reply intake: zrc_nd_phase_a_rfq_reply_intake_waiting_for_reply_files\nFiles scanned: 0\nApplied rows: 0\nNeeds manual review: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_reply_intake.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_reply_intake.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_reply_intake.md", - "track": "zrc_phase_a" - }, - { - "argv": [ - "scripts/apply_limina_rfq_reply_log.py", - "--profile", - "zrc_phase_a" - ], - "elapsed_seconds": 0.035, - "id": "apply_zrc_reply_log", - "purpose": "Apply reviewed ZRC reply fields into the quote tracker.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "ZRC-ND Phase A RFQ reply log: zrc_nd_phase_a_rfq_reply_log_waiting_for_reply_files\nRows: 4\nReceived rows: 0\nApplied tracker field updates: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_reply_log.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_reply_log.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_reply_log.md", - "track": "zrc_phase_a" - }, - { - "argv": [ - "scripts/evaluate_zrc_nd_phase_a_quote_replies.py" - ], - "elapsed_seconds": 0.025, - "id": "evaluate_zrc_quotes", - "purpose": "Evaluate source-backed ZRC quote replies for provider selection.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "ZRC-ND Phase A quote selection: pending_outreach\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_quote_selection.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_quote_selection.md", - "track": "zrc_phase_a" - }, - { - "argv": [ - "scripts/apply_limina_execution_authorization_log.py", - "--profile", - "zrc_phase_a" - ], - "elapsed_seconds": 0.034, - "id": "apply_zrc_execution_authorization", - "purpose": "Validate any ZRC execution authorization records.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "ZRC-ND Phase A execution authorization log: zrc_nd_phase_a_execution_authorization_waiting_for_selected_provider\nRows: 0\nValid authorizations: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_execution_authorization_log.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_execution_authorization_log.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_execution_authorization_log.md", - "track": "zrc_phase_a" - }, - { - "argv": [ - "scripts/audit_limina_execution_release.py", - "--profile", - "zrc_phase_a" - ], - "elapsed_seconds": 0.032, - "id": "audit_zrc_execution_release", - "purpose": "Check whether ZRC execution can be released after provider selection and authorization.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "ZRC-ND Phase A execution release audit: zrc_nd_phase_a_execution_release_blocked_no_source_backed_provider_selection\nReady for authorization: false\nReleased for execution: false\nBlockers: 1\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_execution_release_audit.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_execution_release_audit.md", - "track": "zrc_phase_a" - }, - { - "argv": [ - "scripts/render_zrc_nd_phase_a_vendor_return_intake.py" - ], - "elapsed_seconds": 0.028, - "id": "check_zrc_vendor_return", - "purpose": "Check whether real ZRC return files are ready for merge/QC.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "ZRC-ND Phase A vendor return intake: awaiting_vendor_return_files\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_vendor_return_checklist.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_vendor_return_intake.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_vendor_return_intake.md", - "track": "zrc_phase_a" - }, - { - "argv": [ - "scripts/render_limina_first_wave_rfq_dispatch_cockpit.py" - ], - "elapsed_seconds": 0.029, - "id": "refresh_first_wave_cockpit", - "purpose": "Refresh the combined dispatch cockpit after processing saved files.", - "returncode": 0, - "stderr_tail": "", - "stdout_tail": "First-wave RFQ dispatch cockpit: first_wave_rfq_dispatch_cockpit_ready_for_manual_send\nReady to send: 8 / 8\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_first_wave_rfq_dispatch_cockpit.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_first_wave_rfq_dispatch_cockpit.md\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_first_wave_rfq_dispatch_cockpit.html", - "track": "combined" - } - ], - "failed_command_ids": [], - "first_wave_cockpit_status": "first_wave_rfq_dispatch_cockpit_ready_for_manual_send", - "first_wave_cockpit_summary": { - "confirmation_files_present": 0, - "h_a_archive_status": "h_a_rfq_dispatch_archive_ready", - "h_a_cockpit_status": "h_a_rfq_send_cockpit_ready_for_manual_send", - "missing_bundle_files": 0, - "missing_message_files": 0, - "ready_to_send_rows": 8, - "reply_files_present": 0, - "track_count": 2, - "track_counts": { - "h_a": { - "confirmations": 0, - "ready": 4, - "replies": 0, - "rows": 4 - }, - "zrc_phase_a": { - "confirmations": 0, - "ready": 4, - "replies": 0, - "rows": 4 - } - }, - "vendor_rows": 8, - "zrc_phase_a_archive_status": "zrc_phase_a_rfq_dispatch_archive_ready", - "zrc_phase_a_cockpit_status": "zrc_phase_a_rfq_send_cockpit_ready_for_manual_send" - }, - "generated_artifacts": { - "json": "data/limina_first_wave_post_dispatch_processing.json", - "report": "reports/limina_first_wave_post_dispatch_processing.md" - }, - "next_commands": [ - "python3 scripts/process_limina_first_wave_post_dispatch.py", - "python3 scripts/run_limina_iteration.py" - ], - "purpose": "Process real first-wave RFQ send confirmations and replies after manual dispatch.", - "status": "first_wave_post_dispatch_waiting_for_real_send_confirmations", - "track_summaries": [ - { - "execution_release_ready": false, - "execution_release_status": "nhi_pedot_h_a_execution_release_blocked_no_source_backed_provider_selection", - "execution_released": false, - "quote_selection_replies": 0, - "quote_selection_shortlist": 0, - "quote_selection_source_backed": 0, - "quote_selection_status": "pending_outreach", - "reply_intake_applied": 0, - "reply_intake_files": 0, - "reply_intake_needs_review": 0, - "reply_intake_status": "nhi_pedot_h_a_rfq_reply_intake_waiting_for_reply_files", - "reply_log_received": 0, - "reply_log_rows": 4, - "reply_log_status": "nhi_pedot_h_a_rfq_reply_log_waiting_for_reply_files", - "reply_log_valid": 0, - "send_entry_applied": 0, - "send_entry_apply_rows": 0, - "send_entry_blocked": 0, - "send_entry_status": "h_a_rfq_send_confirmation_entry_apply_no_apply_rows", - "send_intake_applied": 0, - "send_intake_files": 0, - "send_intake_needs_review": 0, - "send_intake_status": "nhi_pedot_h_a_rfq_send_confirmation_intake_waiting_for_confirmation_files", - "send_log_rows": 4, - "send_log_sent": 0, - "send_log_status": "nhi_pedot_h_a_rfq_send_log_waiting_for_sent_entries", - "send_log_valid": 0, - "track": "h_a", - "vendor_return_status": "awaiting_vendor_return_files" - }, - { - "execution_release_ready": false, - "execution_release_status": "zrc_nd_phase_a_execution_release_blocked_no_source_backed_provider_selection", - "execution_released": false, - "quote_selection_replies": 0, - "quote_selection_shortlist": 0, - "quote_selection_source_backed": 0, - "quote_selection_status": "pending_outreach", - "reply_intake_applied": 0, - "reply_intake_files": 0, - "reply_intake_needs_review": 0, - "reply_intake_status": "zrc_nd_phase_a_rfq_reply_intake_waiting_for_reply_files", - "reply_log_received": 0, - "reply_log_rows": 4, - "reply_log_status": "zrc_nd_phase_a_rfq_reply_log_waiting_for_reply_files", - "reply_log_valid": 0, - "send_entry_applied": 0, - "send_entry_apply_rows": 0, - "send_entry_blocked": 0, - "send_entry_status": "zrc_phase_a_rfq_send_confirmation_entry_apply_no_apply_rows", - "send_intake_applied": 0, - "send_intake_files": 0, - "send_intake_needs_review": 0, - "send_intake_status": "zrc_nd_phase_a_rfq_send_confirmation_intake_waiting_for_confirmation_files", - "send_log_rows": 4, - "send_log_sent": 0, - "send_log_status": "zrc_nd_phase_a_rfq_send_log_waiting_for_sent_entries", - "send_log_valid": 0, - "track": "zrc_phase_a", - "vendor_return_status": "awaiting_vendor_return_files" - } - ] -} \ No newline at end of file diff --git a/data/limina_first_wave_rfq_dispatch_cockpit.json b/data/limina_first_wave_rfq_dispatch_cockpit.json deleted file mode 100644 index 4565caa..0000000 --- a/data/limina_first_wave_rfq_dispatch_cockpit.json +++ /dev/null @@ -1,281 +0,0 @@ -{ - "boundary": "This cockpit is dispatch scaffolding only. It does not send RFQs, create send confirmations, create measurements, select providers, authorize execution, or support any material suitability claim.", - "generated_artifacts": { - "html": "reports/limina_first_wave_rfq_dispatch_cockpit.html", - "json": "data/limina_first_wave_rfq_dispatch_cockpit.json", - "report": "reports/limina_first_wave_rfq_dispatch_cockpit.md" - }, - "inputs": { - "h_a_archive": "data/nhi_pedot_h_a_rfq_dispatch_archive_manifest.json", - "h_a_cockpit": "data/nhi_pedot_h_a_rfq_send_cockpit.json", - "zrc_archive": "data/zrc_nd_phase_a_rfq_dispatch_archive_manifest.json", - "zrc_cockpit": "data/zrc_nd_phase_a_rfq_send_cockpit.json" - }, - "next_commands": [ - "python3 scripts/process_limina_first_wave_post_dispatch.py", - "python3 scripts/run_limina_iteration.py" - ], - "purpose": "Unified dispatch surface for the first H-A and ZRC RFQ sends needed to unlock real measurement evidence.", - "rows": [ - { - "archive_path": "data/nhi_pedot_h_a_rfq_dispatch_archive/nhi_pedot_h_a_rfq_dispatch_archive.zip", - "archive_sha256": "b739036ff6d618bec4b57e1c028676338ef58599a11fb7a6822a6df9b725368b", - "bundle_exists": true, - "bundle_sha256": "6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "materials_metric", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/h_a/materials_metric_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/h_a/materials_metric_send_confirmation_template.md", - "contact_url": "https://materialsmetric.com/contact-us/", - "dispatch_status": "ready_for_manual_dispatch", - "message_exists": true, - "message_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml", - "message_label": "EML draft", - "order": 1, - "primary_send_method": "email_or_request_service_form", - "quote_url": "https://materialsmetric.com/contact-us/", - "ready_for_manual_send": true, - "recipient_or_form": "info@materialsmetric.com", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_source_file_to_save": "data/rfq_reply_files/h_a/materials_metric_reply.txt", - "reply_template": "data/rfq_reply_review_templates/h_a/materials_metric_reply_review_template.md", - "send_action_status": "ready_to_send", - "track_id": "h_a", - "track_label": "NHI-PEDOT H-A", - "vendor_name": "Materials Metric" - }, - { - "archive_path": "data/nhi_pedot_h_a_rfq_dispatch_archive/nhi_pedot_h_a_rfq_dispatch_archive.zip", - "archive_sha256": "b739036ff6d618bec4b57e1c028676338ef58599a11fb7a6822a6df9b725368b", - "bundle_exists": true, - "bundle_sha256": "b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "the_osmolality_lab", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/h_a/the_osmolality_lab_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/h_a/the_osmolality_lab_send_confirmation_template.md", - "contact_url": "https://theosmolalitylab.com/contact-us/", - "dispatch_status": "ready_for_manual_dispatch", - "message_exists": true, - "message_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml", - "message_label": "EML draft", - "order": 2, - "primary_send_method": "email_or_contact_form", - "quote_url": "https://theosmolalitylab.com/contact-us/", - "ready_for_manual_send": true, - "recipient_or_form": "info@osmolab.com", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_source_file_to_save": "data/rfq_reply_files/h_a/the_osmolality_lab_reply.txt", - "reply_template": "data/rfq_reply_review_templates/h_a/the_osmolality_lab_reply_review_template.md", - "send_action_status": "ready_to_send", - "track_id": "h_a", - "track_label": "NHI-PEDOT H-A", - "vendor_name": "The Osmolality Lab" - }, - { - "archive_path": "data/nhi_pedot_h_a_rfq_dispatch_archive/nhi_pedot_h_a_rfq_dispatch_archive.zip", - "archive_sha256": "b739036ff6d618bec4b57e1c028676338ef58599a11fb7a6822a6df9b725368b", - "bundle_exists": true, - "bundle_sha256": "bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "cambridge_polymer_group_hydrogel", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/h_a/cambridge_polymer_group_hydrogel_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/h_a/cambridge_polymer_group_hydrogel_send_confirmation_template.md", - "contact_url": "https://www.campoly.com/contact-us/", - "dispatch_status": "ready_for_manual_dispatch", - "message_exists": true, - "message_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml", - "message_label": "EML draft", - "order": 3, - "primary_send_method": "request_quote_form_or_email", - "quote_url": "https://quote.campoly.com/material-testing/", - "ready_for_manual_send": true, - "recipient_or_form": "info@campoly.com", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_source_file_to_save": "data/rfq_reply_files/h_a/cambridge_polymer_group_hydrogel_reply.txt", - "reply_template": "data/rfq_reply_review_templates/h_a/cambridge_polymer_group_hydrogel_reply_review_template.md", - "send_action_status": "ready_to_send", - "track_id": "h_a", - "track_label": "NHI-PEDOT H-A", - "vendor_name": "Cambridge Polymer Group" - }, - { - "archive_path": "data/nhi_pedot_h_a_rfq_dispatch_archive/nhi_pedot_h_a_rfq_dispatch_archive.zip", - "archive_sha256": "b739036ff6d618bec4b57e1c028676338ef58599a11fb7a6822a6df9b725368b", - "bundle_exists": true, - "bundle_sha256": "6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "sigmaaldrich_media_testing", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/h_a/sigmaaldrich_media_testing_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/h_a/sigmaaldrich_media_testing_send_confirmation_template.md", - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "dispatch_status": "ready_for_manual_dispatch", - "message_exists": true, - "message_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml", - "message_label": "EML draft", - "order": 4, - "primary_send_method": "service_page_or_technical_service", - "quote_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "ready_for_manual_send": true, - "recipient_or_form": "PSTechService@milliporesigma.com", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_source_file_to_save": "data/rfq_reply_files/h_a/sigmaaldrich_media_testing_reply.txt", - "reply_template": "data/rfq_reply_review_templates/h_a/sigmaaldrich_media_testing_reply_review_template.md", - "send_action_status": "ready_to_send", - "track_id": "h_a", - "track_label": "NHI-PEDOT H-A", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - }, - { - "archive_path": "data/zrc_nd_phase_a_rfq_dispatch_archive/zrc_nd_phase_a_rfq_dispatch_archive.zip", - "archive_sha256": "2a2ca661089a7d5ae0a91205968a383b98d7fbd90cea45c46fd4f6c8eab917d7", - "bundle_exists": true, - "bundle_sha256": "b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "pacific_biolabs_physicochemical", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation_template.md", - "contact_url": "https://pacificbiolabs.com/contact/", - "dispatch_status": "ready_for_manual_dispatch", - "message_exists": true, - "message_file": "data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt", - "message_label": "Email text", - "order": 1, - "primary_send_method": "contact_form_or_quote_phone", - "quote_url": "https://pacificbiolabs.com/contact/", - "ready_for_manual_send": true, - "recipient_or_form": "https://pacificbiolabs.com/contact/", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_source_file_to_save": "data/rfq_reply_files/zrc_phase_a/pacific_biolabs_physicochemical_reply.txt", - "reply_template": "data/rfq_reply_review_templates/zrc_phase_a/pacific_biolabs_physicochemical_reply_review_template.md", - "send_action_status": "ready_for_manual_dispatch", - "track_id": "zrc_phase_a", - "track_label": "ZRC-ND Phase A", - "vendor_name": "Pacific BioLabs Physicochemical Properties Testing" - }, - { - "archive_path": "data/zrc_nd_phase_a_rfq_dispatch_archive/zrc_nd_phase_a_rfq_dispatch_archive.zip", - "archive_sha256": "2a2ca661089a7d5ae0a91205968a383b98d7fbd90cea45c46fd4f6c8eab917d7", - "bundle_exists": true, - "bundle_sha256": "020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "sigmaaldrich_media_testing", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation_template.md", - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "dispatch_status": "ready_for_manual_dispatch", - "message_exists": true, - "message_file": "data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt", - "message_label": "Email text", - "order": 2, - "primary_send_method": "service_page_or_technical_service", - "quote_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "ready_for_manual_send": true, - "recipient_or_form": "PSTechService@milliporesigma.com", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_source_file_to_save": "data/rfq_reply_files/zrc_phase_a/sigmaaldrich_media_testing_reply.txt", - "reply_template": "data/rfq_reply_review_templates/zrc_phase_a/sigmaaldrich_media_testing_reply_review_template.md", - "send_action_status": "ready_for_manual_dispatch", - "track_id": "zrc_phase_a", - "track_label": "ZRC-ND Phase A", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - }, - { - "archive_path": "data/zrc_nd_phase_a_rfq_dispatch_archive/zrc_nd_phase_a_rfq_dispatch_archive.zip", - "archive_sha256": "2a2ca661089a7d5ae0a91205968a383b98d7fbd90cea45c46fd4f6c8eab917d7", - "bundle_exists": true, - "bundle_sha256": "29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "the_osmolality_lab", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/zrc_phase_a/the_osmolality_lab_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/zrc_phase_a/the_osmolality_lab_send_confirmation_template.md", - "contact_url": "https://theosmolalitylab.com/contact-us/", - "dispatch_status": "ready_for_manual_dispatch", - "message_exists": true, - "message_file": "data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt", - "message_label": "Email text", - "order": 3, - "primary_send_method": "email_or_contact_form", - "quote_url": "https://theosmolalitylab.com/contact-us/", - "ready_for_manual_send": true, - "recipient_or_form": "info@osmolab.com", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_source_file_to_save": "data/rfq_reply_files/zrc_phase_a/the_osmolality_lab_reply.txt", - "reply_template": "data/rfq_reply_review_templates/zrc_phase_a/the_osmolality_lab_reply_review_template.md", - "send_action_status": "ready_for_manual_dispatch", - "track_id": "zrc_phase_a", - "track_label": "ZRC-ND Phase A", - "vendor_name": "The Osmolality Lab" - }, - { - "archive_path": "data/zrc_nd_phase_a_rfq_dispatch_archive/zrc_nd_phase_a_rfq_dispatch_archive.zip", - "archive_sha256": "2a2ca661089a7d5ae0a91205968a383b98d7fbd90cea45c46fd4f6c8eab917d7", - "bundle_exists": true, - "bundle_sha256": "9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "jordi_labs_el_polymer", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/zrc_phase_a/jordi_labs_el_polymer_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/zrc_phase_a/jordi_labs_el_polymer_send_confirmation_template.md", - "contact_url": "https://jordilabs.com/contact/", - "dispatch_status": "ready_for_manual_dispatch", - "message_exists": true, - "message_file": "data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt", - "message_label": "Email text", - "order": 4, - "primary_send_method": "contact_form_or_email", - "quote_url": "https://jordilabs.com/contact/", - "ready_for_manual_send": true, - "recipient_or_form": "info@jordilabs.com", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_source_file_to_save": "data/rfq_reply_files/zrc_phase_a/jordi_labs_el_polymer_reply.txt", - "reply_template": "data/rfq_reply_review_templates/zrc_phase_a/jordi_labs_el_polymer_reply_review_template.md", - "send_action_status": "ready_for_manual_dispatch", - "track_id": "zrc_phase_a", - "track_label": "ZRC-ND Phase A", - "vendor_name": "Jordi Labs Analytical Testing" - } - ], - "status": "first_wave_rfq_dispatch_cockpit_ready_for_manual_send", - "summary": { - "confirmation_files_present": 0, - "h_a_archive_status": "h_a_rfq_dispatch_archive_ready", - "h_a_cockpit_status": "h_a_rfq_send_cockpit_ready_for_manual_send", - "missing_bundle_files": 0, - "missing_message_files": 0, - "ready_to_send_rows": 8, - "reply_files_present": 0, - "track_count": 2, - "track_counts": { - "h_a": { - "confirmations": 0, - "ready": 4, - "replies": 0, - "rows": 4 - }, - "zrc_phase_a": { - "confirmations": 0, - "ready": 4, - "replies": 0, - "rows": 4 - } - }, - "vendor_rows": 8, - "zrc_phase_a_archive_status": "zrc_phase_a_rfq_dispatch_archive_ready", - "zrc_phase_a_cockpit_status": "zrc_phase_a_rfq_send_cockpit_ready_for_manual_send" - } -} \ No newline at end of file diff --git a/data/limina_hybrid_measurement_plan.csv b/data/limina_hybrid_measurement_plan.csv deleted file mode 100644 index 59646b6..0000000 --- a/data/limina_hybrid_measurement_plan.csv +++ /dev/null @@ -1,33 +0,0 @@ -branch,field,rows,route,route_label,evidence_requirement,source_file_requirement,operator_hint,notes -NHI-PEDOT H-A,conductivity,24,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,Calibrated conductivity for the specified H-A sample event.,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",local_bench_or_vendor, -NHI-PEDOT H-A,delamination_score,12,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,0 to 1 delamination score using the preregistered H-A rubric.,Image plus scoring worksheet or vendor image-analysis report.,local_bench_or_materials_lab,0 to 1 delamination score -NHI-PEDOT H-A,optical_transparency_fraction,12,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,0 to 1 transparency estimate from a consistent imaging/lightbox method.,Image-analysis export or vendor microscopy report.,local_bench_or_materials_lab,0 to 1 optical transparency fraction -NHI-PEDOT H-A,pH,24,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,Calibrated pH measurement for the specified H-A sample event.,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",local_bench_or_vendor, -NHI-PEDOT H-A,swelling_fraction,12,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,Fractional swelling from pre/post dimensions or mass using the same method across rows.,"Image analysis export, caliper log, or mass/dimension worksheet.",local_bench_or_materials_lab,fractional swelling -NHI-PEDOT H-A,temperature_c,12,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,Actual incubation or measurement temperature in C.,"Incubator log, probe export, or time-stamped photo.",local_bench,measurement/incubation temperature in C -NHI-PEDOT H-A,visible_precipitate,12,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,Boolean precipitate/turbidity/extractables concern scored from inspection.,Time-stamped image or vendor inspection report.,local_bench_or_vendor,"visible precipitate, true or false" -NHI-PEDOT H-A,visible_shedding,12,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,Boolean visible material shedding score.,Time-stamped image or microscopy/stereoscope export.,local_bench_or_vendor,"visible material shedding, true or false" -NHI-PEDOT H-A,osmolality,24,outsourced_preferred,Prefer external lab unless a calibrated instrument is already available locally.,Measured osmolality for the specified H-A sample event.,Osmometer report/export reconciled to run_id.,vendor_or_equipped_lab, -NHI-PEDOT H-A,date,12,supplier_or_build_record,"Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.",ISO date for the actual measurement or sample-handling event.,"Bench sheet, vendor report, or chain-of-custody CSV.",bench_or_vendor,calendar date of the measurement event -NHI-PEDOT H-A,electrode_material,12,supplier_or_build_record,"Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.",Actual electrode/coupon substrate material used for the row.,"Supplier documentation, build sheet, or sample label record.",fabrication_or_supplier_record, -NHI-PEDOT H-A,laminin_or_peptide_density,12,supplier_or_build_record,"Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.",Applied laminin or adhesion-peptide target density or documented formulation value.,"Recipe record, supplier CoA, coating log, or build sheet.",fabrication_or_supplier_record, -NHI-PEDOT H-A,mea_coupon_id,12,supplier_or_build_record,"Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.",Traceable MEA or coupon identifier for the exposed article.,"Build sheet, sample label, or chain-of-custody record.",fabrication_or_supplier_record, -NHI-PEDOT H-A,medium_lot,12,supplier_or_build_record,"Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.",Exact medium lot used for matched article/control rows.,"Lot CoA, bottle label image, or chain-of-custody record.",bench_or_vendor,actual medium lot -NHI-PEDOT H-A,medium_name,12,supplier_or_build_record,"Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.",Exact medium or CL1-proxy medium name.,"Medium bottle photo, lot CoA, or chain-of-custody record.",bench_or_vendor,actual medium or CL1-proxy medium name -NHI-PEDOT H-A,sterilization_or_aseptic_protocol,12,supplier_or_build_record,"Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.",Actual sterilization or aseptic-handling protocol applied to the article.,"SOP identifier, batch record, or chain-of-custody record.",fabrication_or_supplier_record, -ZRC-ND Phase A,conductivity_final_mS_cm,8,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,Calibrated conductivity after the row timepoint.,"Conductivity meter export, calibration log, or display photo.",local_bench_or_vendor,Final conductivity at the run timepoint. -ZRC-ND Phase A,conductivity_initial_mS_cm,8,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,Calibrated conductivity before exposure or matched start measurement.,"Conductivity meter export, calibration log, or display photo.",local_bench_or_vendor,Initial conductivity in matched medium. -ZRC-ND Phase A,exposure_time_h,8,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,Actual elapsed exposure time for the row.,Incubation start/stop log or vendor report.,local_bench,Actual exposure duration; must match the run timepoint within deviation-log tolerance. -ZRC-ND Phase A,initial_volume_ml,8,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,Starting medium volume per row.,Pipetting worksheet or balance/volume log.,local_bench,Starting medium volume for normalization and drift interpretation. -ZRC-ND Phase A,pH_final,8,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,Calibrated pH measurement after the row timepoint.,"Meter export, calibration log, or time-stamped display photo.",local_bench_or_vendor,Final pH at the run timepoint. -ZRC-ND Phase A,pH_initial,8,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,Calibrated pH measurement before exposure or matched start measurement.,"Meter export, calibration log, or time-stamped display photo.",local_bench_or_vendor,Initial pH before exposure or matched start measurement. -ZRC-ND Phase A,temperature_c,8,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,Actual incubation or measurement temperature in C.,"Incubator log, probe export, or time-stamped photo.",local_bench,Actual incubation or measurement temperature. -ZRC-ND Phase A,visible_precipitate,8,inhouse_ready,Can be captured locally or by a simple bench operator if calibrated instruments/images are available.,Boolean precipitate/turbidity/extractables concern scored from inspection.,Time-stamped image or vendor inspection report.,local_bench_or_vendor,"yes/no visible precipitate, turbidity, bubble, or extractables concern." -ZRC-ND Phase A,osmolality_final_mOsm_kg,8,outsourced_preferred,Prefer external lab unless a calibrated instrument is already available locally.,Measured osmolality after the row timepoint.,Osmometer report/export reconciled to run_id.,vendor_or_equipped_lab,Final osmolality at the run timepoint. -ZRC-ND Phase A,osmolality_initial_mOsm_kg,8,outsourced_preferred,Prefer external lab unless a calibrated instrument is already available locally.,Measured osmolality before exposure or matched start measurement.,Osmometer report/export reconciled to run_id.,vendor_or_equipped_lab,Initial osmolality in matched medium. -ZRC-ND Phase A,date,8,supplier_or_build_record,"Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.",ISO date for the actual measurement or sample-handling event.,"Bench sheet, vendor report, or chain-of-custody CSV.",bench_or_vendor,Measurement date for each Phase A sentinel row. -ZRC-ND Phase A,medium_lot,8,supplier_or_build_record,"Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.",Exact medium lot used for matched article/control rows.,"Lot CoA, bottle label image, or chain-of-custody record.",bench_or_vendor,Actual medium lot shared with control rows where possible. -ZRC-ND Phase A,medium_name,8,supplier_or_build_record,"Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.",Exact medium or CL1-proxy medium name.,"Medium bottle photo, lot CoA, or chain-of-custody record.",bench_or_vendor,Fresh complete neuronal medium or closest CL1-like medium proxy. -ZRC-ND Phase A,membrane_area_cm2,6,supplier_or_build_record,"Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.",Exposed membrane area used for normalization.,"Build drawing, measurement worksheet, or supplier documentation.",fabrication_or_supplier_record,"Exposed membrane area for baseline, lead, and 10 kDa challenge articles." -ZRC-ND Phase A,membrane_lot,6,supplier_or_build_record,"Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.",Actual membrane/module lot for exposed ZRC-ND articles.,"Supplier label, CoA, build sheet, or chain-of-custody record.",fabrication_or_supplier_record,Actual lot for every membrane or module-exposed article; leave blank only for no-module controls. -ZRC-ND Phase A,prefilter_lot,6,supplier_or_build_record,"Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.",Guard prefilter lot or explicit none/not_applicable.,"Supplier label, build sheet, or chain-of-custody record.",fabrication_or_supplier_record,"Guard prefilter lot if present, or explicit none/not_applicable when omitted." diff --git a/data/limina_hybrid_measurement_plan.json b/data/limina_hybrid_measurement_plan.json deleted file mode 100644 index 14cd834..0000000 --- a/data/limina_hybrid_measurement_plan.json +++ /dev/null @@ -1,441 +0,0 @@ -{ - "execution_notes": [ - "Local capture can reduce vendor scope, but every local value still needs measured_at, operator_or_agent, instrument_id, and source_file provenance.", - "Osmolality is kept as outsourced_preferred because it commonly requires a dedicated osmometer; use a local instrument only if it is calibrated and produces traceable output.", - "Supplier/build records do not prove compatibility by themselves; they only remove provenance blockers.", - "Never enter phone photos, emails, or vendor capability replies as material evidence unless they contain real run-level measured values." - ], - "h_a_active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "non_claim_boundary": "This plan only routes work. Suitability remains false until real, non-synthetic rows pass gate evaluators and the final claim audit.", - "purpose": "Reduce time-to-real-evidence by separating locally capturable fields from vendor-preferred fields.", - "rows": [ - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "Calibrated conductivity for the specified H-A sample event.", - "field": "conductivity", - "notes": "", - "operator_hint": "local_bench_or_vendor", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 24, - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "0 to 1 delamination score using the preregistered H-A rubric.", - "field": "delamination_score", - "notes": "0 to 1 delamination score", - "operator_hint": "local_bench_or_materials_lab", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 12, - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "0 to 1 transparency estimate from a consistent imaging/lightbox method.", - "field": "optical_transparency_fraction", - "notes": "0 to 1 optical transparency fraction", - "operator_hint": "local_bench_or_materials_lab", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 12, - "source_file_requirement": "Image-analysis export or vendor microscopy report." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "Calibrated pH measurement for the specified H-A sample event.", - "field": "pH", - "notes": "", - "operator_hint": "local_bench_or_vendor", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 24, - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "Fractional swelling from pre/post dimensions or mass using the same method across rows.", - "field": "swelling_fraction", - "notes": "fractional swelling", - "operator_hint": "local_bench_or_materials_lab", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 12, - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "Actual incubation or measurement temperature in C.", - "field": "temperature_c", - "notes": "measurement/incubation temperature in C", - "operator_hint": "local_bench", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 12, - "source_file_requirement": "Incubator log, probe export, or time-stamped photo." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "Boolean precipitate/turbidity/extractables concern scored from inspection.", - "field": "visible_precipitate", - "notes": "visible precipitate, true or false", - "operator_hint": "local_bench_or_vendor", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 12, - "source_file_requirement": "Time-stamped image or vendor inspection report." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "Boolean visible material shedding score.", - "field": "visible_shedding", - "notes": "visible material shedding, true or false", - "operator_hint": "local_bench_or_vendor", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 12, - "source_file_requirement": "Time-stamped image or microscopy/stereoscope export." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "Measured osmolality for the specified H-A sample event.", - "field": "osmolality", - "notes": "", - "operator_hint": "vendor_or_equipped_lab", - "route": "outsourced_preferred", - "route_label": "Prefer external lab unless a calibrated instrument is already available locally.", - "rows": 24, - "source_file_requirement": "Osmometer report/export reconciled to run_id." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "ISO date for the actual measurement or sample-handling event.", - "field": "date", - "notes": "calendar date of the measurement event", - "operator_hint": "bench_or_vendor", - "route": "supplier_or_build_record", - "route_label": "Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.", - "rows": 12, - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "Actual electrode/coupon substrate material used for the row.", - "field": "electrode_material", - "notes": "", - "operator_hint": "fabrication_or_supplier_record", - "route": "supplier_or_build_record", - "route_label": "Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.", - "rows": 12, - "source_file_requirement": "Supplier documentation, build sheet, or sample label record." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "Applied laminin or adhesion-peptide target density or documented formulation value.", - "field": "laminin_or_peptide_density", - "notes": "", - "operator_hint": "fabrication_or_supplier_record", - "route": "supplier_or_build_record", - "route_label": "Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.", - "rows": 12, - "source_file_requirement": "Recipe record, supplier CoA, coating log, or build sheet." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "Traceable MEA or coupon identifier for the exposed article.", - "field": "mea_coupon_id", - "notes": "", - "operator_hint": "fabrication_or_supplier_record", - "route": "supplier_or_build_record", - "route_label": "Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.", - "rows": 12, - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "Exact medium lot used for matched article/control rows.", - "field": "medium_lot", - "notes": "actual medium lot", - "operator_hint": "bench_or_vendor", - "route": "supplier_or_build_record", - "route_label": "Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.", - "rows": 12, - "source_file_requirement": "Lot CoA, bottle label image, or chain-of-custody record." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "Exact medium or CL1-proxy medium name.", - "field": "medium_name", - "notes": "actual medium or CL1-proxy medium name", - "operator_hint": "bench_or_vendor", - "route": "supplier_or_build_record", - "route_label": "Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.", - "rows": 12, - "source_file_requirement": "Medium bottle photo, lot CoA, or chain-of-custody record." - }, - { - "branch": "NHI-PEDOT H-A", - "evidence_requirement": "Actual sterilization or aseptic-handling protocol applied to the article.", - "field": "sterilization_or_aseptic_protocol", - "notes": "", - "operator_hint": "fabrication_or_supplier_record", - "route": "supplier_or_build_record", - "route_label": "Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.", - "rows": 12, - "source_file_requirement": "SOP identifier, batch record, or chain-of-custody record." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Calibrated conductivity after the row timepoint.", - "field": "conductivity_final_mS_cm", - "notes": "Final conductivity at the run timepoint.", - "operator_hint": "local_bench_or_vendor", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 8, - "source_file_requirement": "Conductivity meter export, calibration log, or display photo." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Calibrated conductivity before exposure or matched start measurement.", - "field": "conductivity_initial_mS_cm", - "notes": "Initial conductivity in matched medium.", - "operator_hint": "local_bench_or_vendor", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 8, - "source_file_requirement": "Conductivity meter export, calibration log, or display photo." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Actual elapsed exposure time for the row.", - "field": "exposure_time_h", - "notes": "Actual exposure duration; must match the run timepoint within deviation-log tolerance.", - "operator_hint": "local_bench", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 8, - "source_file_requirement": "Incubation start/stop log or vendor report." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Starting medium volume per row.", - "field": "initial_volume_ml", - "notes": "Starting medium volume for normalization and drift interpretation.", - "operator_hint": "local_bench", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 8, - "source_file_requirement": "Pipetting worksheet or balance/volume log." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Calibrated pH measurement after the row timepoint.", - "field": "pH_final", - "notes": "Final pH at the run timepoint.", - "operator_hint": "local_bench_or_vendor", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 8, - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Calibrated pH measurement before exposure or matched start measurement.", - "field": "pH_initial", - "notes": "Initial pH before exposure or matched start measurement.", - "operator_hint": "local_bench_or_vendor", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 8, - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Actual incubation or measurement temperature in C.", - "field": "temperature_c", - "notes": "Actual incubation or measurement temperature.", - "operator_hint": "local_bench", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 8, - "source_file_requirement": "Incubator log, probe export, or time-stamped photo." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Boolean precipitate/turbidity/extractables concern scored from inspection.", - "field": "visible_precipitate", - "notes": "yes/no visible precipitate, turbidity, bubble, or extractables concern.", - "operator_hint": "local_bench_or_vendor", - "route": "inhouse_ready", - "route_label": "Can be captured locally or by a simple bench operator if calibrated instruments/images are available.", - "rows": 8, - "source_file_requirement": "Time-stamped image or vendor inspection report." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Measured osmolality after the row timepoint.", - "field": "osmolality_final_mOsm_kg", - "notes": "Final osmolality at the run timepoint.", - "operator_hint": "vendor_or_equipped_lab", - "route": "outsourced_preferred", - "route_label": "Prefer external lab unless a calibrated instrument is already available locally.", - "rows": 8, - "source_file_requirement": "Osmometer report/export reconciled to run_id." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Measured osmolality before exposure or matched start measurement.", - "field": "osmolality_initial_mOsm_kg", - "notes": "Initial osmolality in matched medium.", - "operator_hint": "vendor_or_equipped_lab", - "route": "outsourced_preferred", - "route_label": "Prefer external lab unless a calibrated instrument is already available locally.", - "rows": 8, - "source_file_requirement": "Osmometer report/export reconciled to run_id." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "ISO date for the actual measurement or sample-handling event.", - "field": "date", - "notes": "Measurement date for each Phase A sentinel row.", - "operator_hint": "bench_or_vendor", - "route": "supplier_or_build_record", - "route_label": "Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.", - "rows": 8, - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Exact medium lot used for matched article/control rows.", - "field": "medium_lot", - "notes": "Actual medium lot shared with control rows where possible.", - "operator_hint": "bench_or_vendor", - "route": "supplier_or_build_record", - "route_label": "Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.", - "rows": 8, - "source_file_requirement": "Lot CoA, bottle label image, or chain-of-custody record." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Exact medium or CL1-proxy medium name.", - "field": "medium_name", - "notes": "Fresh complete neuronal medium or closest CL1-like medium proxy.", - "operator_hint": "bench_or_vendor", - "route": "supplier_or_build_record", - "route_label": "Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.", - "rows": 8, - "source_file_requirement": "Medium bottle photo, lot CoA, or chain-of-custody record." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Exposed membrane area used for normalization.", - "field": "membrane_area_cm2", - "notes": "Exposed membrane area for baseline, lead, and 10 kDa challenge articles.", - "operator_hint": "fabrication_or_supplier_record", - "route": "supplier_or_build_record", - "route_label": "Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.", - "rows": 6, - "source_file_requirement": "Build drawing, measurement worksheet, or supplier documentation." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Actual membrane/module lot for exposed ZRC-ND articles.", - "field": "membrane_lot", - "notes": "Actual lot for every membrane or module-exposed article; leave blank only for no-module controls.", - "operator_hint": "fabrication_or_supplier_record", - "route": "supplier_or_build_record", - "route_label": "Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.", - "rows": 6, - "source_file_requirement": "Supplier label, CoA, build sheet, or chain-of-custody record." - }, - { - "branch": "ZRC-ND Phase A", - "evidence_requirement": "Guard prefilter lot or explicit none/not_applicable.", - "field": "prefilter_lot", - "notes": "Guard prefilter lot if present, or explicit none/not_applicable when omitted.", - "operator_hint": "fabrication_or_supplier_record", - "route": "supplier_or_build_record", - "route_label": "Record from supplier, fabrication batch, or chain-of-custody rather than analytical testing.", - "rows": 6, - "source_file_requirement": "Supplier label, build sheet, or chain-of-custody record." - } - ], - "source_artifacts": { - "h_a_raw_template": "data/nhi_pedot_h_a_raw_measurements_template.csv", - "h_a_service_request": "data/nhi_pedot_h_a_service_request.json", - "zrc_phase_a_service_request": "data/zrc_nd_phase_a_service_request.json" - }, - "status": "hybrid_measurement_plan_ready", - "summary": { - "branch_count": 2, - "by_branch": { - "NHI-PEDOT H-A": { - "field_count": 16, - "route_counts": { - "inhouse_ready": { - "field_count": 8, - "row_count": 120 - }, - "outsourced_preferred": { - "field_count": 1, - "row_count": 24 - }, - "supplier_or_build_record": { - "field_count": 7, - "row_count": 84 - }, - "vendor_or_future_gate": { - "field_count": 0, - "row_count": 0 - } - }, - "row_count": 228 - }, - "ZRC-ND Phase A": { - "field_count": 16, - "route_counts": { - "inhouse_ready": { - "field_count": 8, - "row_count": 64 - }, - "outsourced_preferred": { - "field_count": 2, - "row_count": 16 - }, - "supplier_or_build_record": { - "field_count": 6, - "row_count": 42 - }, - "vendor_or_future_gate": { - "field_count": 0, - "row_count": 0 - } - }, - "row_count": 122 - } - }, - "field_count": 32, - "route_totals": { - "inhouse_ready": { - "field_count": 16, - "row_count": 184 - }, - "outsourced_preferred": { - "field_count": 3, - "row_count": 40 - }, - "supplier_or_build_record": { - "field_count": 13, - "row_count": 126 - }, - "vendor_or_future_gate": { - "field_count": 0, - "row_count": 0 - } - }, - "row_count": 350 - }, - "zrc_active_candidate": "limina_zrc_nd_v0_1" -} \ No newline at end of file diff --git a/data/limina_iteration_state.json b/data/limina_iteration_state.json deleted file mode 100644 index e4950b3..0000000 --- a/data/limina_iteration_state.json +++ /dev/null @@ -1,2588 +0,0 @@ -{ - "commands": [ - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/import_evidence.py" - ], - "artifact": "reports/evidence_register.md", - "elapsed_seconds": 0.024, - "id": "import_evidence", - "purpose": "Refresh the evidence register and optional DuckDB index.", - "returncode": 0, - "stage": "evidence", - "stderr": "", - "stdout": "Imported 50 evidence records\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/evidence_records.jsonl\nSkipped DuckDB export because duckdb is not installed in this Python environment\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/evidence_register.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/validate_limina_data.py" - ], - "artifact": "reports/data_validation.md", - "elapsed_seconds": 0.024, - "id": "validate_data_refs", - "purpose": "Reject missing evidence references across candidates, protocols, and validation packages.", - "returncode": 0, - "stage": "evidence", - "stderr": "", - "stdout": "Validation passed for 50 evidence ids\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/data_validation.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/rank_limina_discovery_candidates.py" - ], - "artifact": "reports/limina_discovery_ranking.md", - "elapsed_seconds": 0.03, - "id": "rank_discovery_candidates", - "purpose": "Refresh the active material-technology ranking.", - "returncode": 0, - "stage": "candidate_selection", - "stderr": "", - "stdout": "Top discovery prospect: limina_alg_lam_pedot_lowdose_v0_2\nPriority: promote_now\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_discovery_ranking.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_discovery_ranking.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_protocol.py" - ], - "artifact": "reports/nhi_pedot_alg_lam_protocol.md", - "elapsed_seconds": 0.024, - "id": "render_alg_lam_protocol", - "purpose": "Refresh the recipe-specific ALG-LAM-PEDOT protocol handoff.", - "returncode": 0, - "stage": "candidate_handoff", - "stderr": "", - "stdout": "Rendered protocol: nhi_pedot_alg_lam_protocol_v0_2\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_alg_lam_protocol.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_source_file_manifest.py" - ], - "artifact": "reports/limina_source_file_manifest.md", - "elapsed_seconds": 0.026, - "id": "render_source_file_manifest", - "purpose": "Refresh allowed source-file roots and policy before any source-backed import runs.", - "returncode": 0, - "stage": "source_file_guard", - "stderr": "", - "stdout": "Source-file manifest: source_file_manifest_ready\nAllowed roots: 12\nExpected source classes: 12\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_source_file_manifest.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_source_file_manifest.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_source_file_manifest.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_source_values_sheet.py" - ], - "artifact": "reports/nhi_pedot_h_a_source_values_sheet.md", - "elapsed_seconds": 0.035, - "id": "render_h_a_source_values_sheet", - "purpose": "Render a fillable source-backed sidecar for formal H-A raw rows.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A source values sheet: h_a_source_values_sheet_ready\nRows: 228\nImport-ready rows: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_source_values.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_source_values_sheet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_source_values_sheet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_source_value_drop_plan.py", - "--profile", - "h_a" - ], - "artifact": "reports/nhi_pedot_h_a_source_drop_plan.md", - "elapsed_seconds": 0.092, - "id": "render_h_a_source_drop_plan", - "purpose": "Create allowed H-A source-file drop directories and a missing-file plan before import.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "Source drop plan: nhi_pedot_h_a_source_drop_plan_ready\nPlanned source files: 228\nCreated directories: 0\nExisting source files: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_source_drop_plan.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_source_drop_plan.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_source_drop_plan.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_source_unlock_pack.py" - ], - "artifact": "reports/nhi_pedot_h_a_source_unlock_pack.md", - "elapsed_seconds": 0.047, - "id": "render_h_a_source_unlock_pack", - "purpose": "Group H-A source-value rows into consolidated raw-file handoff bundles.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A source unlock bundles: 96 for 228 source-value rows\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_source_unlock_pack.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_source_unlock_pack.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_bundle_entry_sheet.py" - ], - "artifact": "reports/nhi_pedot_h_a_bundle_entry_sheet.md", - "elapsed_seconds": 0.03, - "id": "render_h_a_bundle_entry_sheet", - "purpose": "Render a consolidated one-row-per-bundle H-A entry sheet while preserving user-entered values.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A bundle entry sheet: h_a_bundle_entry_sheet_ready\nBundles: 96\nReady to apply: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_bundle_entry_sheet.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_bundle_entry_sheet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_bundle_entry_sheet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_vendor_bundle_entry_sheet.py" - ], - "artifact": "reports/nhi_pedot_h_a_vendor_bundle_entry_sheet.md", - "elapsed_seconds": 0.036, - "id": "render_h_a_vendor_bundle_entry_sheet", - "purpose": "Render a vendor-return H-A bundle-entry sheet in the return inbox while preserving provider-entered values.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A vendor bundle entry sheet: h_a_vendor_bundle_entry_sheet_ready\nBundles: 96\nReady to apply: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_vendor_bundle_entry_sheet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_vendor_bundle_entry_sheet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py" - ], - "artifact": "reports/nhi_pedot_h_a_bundle_entry_apply.md", - "elapsed_seconds": 0.027, - "id": "apply_h_a_bundle_entry_sheet", - "purpose": "Apply validated H-A bundle-entry rows into the source-values sheet without creating evidence.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A bundle entry apply: h_a_bundle_entry_apply_no_apply_rows\nApplied bundles: 0\nApplied source-value rows: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_bundle_entry_apply.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_bundle_entry_apply.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py" - ], - "artifact": "reports/nhi_pedot_h_a_vendor_bundle_entry_apply.md", - "elapsed_seconds": 0.026, - "id": "apply_h_a_vendor_bundle_entry_return", - "purpose": "Apply a returned compact H-A bundle-entry sheet from the vendor inbox when present.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A vendor bundle entry return apply: h_a_vendor_bundle_entry_return_no_apply_rows\nApplied bundles: 0\nApplied source-value rows: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_vendor_bundle_entry_apply.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_vendor_bundle_entry_apply.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_source_file_template_pack.py", - "--profile", - "h_a" - ], - "artifact": "reports/nhi_pedot_h_a_source_file_template_pack.md", - "elapsed_seconds": 0.029, - "id": "render_h_a_source_file_template_pack", - "purpose": "Render source-class raw-file templates for H-A source files without creating evidence.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "Source file template pack: nhi_pedot_h_a_source_file_template_pack_ready\nSource-class templates: 8\nTarget source files: 228\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_source_file_template_pack.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_source_file_template_manifest.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_source_file_template_pack.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/extract_nhi_pedot_h_a_raw_csv_values.py" - ], - "artifact": "reports/nhi_pedot_h_a_raw_csv_value_extraction.md", - "elapsed_seconds": 0.029, - "id": "extract_h_a_raw_csv_values", - "purpose": "Extract source-backed H-A values from existing raw CSV/TSV source files into an importer sidecar.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A raw CSV value extraction: h_a_raw_csv_value_extraction_no_raw_csv\nRaw CSV/TSV files found: 0\nExtracted rows: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_raw_csv_extracted_values.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_raw_csv_value_extraction.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_raw_csv_value_extraction.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/import_nhi_pedot_h_a_source_values.py" - ], - "artifact": "reports/nhi_pedot_h_a_source_value_import.md", - "elapsed_seconds": 0.028, - "id": "import_h_a_source_values", - "purpose": "Import valid source-file-backed H-A sidecar rows into the formal raw template before merge.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A source value import: h_a_source_value_import_no_importable_rows\nSource value files: 2\nImported rows: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_source_value_import.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_source_value_import.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/merge_nhi_pedot_h_a_raw_measurements.py" - ], - "artifact": "reports/nhi_pedot_h_a_measurement_merge.md", - "elapsed_seconds": 0.028, - "id": "merge_h_a_raw_measurements", - "purpose": "Merge any filled long-form H-A raw measurements into the active run table.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "Merged H-A raw measurements: applied=0 unresolved=0 unknown_run_ids=0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_raw_measurements_template.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_runs_active.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_measurement_merge.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_measurement_merge.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_bench_sheet.py" - ], - "artifact": "reports/nhi_pedot_h_a_bench_sheet.md", - "elapsed_seconds": 0.026, - "id": "render_h_a_bench_sheet", - "purpose": "Refresh the compact H-A bench sheet from the active run table and raw template.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "Rendered H-A bench sheet: tasks=12 blank_raw_entries=228\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_bench_sheet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_bench_sheet.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_bench_sheet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/qc_nhi_pedot_h_a_intake.py" - ], - "artifact": "reports/nhi_pedot_h_a_intake_qc.md", - "elapsed_seconds": 0.029, - "id": "qc_h_a_intake", - "purpose": "Check whether H-A rows have real, claimable measured provenance.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A intake QC: h_a_intake_not_ready\nErrors: 183\nWarnings: 24\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_intake_qc.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_intake_qc.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_minimum_measurement_checklist.py" - ], - "artifact": "reports/nhi_pedot_h_a_minimum_measurement_checklist.md", - "elapsed_seconds": 0.024, - "id": "render_h_a_minimum_checklist", - "purpose": "Compress the H-A work into a minimum real-measurement checklist.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "Rendered H-A minimum measurement checklist: runs=12\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_minimum_measurement_checklist.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_minimum_measurement_checklist.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_service_request.py" - ], - "artifact": "reports/nhi_pedot_h_a_service_request.md", - "elapsed_seconds": 0.024, - "id": "render_h_a_service_request", - "purpose": "Render a vendor/cooperator service request for real H-A measurements.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "Rendered H-A service request: runs=12 raw_entries=228\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_service_request.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_service_request.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_chain_of_custody.py" - ], - "artifact": "reports/nhi_pedot_h_a_chain_of_custody.md", - "elapsed_seconds": 0.026, - "id": "render_h_a_chain_of_custody", - "purpose": "Render sample labels and chain-of-custody blanks for real H-A sample transfer.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A chain of custody: ready_for_sample_handoff\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_sample_labels.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_chain_of_custody.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_chain_of_custody.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_chain_of_custody.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_sample_submission_pack.py" - ], - "artifact": "reports/nhi_pedot_h_a_sample_submission_pack.md", - "elapsed_seconds": 0.025, - "id": "render_h_a_sample_submission_pack", - "purpose": "Render material disclosure and pre-shipment questions for vendor sample submission.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A sample submission pack: sample_submission_precheck_ready\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_material_disclosure.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_sample_submission_pack.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_sample_submission_pack.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_split_scope_plan.py" - ], - "artifact": "reports/nhi_pedot_h_a_split_scope_plan.md", - "elapsed_seconds": 0.025, - "id": "render_h_a_split_scope_plan", - "purpose": "Render fallback vendor pairings for split media chemistry and coupon physical/imaging execution.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A split-scope plan: split_scope_plan_ready\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_split_scope_plan.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_split_scope_plan.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_split_scope_plan.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_delivery_package.py" - ], - "artifact": "reports/nhi_pedot_h_a_delivery_package_manifest.md", - "elapsed_seconds": 0.026, - "id": "render_h_a_delivery_package", - "purpose": "Render a sendable H-A package manifest with checksums and return-file expectations.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A delivery package: ready_to_send\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_delivery_package_manifest.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_delivery_package_manifest.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_vendor_outreach.py" - ], - "artifact": "reports/nhi_pedot_h_a_vendor_outreach_brief.md", - "elapsed_seconds": 0.024, - "id": "render_h_a_vendor_outreach", - "purpose": "Render a vendor/cooperator screening brief for real H-A measurement execution.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A vendor outreach: ready_for_vendor_screening\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_vendor_outreach.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_vendor_outreach_brief.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_rfq_packet.py" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_packet.md", - "elapsed_seconds": 0.024, - "id": "render_h_a_rfq_packet", - "purpose": "Render per-vendor RFQ text, attachment list, disqualifiers, and quote scoring rubric.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A RFQ packet: ready_to_send_rfq\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_packet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_packet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_rfq_outbox.py" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_outbox.md", - "elapsed_seconds": 0.043, - "id": "render_h_a_rfq_outbox", - "purpose": "Render vendor-specific RFQ email files and zip bundles for the H-A measurement request.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A RFQ outbox: ready_to_send_outbox\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_outbox_manifest.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_outbox.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_quote_tracker.py" - ], - "artifact": "reports/nhi_pedot_h_a_quote_tracker.md", - "elapsed_seconds": 0.025, - "id": "render_h_a_quote_tracker", - "purpose": "Render a blank tracker for vendor quote replies and selection decisions.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A quote tracker: pending_outreach\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_quote_tracker.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_quote_tracker.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_quote_tracker.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/intake_limina_rfq_send_confirmations.py", - "--profile", - "h_a" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_send_confirmation_intake.md", - "elapsed_seconds": 0.043, - "id": "intake_h_a_rfq_send_confirmations", - "purpose": "Scan original H-A RFQ send confirmations and auto-fill send-log rows only when a sent EML proves the expected bundle attachment.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "NHI-PEDOT H-A RFQ send confirmation intake: nhi_pedot_h_a_rfq_send_confirmation_intake_waiting_for_confirmation_files\nFiles scanned: 0\nApplied rows: 0\nNeeds review: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_confirmation_intake.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_confirmation_intake.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_send_confirmation_intake.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.py" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.md", - "elapsed_seconds": 0.028, - "id": "render_h_a_rfq_send_confirmation_entry_sheet", - "purpose": "Render a guarded entry sheet for non-EML H-A RFQ send confirmations such as web-form confirmations, PDFs, screenshots, or saved pages.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A RFQ send confirmation entry sheet: h_a_rfq_send_confirmation_entry_sheet_waiting_for_confirmation_files\nReady to apply: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/apply_nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.py" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.md", - "elapsed_seconds": 0.029, - "id": "apply_h_a_rfq_send_confirmation_entry_sheet", - "purpose": "Apply human-reviewed non-EML H-A RFQ send confirmations into the send log without treating outreach as evidence.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A RFQ send confirmation entry apply: h_a_rfq_send_confirmation_entry_apply_no_apply_rows\nApplied: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/apply_limina_rfq_send_log.py", - "--profile", - "h_a" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_send_log.md", - "elapsed_seconds": 0.034, - "id": "apply_h_a_rfq_send_log", - "purpose": "Render/apply verified H-A RFQ send confirmations into the quote tracker without treating outreach as evidence.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "NHI-PEDOT H-A RFQ send log: nhi_pedot_h_a_rfq_send_log_waiting_for_sent_entries\nRows: 4\nSent rows: 0\nApplied tracker contact dates: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_log.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_log.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_send_log.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/intake_limina_rfq_replies.py", - "--profile", - "h_a" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_reply_intake.md", - "elapsed_seconds": 0.042, - "id": "intake_h_a_rfq_replies", - "purpose": "Scan original H-A RFQ reply EML files and register verified-send replies for human review without scoring them.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "NHI-PEDOT H-A RFQ reply intake: nhi_pedot_h_a_rfq_reply_intake_waiting_for_reply_files\nFiles scanned: 0\nApplied rows: 0\nNeeds manual review: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_reply_intake.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_reply_intake.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_reply_intake.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/apply_limina_rfq_reply_log.py", - "--profile", - "h_a" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_reply_log.md", - "elapsed_seconds": 0.034, - "id": "apply_h_a_rfq_reply_log", - "purpose": "Render/apply source-backed H-A RFQ replies into the quote tracker without treating replies as measurement evidence.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "NHI-PEDOT H-A RFQ reply log: nhi_pedot_h_a_rfq_reply_log_waiting_for_reply_files\nRows: 4\nReceived rows: 0\nApplied tracker field updates: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_reply_log.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_reply_log.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_reply_log.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_vendor_contact_plan.py" - ], - "artifact": "reports/nhi_pedot_h_a_vendor_contact_plan.md", - "elapsed_seconds": 0.025, - "id": "render_h_a_vendor_contact_plan", - "purpose": "Render official contact channels for sending RFQ outbox bundles and tracking replies.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A vendor contact plan: contact_plan_ready\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_vendor_contact_plan.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_vendor_contact_plan.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_vendor_contact_plan.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/audit_nhi_pedot_h_a_vendor_contact_sources.py" - ], - "artifact": "reports/nhi_pedot_h_a_vendor_contact_source_audit.md", - "elapsed_seconds": 0.029, - "id": "audit_h_a_vendor_contact_sources", - "purpose": "Audit first-wave H-A RFQ contact channels against official-source proof rows before manual dispatch.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A vendor contact source audit: h_a_vendor_contact_source_audit_ready\nPass: 4 / 4\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_vendor_contact_source_audit.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_vendor_contact_source_audit.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_vendor_contact_source_audit.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_rfq_eml_drafts.py" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_eml_drafts.md", - "elapsed_seconds": 0.046, - "id": "render_h_a_rfq_eml_drafts", - "purpose": "Render attached EML drafts for first-wave H-A RFQ sends without sending them.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A RFQ EML drafts: h_a_rfq_eml_drafts_ready\nReady to open: 4\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_eml_drafts.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_eml_drafts.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_eml_drafts.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/audit_nhi_pedot_h_a_rfq_eml_integrity.py" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_eml_integrity_audit.md", - "elapsed_seconds": 0.042, - "id": "audit_h_a_rfq_eml_integrity", - "purpose": "Parse every H-A RFQ EML draft and verify recipient, boundary headers, bundle hash, and attached zip hash before manual sending.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A RFQ EML integrity audit: h_a_rfq_eml_integrity_ready\nPass: 4 / 4\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_eml_integrity_audit.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_eml_integrity_audit.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_eml_integrity_audit.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_rfq_send_action_pack.py" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_send_action_pack.md", - "elapsed_seconds": 0.026, - "id": "render_h_a_rfq_send_action_pack", - "purpose": "Render an actionable first-wave RFQ send queue with confirmation-file instructions.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A RFQ send action pack: h_a_rfq_send_action_pack_ready\nReady to send: 4\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_action_queue.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_action_pack.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_send_action_pack.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_rfq_dispatch_manifest.py" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_dispatch_manifest.md", - "elapsed_seconds": 0.028, - "id": "render_h_a_rfq_dispatch_manifest", - "purpose": "Bind each first-wave H-A RFQ draft to the exact audited bundle, recipient, and confirmation-save path before manual dispatch.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A RFQ dispatch manifest: h_a_rfq_dispatch_manifest_ready\nReady for manual dispatch: 4 / 4\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_dispatch_manifest.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_dispatch_manifest.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_dispatch_manifest.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_rfq_reply_action_pack.py" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_reply_action_pack.md", - "elapsed_seconds": 0.026, - "id": "render_h_a_rfq_reply_action_pack", - "purpose": "Render an actionable source-backed RFQ reply intake queue for provider selection.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A RFQ reply action pack: h_a_rfq_reply_action_pack_waiting_for_send\nAction rows: 4\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_reply_action_queue.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_reply_action_pack.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_reply_action_pack.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_rfq_send_cockpit.py" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_send_cockpit.md", - "elapsed_seconds": 0.029, - "id": "render_h_a_rfq_send_cockpit", - "purpose": "Render a single local cockpit for opening H-A RFQ drafts and preserving real send/reply source files.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A RFQ send cockpit: h_a_rfq_send_cockpit_ready_for_manual_send\nReady to use: 4 / 4\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_send_cockpit.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_send_cockpit.md\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_send_cockpit.html" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_rfq_dispatch_archive.py" - ], - "artifact": "reports/nhi_pedot_h_a_rfq_dispatch_archive_manifest.md", - "elapsed_seconds": 0.04, - "id": "render_h_a_rfq_dispatch_archive", - "purpose": "Render a single audited archive containing H-A RFQ drafts, bundles, manifests, contact audits, cockpit, and confirmation templates for manual dispatch.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A RFQ dispatch archive: h_a_rfq_dispatch_archive_ready\nIncluded files: 22\nArchive SHA-256: b739036ff6d618bec4b57e1c028676338ef58599a11fb7a6822a6df9b725368b\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_dispatch_archive/nhi_pedot_h_a_rfq_dispatch_archive.zip\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_dispatch_archive_manifest.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_rfq_dispatch_archive_manifest.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_rfq_dispatch_archive_manifest.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/evaluate_nhi_pedot_h_a_quote_replies.py" - ], - "artifact": "reports/nhi_pedot_h_a_quote_selection.md", - "elapsed_seconds": 0.025, - "id": "evaluate_h_a_quote_replies", - "purpose": "Score any RFQ replies for H-A execution selection without treating quotes as evidence.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A quote selection: pending_outreach\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_quote_selection.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_quote_selection.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/apply_limina_execution_authorization_log.py", - "--profile", - "h_a" - ], - "artifact": "reports/nhi_pedot_h_a_execution_authorization_log.md", - "elapsed_seconds": 0.034, - "id": "apply_h_a_execution_authorization_log", - "purpose": "Render/validate human H-A execution authorization records without treating authorization as evidence.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "NHI-PEDOT H-A execution authorization log: nhi_pedot_h_a_execution_authorization_waiting_for_selected_provider\nRows: 0\nValid authorizations: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_execution_authorization_log.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_execution_authorization_log.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_execution_authorization_log.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/audit_limina_execution_release.py", - "--profile", - "h_a" - ], - "artifact": "reports/nhi_pedot_h_a_execution_release_audit.md", - "elapsed_seconds": 0.033, - "id": "audit_h_a_execution_release", - "purpose": "Block H-A sample or outsourced execution release until a source-backed selected provider is verified.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "NHI-PEDOT H-A execution release audit: nhi_pedot_h_a_execution_release_blocked_no_source_backed_provider_selection\nReady for authorization: false\nReleased for execution: false\nBlockers: 1\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_execution_release_audit.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_execution_release_audit.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_nhi_pedot_h_a_vendor_return_intake.py" - ], - "artifact": "reports/nhi_pedot_h_a_vendor_return_intake.md", - "elapsed_seconds": 0.028, - "id": "render_h_a_vendor_return_intake", - "purpose": "Check the vendor-return inbox for real H-A measurement files ready for merge/QC.", - "returncode": 0, - "stage": "h_a_intake", - "stderr": "", - "stdout": "H-A vendor return intake: awaiting_vendor_return_files\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_vendor_return_checklist.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_vendor_return_intake.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_vendor_return_intake.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/interpret_nhi_pedot_h_a_sentinel.py" - ], - "artifact": "reports/nhi_pedot_h_a_sentinel_interpretation.md", - "elapsed_seconds": 0.026, - "id": "interpret_h_a_sentinel", - "purpose": "Interpret H-A only if provenance is acceptable; otherwise keep the blocker explicit.", - "returncode": 0, - "stage": "h_a_gate", - "stderr": "", - "stdout": "NHI-PEDOT H-A sentinel: h_a_invalid_provenance\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_sentinel_interpretation.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_sentinel_interpretation.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/suggest_nhi_pedot_next_measurements.py" - ], - "artifact": "reports/nhi_pedot_next_measurements.md", - "elapsed_seconds": 0.025, - "id": "refresh_next_measurements", - "purpose": "Refresh the next H-A measurement selector.", - "returncode": 0, - "stage": "h_a_next_actions", - "stderr": "", - "stdout": "Recommendation: needs_h_a_sentinel\nRecommended rows: 12\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_next_measurements.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_next_measurements.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_next_measurements.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/generate_nhi_pedot_sentinel_packet.py" - ], - "artifact": "reports/nhi_pedot_h_a_sentinel_packet.md", - "elapsed_seconds": 0.025, - "id": "refresh_h_a_packet", - "purpose": "Regenerate the H-A sentinel packet for real measurement entry.", - "returncode": 0, - "stage": "h_a_next_actions", - "stderr": "", - "stdout": "Generated 12 NHI-PEDOT H-A sentinel template rows\nGenerated 36 sample manifest rows\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_sentinel_template.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_sentinel_sample_manifest.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_sentinel_packet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/design_nhi_pedot_variant_ladder.py" - ], - "artifact": "reports/nhi_pedot_variant_ladder.md", - "elapsed_seconds": 0.024, - "id": "design_variant_ladder", - "purpose": "Refresh the predeclared rescue and comparator ladder.", - "returncode": 0, - "stage": "adaptive_design", - "stderr": "", - "stdout": "Designed 7 NHI-PEDOT variant ladder rows\nTop variant: alg_lam_pedot_0p6pct_lead\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_variant_ladder.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_variant_ladder.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_variant_ladder.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/generate_nhi_pedot_forward_gate_package.py" - ], - "artifact": "reports/nhi_pedot_forward_gate_package.md", - "elapsed_seconds": 0.026, - "id": "generate_forward_gate_package", - "purpose": "Pre-register H-B/H-C gate rows and decision triggers after H-A.", - "returncode": 0, - "stage": "forward_evidence", - "stderr": "", - "stdout": "NHI-PEDOT forward gate package: preregistered_waiting_for_h_a\nRows: 28\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_forward_gate_package.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_forward_gate_rows.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_forward_gate_package.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_wide_source_values_sheet.py", - "--profile", - "nhi_forward" - ], - "artifact": "reports/nhi_pedot_forward_source_values_sheet.md", - "elapsed_seconds": 0.046, - "id": "render_nhi_forward_source_values_sheet", - "purpose": "Render a source-file-backed sidecar for NHI-PEDOT H-B/H-C wide run rows.", - "returncode": 0, - "stage": "forward_evidence", - "stderr": "", - "stdout": "NHI-PEDOT H-B/H-C source values sheet: nhi_pedot_forward_source_values_sheet_ready\nRows: 592\nImport-ready rows: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_forward_source_values.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_forward_source_values_sheet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_forward_source_values_sheet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_source_value_drop_plan.py", - "--profile", - "nhi_forward" - ], - "artifact": "reports/nhi_pedot_forward_source_drop_plan.md", - "elapsed_seconds": 0.142, - "id": "render_nhi_forward_source_drop_plan", - "purpose": "Create allowed H-B/H-C source-file drop directories and a missing-file plan before import.", - "returncode": 0, - "stage": "forward_evidence", - "stderr": "", - "stdout": "Source drop plan: nhi_pedot_forward_source_drop_plan_ready\nPlanned source files: 592\nCreated directories: 0\nExisting source files: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_forward_source_drop_plan.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_forward_source_drop_plan.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_forward_source_drop_plan.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_source_file_template_pack.py", - "--profile", - "nhi_forward" - ], - "artifact": "reports/nhi_pedot_forward_source_file_template_pack.md", - "elapsed_seconds": 0.033, - "id": "render_nhi_forward_source_file_template_pack", - "purpose": "Render source-class raw-file templates for H-B/H-C source files without creating evidence.", - "returncode": 0, - "stage": "forward_evidence", - "stderr": "", - "stdout": "Source file template pack: nhi_pedot_forward_source_file_template_pack_ready\nSource-class templates: 6\nTarget source files: 592\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_forward_source_file_template_pack.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_forward_source_file_template_manifest.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_forward_source_file_template_pack.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/extract_limina_wide_raw_csv_values.py", - "--profile", - "nhi_forward" - ], - "artifact": "reports/nhi_pedot_forward_raw_csv_value_extraction.md", - "elapsed_seconds": 0.032, - "id": "extract_nhi_forward_raw_csv_values", - "purpose": "Extract NHI-PEDOT H-B/H-C source values from existing raw CSV/TSV files in allowed source-file roots.", - "returncode": 0, - "stage": "forward_evidence", - "stderr": "", - "stdout": "NHI-PEDOT H-B/H-C raw CSV value extraction: nhi_pedot_forward_raw_csv_value_extraction_no_raw_csv\nRaw CSV/TSV files found: 0\nExtracted rows: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_forward_raw_csv_extracted_values.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_forward_raw_csv_value_extraction.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_forward_raw_csv_value_extraction.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/import_limina_wide_source_values.py", - "--profile", - "nhi_forward" - ], - "artifact": "reports/nhi_pedot_forward_source_values_import.md", - "elapsed_seconds": 0.031, - "id": "import_nhi_forward_source_values", - "purpose": "Import valid source-file-backed H-B/H-C values into the NHI-PEDOT evaluator table.", - "returncode": 0, - "stage": "forward_evidence", - "stderr": "", - "stdout": "NHI-PEDOT H-B/H-C source value import: nhi_pedot_forward_source_value_import_no_importable_rows\nSource value files: 2\nImported rows: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_forward_source_values_import.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_forward_source_values_import.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/evaluate_nhi_pedot_runs.py" - ], - "artifact": "reports/nhi_pedot_results.md", - "elapsed_seconds": 0.025, - "id": "evaluate_nhi_coupon_runs", - "purpose": "Refresh NHI-PEDOT coupon gate results from the current evaluator table.", - "returncode": 0, - "stage": "forward_evidence", - "stderr": "", - "stdout": "NHI-PEDOT: no_data\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_results.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_results.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_wide_source_values_sheet.py", - "--profile", - "nhi_long" - ], - "artifact": "reports/nhi_pedot_long_source_values_sheet.md", - "elapsed_seconds": 0.207, - "id": "render_nhi_long_source_values_sheet", - "purpose": "Render a source-file-backed sidecar for NHI-PEDOT long-duration wide run rows.", - "returncode": 0, - "stage": "long_duration_evidence", - "stderr": "", - "stdout": "NHI-PEDOT long-duration source values sheet: nhi_pedot_long_source_values_sheet_ready\nRows: 4836\nImport-ready rows: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_long_source_values.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_long_source_values_sheet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_long_source_values_sheet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_source_value_drop_plan.py", - "--profile", - "nhi_long" - ], - "artifact": "reports/nhi_pedot_long_source_drop_plan.md", - "elapsed_seconds": 1.214, - "id": "render_nhi_long_source_drop_plan", - "purpose": "Create allowed long-duration source-file drop directories and a missing-file plan before import.", - "returncode": 0, - "stage": "long_duration_evidence", - "stderr": "", - "stdout": "Source drop plan: nhi_pedot_long_source_drop_plan_ready\nPlanned source files: 4836\nCreated directories: 0\nExisting source files: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_long_source_drop_plan.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_long_source_drop_plan.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_long_source_drop_plan.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_source_file_template_pack.py", - "--profile", - "nhi_long" - ], - "artifact": "reports/nhi_pedot_long_source_file_template_pack.md", - "elapsed_seconds": 0.09, - "id": "render_nhi_long_source_file_template_pack", - "purpose": "Render source-class raw-file templates for long-duration source files without creating evidence.", - "returncode": 0, - "stage": "long_duration_evidence", - "stderr": "", - "stdout": "Source file template pack: nhi_pedot_long_source_file_template_pack_ready\nSource-class templates: 5\nTarget source files: 4836\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_long_source_file_template_pack.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_long_source_file_template_manifest.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_long_source_file_template_pack.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/extract_limina_wide_raw_csv_values.py", - "--profile", - "nhi_long" - ], - "artifact": "reports/nhi_pedot_long_raw_csv_value_extraction.md", - "elapsed_seconds": 0.078, - "id": "extract_nhi_long_raw_csv_values", - "purpose": "Extract NHI-PEDOT long-duration source values from existing raw CSV/TSV files in allowed source-file roots.", - "returncode": 0, - "stage": "long_duration_evidence", - "stderr": "", - "stdout": "NHI-PEDOT long-duration raw CSV value extraction: nhi_pedot_long_raw_csv_value_extraction_no_raw_csv\nRaw CSV/TSV files found: 0\nExtracted rows: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_long_raw_csv_extracted_values.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_long_raw_csv_value_extraction.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_long_raw_csv_value_extraction.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/import_limina_wide_source_values.py", - "--profile", - "nhi_long" - ], - "artifact": "reports/nhi_pedot_long_source_values_import.md", - "elapsed_seconds": 0.052, - "id": "import_nhi_long_source_values", - "purpose": "Import valid source-file-backed long-duration values into the NHI-PEDOT long evaluator table.", - "returncode": 0, - "stage": "long_duration_evidence", - "stderr": "", - "stdout": "NHI-PEDOT long-duration source value import: nhi_pedot_long_source_value_import_no_importable_rows\nSource value files: 2\nImported rows: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_long_source_values_import.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_long_source_values_import.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/evaluate_nhi_pedot_long_runs.py" - ], - "artifact": "reports/nhi_pedot_long_results.md", - "elapsed_seconds": 0.028, - "id": "evaluate_nhi_long_runs", - "purpose": "Refresh NHI-PEDOT long-duration gate results from the current evaluator table.", - "returncode": 0, - "stage": "long_duration_evidence", - "stderr": "", - "stdout": "NHI-PEDOT long: no_data\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_long_results.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_long_results.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/interpret_zrc_nd_sentinel.py" - ], - "artifact": "reports/zrc_nd_sentinel_interpretation.md", - "elapsed_seconds": 0.025, - "id": "interpret_zrc_phase_a_sentinel", - "purpose": "Refresh the ZRC-ND Phase A sentinel interpretation without treating blank rows as evidence.", - "returncode": 0, - "stage": "zrc_phase_a", - "stderr": "", - "stdout": "Sentinel: no_sentinel_rows\nNext action: Generate and fill the Phase A sentinel packet.\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_sentinel_interpretation.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_sentinel_interpretation.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/suggest_zrc_nd_next_measurements.py" - ], - "artifact": "reports/zrc_nd_next_measurements.md", - "elapsed_seconds": 0.027, - "id": "suggest_zrc_next_measurements", - "purpose": "Refresh the adaptive ZRC-ND external-material next measurement selector.", - "returncode": 0, - "stage": "zrc_phase_a", - "stderr": "", - "stdout": "Recommendation: needs_phase_a_sentinel\nRecommended rows: 8\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_next_measurements.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_next_measurements.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_next_measurements.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/generate_zrc_nd_sentinel_packet.py" - ], - "artifact": "reports/zrc_nd_phase_a_sentinel_packet.md", - "elapsed_seconds": 0.025, - "id": "generate_zrc_phase_a_packet", - "purpose": "Regenerate the 8-row ZRC-ND Phase A sentinel data-entry packet.", - "returncode": 0, - "stage": "zrc_phase_a", - "stderr": "", - "stdout": "Generated 8 Phase A sentinel template rows\nGenerated 16 sample manifest rows\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_sentinel_template.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_sentinel_sample_manifest.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_sentinel_packet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_wide_source_values_sheet.py", - "--profile", - "zrc_phase_a" - ], - "artifact": "reports/zrc_nd_phase_a_source_values_sheet.md", - "elapsed_seconds": 0.036, - "id": "render_zrc_phase_a_source_values_sheet", - "purpose": "Render a source-file-backed sidecar for ZRC-ND Phase A wide measurement rows.", - "returncode": 0, - "stage": "zrc_phase_a", - "stderr": "", - "stdout": "ZRC-ND Phase A source values sheet: zrc_nd_phase_a_source_values_sheet_ready\nRows: 304\nImport-ready rows: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_source_values.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_source_values_sheet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_source_values_sheet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_source_value_drop_plan.py", - "--profile", - "zrc_phase_a" - ], - "artifact": "reports/zrc_nd_phase_a_source_drop_plan.md", - "elapsed_seconds": 0.07, - "id": "render_zrc_phase_a_source_drop_plan", - "purpose": "Create allowed ZRC-ND Phase A source-file drop directories and a missing-file plan before import.", - "returncode": 0, - "stage": "zrc_phase_a", - "stderr": "", - "stdout": "Source drop plan: zrc_nd_phase_a_source_drop_plan_ready\nPlanned source files: 304\nCreated directories: 0\nExisting source files: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_source_drop_plan.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_source_drop_plan.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_source_drop_plan.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_source_file_template_pack.py", - "--profile", - "zrc_phase_a" - ], - "artifact": "reports/zrc_nd_phase_a_source_file_template_pack.md", - "elapsed_seconds": 0.03, - "id": "render_zrc_phase_a_source_file_template_pack", - "purpose": "Render source-class raw-file templates for ZRC-ND Phase A source files without creating evidence.", - "returncode": 0, - "stage": "zrc_phase_a", - "stderr": "", - "stdout": "Source file template pack: zrc_nd_phase_a_source_file_template_pack_ready\nSource-class templates: 8\nTarget source files: 304\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_source_file_template_pack.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_source_file_template_manifest.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_source_file_template_pack.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_vendor_bundle_entry_sheet.py" - ], - "artifact": "reports/zrc_nd_phase_a_vendor_bundle_entry_sheet.md", - "elapsed_seconds": 0.032, - "id": "render_zrc_phase_a_vendor_bundle_entry_sheet", - "purpose": "Render a compact one-row-per-run/source-class ZRC-ND Phase A vendor return sheet while preserving user-entered values.", - "returncode": 0, - "stage": "zrc_phase_a", - "stderr": "", - "stdout": "ZRC-ND Phase A vendor bundle entry sheet: zrc_phase_a_vendor_bundle_entry_sheet_ready\nBundles: 64\nReady to apply: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_vendor_return_inbox/completed_bundle_entry_sheet.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_vendor_bundle_entry_sheet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_vendor_bundle_entry_sheet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py" - ], - "artifact": "reports/zrc_nd_phase_a_vendor_bundle_entry_apply.md", - "elapsed_seconds": 0.028, - "id": "apply_zrc_phase_a_vendor_bundle_entry_sheet", - "purpose": "Apply reviewed ZRC-ND Phase A vendor bundle-entry rows into the source-values sheet without creating evidence.", - "returncode": 0, - "stage": "zrc_phase_a", - "stderr": "", - "stdout": "ZRC-ND Phase A vendor bundle entry apply: zrc_phase_a_vendor_bundle_entry_apply_no_apply_rows\nApplied bundles: 0\nApplied source-value rows: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_vendor_bundle_entry_apply.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_vendor_bundle_entry_apply.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/extract_limina_wide_raw_csv_values.py", - "--profile", - "zrc_phase_a" - ], - "artifact": "reports/zrc_nd_phase_a_raw_csv_value_extraction.md", - "elapsed_seconds": 0.029, - "id": "extract_zrc_phase_a_raw_csv_values", - "purpose": "Extract ZRC-ND Phase A source values from existing raw CSV/TSV files in allowed source-file roots.", - "returncode": 0, - "stage": "zrc_phase_a", - "stderr": "", - "stdout": "ZRC-ND Phase A raw CSV value extraction: zrc_nd_phase_a_raw_csv_value_extraction_no_raw_csv\nRaw CSV/TSV files found: 0\nExtracted rows: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_raw_csv_extracted_values.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_raw_csv_value_extraction.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_raw_csv_value_extraction.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/import_limina_wide_source_values.py", - "--profile", - "zrc_phase_a" - ], - "artifact": "reports/zrc_nd_phase_a_source_values_import.md", - "elapsed_seconds": 0.029, - "id": "import_zrc_phase_a_source_values", - "purpose": "Import valid source-file-backed ZRC-ND Phase A values into the vendor-return measurement CSV.", - "returncode": 0, - "stage": "zrc_phase_a", - "stderr": "", - "stdout": "ZRC-ND Phase A source value import: zrc_nd_phase_a_source_value_import_no_importable_rows\nSource value files: 2\nImported rows: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_source_values_import.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_source_values_import.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_service_request.py" - ], - "artifact": "reports/zrc_nd_phase_a_service_request.md", - "elapsed_seconds": 0.025, - "id": "render_zrc_phase_a_service_request", - "purpose": "Render a service request for real ZRC-ND Phase A medium-integrity measurements.", - "returncode": 0, - "stage": "zrc_phase_a", - "stderr": "", - "stdout": "ZRC-ND Phase A service request: ready_to_request_real_phase_a_measurements\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_service_request.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_service_request.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_hybrid_measurement_plan.py" - ], - "artifact": "reports/limina_hybrid_measurement_plan.md", - "elapsed_seconds": 0.026, - "id": "render_hybrid_measurement_plan", - "purpose": "Split H-A and ZRC-ND Phase A fields into local, outsourced, and provenance-only measurement routes.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Hybrid measurement plan: hybrid_measurement_plan_ready\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_hybrid_measurement_plan.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_hybrid_measurement_plan.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_hybrid_measurement_plan.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_local_capture_pack.py" - ], - "artifact": "reports/limina_local_capture_pack.md", - "elapsed_seconds": 0.035, - "id": "render_local_capture_pack", - "purpose": "Render fillable local/outsource capture templates, instrument register, and QC checklist.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Local capture pack: local_capture_pack_ready\nTasks: 350\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_local_capture_pack.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_local_capture_pack.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/audit_limina_source_file_inventory.py" - ], - "artifact": "reports/limina_source_file_inventory.md", - "elapsed_seconds": 0.064, - "id": "audit_source_file_inventory", - "purpose": "Inventory source-file dropboxes, hash raw files, and reconcile capture-template source_file references.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Source-file inventory: source_file_inventory_empty\nFiles: 0\nMissing references: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_source_file_inventory.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_source_file_inventory.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_source_file_inventory.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/regress_limina_source_value_inventory.py" - ], - "artifact": "reports/limina_source_value_inventory_regression.md", - "elapsed_seconds": 0.035, - "id": "regress_source_value_inventory", - "purpose": "Verify filled source-value rows are reconciled by source-file inventory and blank rows are ignored.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "LIMINA source-value inventory regression: pass\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_source_value_inventory_regression.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_source_value_inventory_regression.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/regress_nhi_pedot_h_a_raw_csv_extraction.py" - ], - "artifact": "reports/nhi_pedot_h_a_raw_csv_extraction_regression.md", - "elapsed_seconds": 0.03, - "id": "regress_h_a_raw_csv_extraction", - "purpose": "Verify H-A raw CSV extraction only accepts real source files and rejects placeholder-looking values.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "NHI-PEDOT H-A raw CSV extraction regression: pass\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_raw_csv_extraction_regression.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_raw_csv_extraction_regression.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/regress_nhi_pedot_h_a_bundle_entry.py" - ], - "artifact": "reports/nhi_pedot_h_a_bundle_entry_regression.md", - "elapsed_seconds": 0.028, - "id": "regress_h_a_bundle_entry", - "purpose": "Verify H-A bundle entry sheets do not mutate source values unless valid source-backed rows are applied.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "NHI-PEDOT H-A bundle entry regression: pass\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_bundle_entry_regression.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_bundle_entry_regression.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/regress_nhi_pedot_h_a_vendor_bundle_entry_return.py" - ], - "artifact": "reports/nhi_pedot_h_a_vendor_bundle_entry_return_regression.md", - "elapsed_seconds": 0.028, - "id": "regress_h_a_vendor_bundle_entry_return", - "purpose": "Verify returned compact H-A bundle-entry sheets only update source values when source-backed.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "NHI-PEDOT H-A vendor bundle-entry return regression: pass\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_vendor_bundle_entry_return_regression.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/nhi_pedot_h_a_vendor_bundle_entry_return_regression.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/regress_limina_wide_raw_csv_extraction.py" - ], - "artifact": "reports/limina_wide_raw_csv_extraction_regression.md", - "elapsed_seconds": 0.028, - "id": "regress_wide_raw_csv_extraction", - "purpose": "Verify wide raw CSV extraction only accepts real source files and rejects placeholder-looking values.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "LIMINA wide raw CSV extraction regression: pass\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_wide_raw_csv_extraction_regression.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_wide_raw_csv_extraction_regression.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/regress_limina_rfq_send_log.py" - ], - "artifact": "reports/limina_rfq_send_log_regression.md", - "elapsed_seconds": 0.042, - "id": "regress_rfq_send_log", - "purpose": "Verify RFQ send logs only update quote trackers with valid real send confirmations.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "LIMINA RFQ send-log regression: pass\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_rfq_send_log_regression.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_rfq_send_log_regression.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/regress_limina_rfq_send_confirmation_intake.py" - ], - "artifact": "reports/limina_rfq_send_confirmation_intake_regression.md", - "elapsed_seconds": 0.053, - "id": "regress_rfq_send_confirmation_intake", - "purpose": "Verify RFQ send-confirmation intake only auto-applies sent EML files with matching bundle attachments.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "LIMINA RFQ send-confirmation intake regression: pass\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_rfq_send_confirmation_intake_regression.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_rfq_send_confirmation_intake_regression.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/regress_limina_rfq_reply_intake.py" - ], - "artifact": "reports/limina_rfq_reply_intake_regression.md", - "elapsed_seconds": 0.053, - "id": "regress_rfq_reply_intake", - "purpose": "Verify RFQ reply intake only registers parsable EML replies after verified sends and does not auto-score providers.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "LIMINA RFQ reply intake regression: pass\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_rfq_reply_intake_regression.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_rfq_reply_intake_regression.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/regress_limina_rfq_reply_log.py" - ], - "artifact": "reports/limina_rfq_reply_log_regression.md", - "elapsed_seconds": 0.037, - "id": "regress_rfq_reply_log", - "purpose": "Verify RFQ reply logs only update quote trackers with source-backed replies.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "LIMINA RFQ reply-log regression: pass\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_rfq_reply_log_regression.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_rfq_reply_log_regression.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/regress_limina_quote_selection_source_guard.py" - ], - "artifact": "reports/limina_quote_selection_source_guard_regression.md", - "elapsed_seconds": 0.022, - "id": "regress_quote_selection_source_guard", - "purpose": "Verify quote selection cannot shortlist or select providers from unbacked tracker replies.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "LIMINA quote-selection source guard regression: pass\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_quote_selection_source_guard_regression.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_quote_selection_source_guard_regression.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/regress_limina_execution_release.py" - ], - "artifact": "reports/limina_execution_release_regression.md", - "elapsed_seconds": 0.029, - "id": "regress_execution_release", - "purpose": "Verify execution release remains blocked until a source-backed selected provider has verified send and reply records.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "LIMINA execution-release regression: pass\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_execution_release_regression.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_execution_release_regression.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/regress_limina_execution_authorization_log.py" - ], - "artifact": "reports/limina_execution_authorization_log_regression.md", - "elapsed_seconds": 0.037, - "id": "regress_execution_authorization_log", - "purpose": "Verify execution authorization logs require source-backed selected providers and source-file-backed authorization records.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "LIMINA execution authorization log regression: pass\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_execution_authorization_log_regression.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_execution_authorization_log_regression.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/preflight_limina_local_capture.py" - ], - "artifact": "reports/limina_local_capture_preflight.md", - "elapsed_seconds": 0.04, - "id": "preflight_local_capture", - "purpose": "Check filled local/outsource capture templates before any merge into evaluator tables.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Local capture preflight: local_capture_preflight_awaiting_entries\nFilled tasks: 0 / 350\nErrors: 0\nWarnings: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_local_capture_preflight.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_local_capture_preflight.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_smoke_capture_tranche.py" - ], - "artifact": "reports/limina_smoke_capture_tranche.md", - "elapsed_seconds": 0.028, - "id": "render_smoke_capture_tranche", - "purpose": "Render the smallest useful capture tranche for real-measurement pipeline rehearsal and early red flags.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke capture tranche: smoke_capture_tranche_ready\nTasks: 172\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_capture_tranche.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_capture_tranche.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_smoke_execution_queue.py" - ], - "artifact": "reports/limina_smoke_execution_queue.md", - "elapsed_seconds": 0.031, - "id": "render_smoke_execution_queue", - "purpose": "Turn smoke-tranche rows into a source-file-aware execution queue for real capture.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke execution queue: smoke_execution_queue_ready\nRows: 172\nAwaiting values: 172\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_execution_queue.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_execution_queue.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_execution_queue.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_smoke_entry_sheet.py" - ], - "artifact": "reports/limina_smoke_entry_sheet.md", - "elapsed_seconds": 0.028, - "id": "render_smoke_entry_sheet", - "purpose": "Render a single fillable smoke entry sheet while preserving any user-entered values.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke entry sheet: smoke_entry_sheet_ready\nRows: 172\nReady to apply: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_entry_sheet.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_entry_sheet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_entry_sheet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_smoke_source_drop_plan.py" - ], - "artifact": "reports/limina_smoke_source_drop_plan.md", - "elapsed_seconds": 0.041, - "id": "render_smoke_source_drop_plan", - "purpose": "Create source-file drop directories and a missing-file plan for the smoke entry sheet.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke source drop plan: smoke_source_drop_plan_ready\nPlanned source files: 172\nCreated directories: 0\nExisting source files: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_source_drop_plan.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_source_drop_plan.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_source_drop_plan.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_smoke_source_values_sheet.py" - ], - "artifact": "reports/limina_smoke_source_values_sheet.md", - "elapsed_seconds": 0.03, - "id": "render_smoke_source_values_sheet", - "purpose": "Render a consolidated source-values sheet and starter batch for real smoke measurements.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke source values sheet: smoke_source_values_sheet_ready\nRows: 172\nStarter rows: 19\nImport-ready rows: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_source_values.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_source_values_starter_batch.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_source_values_sheet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_source_values_sheet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/audit_limina_smoke_starter_batch_readiness.py" - ], - "artifact": "reports/limina_smoke_starter_batch_readiness.md", - "elapsed_seconds": 0.027, - "id": "audit_smoke_starter_batch_readiness", - "purpose": "Audit whether the 19-row smoke starter batch has real values and source files ready for import.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke starter batch readiness: smoke_starter_batch_awaiting_values\nStarter rows: 19\nReady for import: 0\nBlocked rows: 19\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_starter_batch_readiness.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_starter_batch_readiness.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_starter_batch_readiness.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_smoke_starter_execution_pack.py" - ], - "artifact": "reports/limina_smoke_starter_execution_pack.md", - "elapsed_seconds": 0.027, - "id": "render_smoke_starter_execution_pack", - "purpose": "Render the operational file checklist for the 19-row smoke starter batch.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke starter execution pack: smoke_starter_execution_pack_ready\nStarter rows: 19\nReady for import: 0\nBlocked rows: 19\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_starter_execution_pack.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_starter_execution_pack.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_starter_execution_pack.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_smoke_starter_raw_file_template_pack.py" - ], - "artifact": "reports/limina_smoke_starter_raw_file_template_pack.md", - "elapsed_seconds": 0.026, - "id": "render_smoke_starter_raw_file_template_pack", - "purpose": "Render source-class raw-file templates outside source-file roots for the starter batch.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke starter raw-file template pack: smoke_starter_raw_file_template_pack_ready\nStarter rows covered: 19\nSource-class templates: 8\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_starter_raw_file_template_pack.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_starter_raw_file_template_manifest.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_starter_raw_file_template_pack.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/extract_limina_smoke_raw_csv_values.py" - ], - "artifact": "reports/limina_smoke_raw_csv_value_extraction.md", - "elapsed_seconds": 0.026, - "id": "extract_smoke_raw_csv_values", - "purpose": "Extract source-backed values from existing raw CSV/TSV starter files without creating evidence.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke raw CSV value extraction: smoke_raw_csv_value_extraction_no_raw_csv\nRaw CSV/TSV files found: 0\nExtracted rows: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_raw_csv_extracted_values.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_raw_csv_value_extraction.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_raw_csv_value_extraction.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/intake_limina_smoke_unstructured_sources.py" - ], - "artifact": "reports/limina_smoke_unstructured_source_intake.md", - "elapsed_seconds": 0.044, - "id": "intake_smoke_unstructured_sources", - "purpose": "Hash and route existing PDF/image starter source files for value extraction without creating evidence.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke unstructured source intake: smoke_unstructured_source_intake_waiting_for_files\nUnstructured plan rows: 10\nReady for value extraction: 0\nInvalid source files: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_unstructured_source_intake.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_unstructured_source_intake.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_unstructured_source_intake.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_smoke_unstructured_review_values.py" - ], - "artifact": "reports/limina_smoke_unstructured_review_values.md", - "elapsed_seconds": 0.026, - "id": "render_smoke_unstructured_review_values", - "purpose": "Render fillable source-value rows for manually extracting values from existing unstructured starter files.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke unstructured review values: smoke_unstructured_review_values_waiting_for_source_files\nReview rows: 10\nReady source rows: 0\nImport-ready rows: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_unstructured_review_values.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_unstructured_review_values.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_unstructured_review_values.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/import_limina_smoke_source_values.py" - ], - "artifact": "reports/limina_smoke_source_value_import.md", - "elapsed_seconds": 0.029, - "id": "import_smoke_source_values", - "purpose": "Import real source-file-backed value sidecars into the smoke entry sheet before validation and apply.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke source value import: smoke_source_value_import_no_importable_rows\nSource value files: 3\nImported rows: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_source_value_import.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_source_value_import.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/apply_limina_smoke_entry_sheet.py" - ], - "artifact": "reports/limina_smoke_entry_apply.md", - "elapsed_seconds": 0.027, - "id": "apply_smoke_entry_sheet", - "purpose": "Apply validated filled smoke entry-sheet rows into the H-A/ZRC smoke templates.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke entry apply: smoke_entry_apply_no_filled_rows\nApplied values: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_entry_apply.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_entry_apply.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_smoke_execution_queue.py" - ], - "artifact": "reports/limina_smoke_execution_queue.md", - "elapsed_seconds": 0.03, - "id": "refresh_smoke_execution_queue_after_entry_apply", - "purpose": "Refresh smoke queue statuses after entry-sheet application and before preflight.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke execution queue: smoke_execution_queue_ready\nRows: 172\nAwaiting values: 172\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_execution_queue.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_execution_queue.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_execution_queue.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/preflight_limina_local_capture.py", - "--tasks", - "data/limina_smoke_capture_tasks.csv", - "--h-a-local", - "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "--h-a-outsource", - "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "--zrc-local", - "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "--zrc-outsource", - "data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv", - "--json-out", - "data/limina_smoke_capture_preflight.json", - "--report", - "reports/limina_smoke_capture_preflight.md" - ], - "artifact": "reports/limina_smoke_capture_preflight.md", - "elapsed_seconds": 0.034, - "id": "preflight_smoke_capture", - "purpose": "Check whether the smoke tranche is filled well enough for a merge rehearsal.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Local capture preflight: local_capture_preflight_awaiting_entries\nFilled tasks: 0 / 172\nErrors: 0\nWarnings: 0\nWrote data/limina_smoke_capture_preflight.json\nWrote reports/limina_smoke_capture_preflight.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/run_limina_smoke_rehearsal.py" - ], - "artifact": "reports/limina_smoke_rehearsal.md", - "elapsed_seconds": 0.027, - "id": "run_smoke_rehearsal", - "purpose": "Run smoke-only merge/QC/evaluation rehearsal into temporary files when preflight is ready.", - "returncode": 0, - "stage": "measurement_routing", - "stderr": "", - "stdout": "Smoke rehearsal: smoke_rehearsal_waiting_for_preflight\nPreflight: local_capture_preflight_awaiting_entries\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_smoke_rehearsal.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_smoke_rehearsal.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_chain_of_custody.py" - ], - "artifact": "reports/zrc_nd_phase_a_chain_of_custody.md", - "elapsed_seconds": 0.026, - "id": "render_zrc_phase_a_chain_of_custody", - "purpose": "Render ZRC-ND Phase A sample labels and chain-of-custody blanks.", - "returncode": 0, - "stage": "zrc_phase_a", - "stderr": "", - "stdout": "ZRC-ND Phase A chain of custody: ready_for_phase_a_sample_handoff\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_sample_labels.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_chain_of_custody.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_chain_of_custody.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_chain_of_custody.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_delivery_package.py" - ], - "artifact": "reports/zrc_nd_phase_a_delivery_package_manifest.md", - "elapsed_seconds": 0.026, - "id": "render_zrc_phase_a_delivery_package", - "purpose": "Render a sendable ZRC-ND Phase A delivery package manifest.", - "returncode": 0, - "stage": "zrc_phase_a", - "stderr": "", - "stdout": "ZRC-ND Phase A delivery package: ready_to_send\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_delivery_package_manifest.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_delivery_package_manifest.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_vendor_outreach.py" - ], - "artifact": "reports/zrc_nd_phase_a_vendor_outreach_brief.md", - "elapsed_seconds": 0.024, - "id": "render_zrc_phase_a_vendor_outreach", - "purpose": "Render vendor/cooperator screening for real ZRC-ND Phase A measurement execution.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A vendor outreach: ready_for_vendor_screening\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_vendor_outreach.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_vendor_outreach_brief.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_rfq_packet.py" - ], - "artifact": "reports/zrc_nd_phase_a_rfq_packet.md", - "elapsed_seconds": 0.024, - "id": "render_zrc_phase_a_rfq_packet", - "purpose": "Render per-vendor ZRC-ND Phase A RFQ text and scoring rubric.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A RFQ packet: ready_to_send_rfq\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_packet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_packet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_rfq_outbox.py" - ], - "artifact": "reports/zrc_nd_phase_a_rfq_outbox.md", - "elapsed_seconds": 0.037, - "id": "render_zrc_phase_a_rfq_outbox", - "purpose": "Render vendor-specific ZRC-ND Phase A RFQ email files and zip bundles.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A RFQ outbox: ready_to_send_outbox\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_outbox_manifest.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_outbox.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_quote_tracker.py" - ], - "artifact": "reports/zrc_nd_phase_a_quote_tracker.md", - "elapsed_seconds": 0.024, - "id": "render_zrc_phase_a_quote_tracker", - "purpose": "Render a tracker for ZRC-ND Phase A RFQ replies and execution selection.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A quote tracker: pending_outreach\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_quote_tracker.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_quote_tracker.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_quote_tracker.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_vendor_contact_plan.py" - ], - "artifact": "reports/zrc_nd_phase_a_vendor_contact_plan.md", - "elapsed_seconds": 0.024, - "id": "render_zrc_phase_a_vendor_contact_plan", - "purpose": "Render official contact channels for ZRC-ND Phase A RFQ bundles.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A vendor contact plan: contact_plan_ready\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_vendor_contact_plan.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_vendor_contact_plan.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_vendor_contact_plan.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_rfq_dispatch_manifest.py" - ], - "artifact": "reports/zrc_nd_phase_a_rfq_dispatch_manifest.md", - "elapsed_seconds": 0.028, - "id": "render_zrc_phase_a_rfq_dispatch_manifest", - "purpose": "Bind each ZRC-ND Phase A RFQ text file to the exact bundle, contact path, and confirmation-save path before manual dispatch.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A RFQ dispatch manifest: zrc_phase_a_rfq_dispatch_manifest_ready\nReady rows: 4 / 4\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_dispatch_manifest.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_dispatch_manifest.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/intake_limina_rfq_send_confirmations.py", - "--profile", - "zrc_phase_a" - ], - "artifact": "reports/zrc_nd_phase_a_rfq_send_confirmation_intake.md", - "elapsed_seconds": 0.042, - "id": "intake_zrc_phase_a_rfq_send_confirmations", - "purpose": "Scan saved ZRC-ND Phase A send confirmations and conservatively register source-backed outreach.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A RFQ send confirmation intake: zrc_nd_phase_a_rfq_send_confirmation_intake_waiting_for_confirmation_files\nFiles scanned: 0\nApplied rows: 0\nNeeds review: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_confirmation_intake.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_confirmation_intake.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_send_confirmation_intake.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.py" - ], - "artifact": "reports/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.md", - "elapsed_seconds": 0.028, - "id": "render_zrc_phase_a_rfq_send_confirmation_entry_sheet", - "purpose": "Render guarded manual-entry rows for non-EML ZRC-ND Phase A send confirmations such as web-form screenshots or PDFs.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A RFQ send confirmation entry sheet: zrc_phase_a_rfq_send_confirmation_entry_sheet_waiting_for_confirmation_files\nReady to apply: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/apply_zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.py" - ], - "artifact": "reports/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.md", - "elapsed_seconds": 0.026, - "id": "apply_zrc_phase_a_rfq_send_confirmation_entry_sheet", - "purpose": "Apply reviewed non-EML ZRC-ND Phase A send confirmations into the RFQ send log without treating outreach as evidence.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A RFQ send confirmation entry apply: zrc_phase_a_rfq_send_confirmation_entry_apply_no_apply_rows\nApplied: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/apply_limina_rfq_send_log.py", - "--profile", - "zrc_phase_a" - ], - "artifact": "reports/zrc_nd_phase_a_rfq_send_log.md", - "elapsed_seconds": 0.033, - "id": "apply_zrc_phase_a_rfq_send_log", - "purpose": "Render/apply verified ZRC-ND Phase A RFQ send confirmations into the quote tracker without treating outreach as evidence.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A RFQ send log: zrc_nd_phase_a_rfq_send_log_waiting_for_sent_entries\nRows: 4\nSent rows: 0\nApplied tracker contact dates: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_log.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_log.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_send_log.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/intake_limina_rfq_replies.py", - "--profile", - "zrc_phase_a" - ], - "artifact": "reports/zrc_nd_phase_a_rfq_reply_intake.md", - "elapsed_seconds": 0.043, - "id": "intake_zrc_phase_a_rfq_replies", - "purpose": "Scan saved ZRC-ND Phase A vendor replies and conservatively register source-backed replies for review.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A RFQ reply intake: zrc_nd_phase_a_rfq_reply_intake_waiting_for_reply_files\nFiles scanned: 0\nApplied rows: 0\nNeeds manual review: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_reply_intake.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_reply_intake.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_reply_intake.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/apply_limina_rfq_reply_log.py", - "--profile", - "zrc_phase_a" - ], - "artifact": "reports/zrc_nd_phase_a_rfq_reply_log.md", - "elapsed_seconds": 0.034, - "id": "apply_zrc_phase_a_rfq_reply_log", - "purpose": "Render/apply source-backed ZRC-ND Phase A RFQ replies into the quote tracker without treating replies as measurement evidence.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A RFQ reply log: zrc_nd_phase_a_rfq_reply_log_waiting_for_reply_files\nRows: 4\nReceived rows: 0\nApplied tracker field updates: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_reply_log.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_reply_log.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_reply_log.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_rfq_dispatch_archive.py" - ], - "artifact": "reports/zrc_nd_phase_a_rfq_dispatch_archive_manifest.md", - "elapsed_seconds": 0.034, - "id": "render_zrc_phase_a_rfq_dispatch_archive", - "purpose": "Render a single archive containing ZRC-ND Phase A RFQ text files, bundles, manifests, and confirmation templates for manual dispatch.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A RFQ dispatch archive: zrc_phase_a_rfq_dispatch_archive_ready\nArchive SHA-256: 2a2ca661089a7d5ae0a91205968a383b98d7fbd90cea45c46fd4f6c8eab917d7\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_dispatch_archive_manifest.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_dispatch_archive_manifest.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_rfq_reply_action_pack.py" - ], - "artifact": "reports/zrc_nd_phase_a_rfq_reply_action_pack.md", - "elapsed_seconds": 0.026, - "id": "render_zrc_phase_a_rfq_reply_action_pack", - "purpose": "Render source-backed reply intake/review checklist for ZRC-ND Phase A RFQ responses.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A RFQ reply action pack: zrc_phase_a_rfq_reply_action_pack_waiting_for_send\nAction rows: 4\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_reply_action_queue.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_reply_action_pack.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_reply_action_pack.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_rfq_send_cockpit.py" - ], - "artifact": "reports/zrc_nd_phase_a_rfq_send_cockpit.md", - "elapsed_seconds": 0.03, - "id": "render_zrc_phase_a_rfq_send_cockpit", - "purpose": "Render a single local cockpit for manual ZRC-ND Phase A RFQ dispatch and source-file follow-through.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A RFQ send cockpit: zrc_phase_a_rfq_send_cockpit_ready_for_manual_send\nReady to use: 4 / 4\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_rfq_send_cockpit.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_send_cockpit.md\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_rfq_send_cockpit.html" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_first_wave_rfq_dispatch_cockpit.py" - ], - "artifact": "reports/limina_first_wave_rfq_dispatch_cockpit.md", - "elapsed_seconds": 0.029, - "id": "render_first_wave_rfq_dispatch_cockpit", - "purpose": "Render one combined H-A and ZRC first-wave RFQ dispatch cockpit for the real-measurement unlock step.", - "returncode": 0, - "stage": "sourcing", - "stderr": "", - "stdout": "First-wave RFQ dispatch cockpit: first_wave_rfq_dispatch_cockpit_ready_for_manual_send\nReady to send: 8 / 8\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_first_wave_rfq_dispatch_cockpit.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_first_wave_rfq_dispatch_cockpit.md\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_first_wave_rfq_dispatch_cockpit.html" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/process_limina_first_wave_post_dispatch.py" - ], - "artifact": "reports/limina_first_wave_post_dispatch_processing.md", - "elapsed_seconds": 0.712, - "id": "process_first_wave_post_dispatch", - "purpose": "Process saved first-wave RFQ confirmations and replies across H-A and ZRC without treating sourcing artifacts as evidence.", - "returncode": 0, - "stage": "sourcing", - "stderr": "", - "stdout": "First-wave post-dispatch processing: first_wave_post_dispatch_waiting_for_real_send_confirmations\nFailed commands: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_first_wave_post_dispatch_processing.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_first_wave_post_dispatch_processing.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/evaluate_zrc_nd_phase_a_quote_replies.py" - ], - "artifact": "reports/zrc_nd_phase_a_quote_selection.md", - "elapsed_seconds": 0.025, - "id": "evaluate_zrc_phase_a_quote_replies", - "purpose": "Score any ZRC-ND Phase A RFQ replies without treating quotes as evidence.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A quote selection: pending_outreach\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_quote_selection.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_quote_selection.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/apply_limina_execution_authorization_log.py", - "--profile", - "zrc_phase_a" - ], - "artifact": "reports/zrc_nd_phase_a_execution_authorization_log.md", - "elapsed_seconds": 0.033, - "id": "apply_zrc_phase_a_execution_authorization_log", - "purpose": "Render/validate human ZRC-ND Phase A execution authorization records without treating authorization as evidence.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A execution authorization log: zrc_nd_phase_a_execution_authorization_waiting_for_selected_provider\nRows: 0\nValid authorizations: 0\nErrors: 0\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_execution_authorization_log.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_execution_authorization_log.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_execution_authorization_log.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/audit_limina_execution_release.py", - "--profile", - "zrc_phase_a" - ], - "artifact": "reports/zrc_nd_phase_a_execution_release_audit.md", - "elapsed_seconds": 0.031, - "id": "audit_zrc_phase_a_execution_release", - "purpose": "Block ZRC-ND Phase A sample or outsourced execution release until a source-backed selected provider is verified.", - "returncode": 0, - "stage": "zrc_phase_a_sourcing", - "stderr": "", - "stdout": "ZRC-ND Phase A execution release audit: zrc_nd_phase_a_execution_release_blocked_no_source_backed_provider_selection\nReady for authorization: false\nReleased for execution: false\nBlockers: 1\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_execution_release_audit.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_execution_release_audit.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_zrc_nd_phase_a_vendor_return_intake.py" - ], - "artifact": "reports/zrc_nd_phase_a_vendor_return_intake.md", - "elapsed_seconds": 0.027, - "id": "render_zrc_phase_a_vendor_return_intake", - "purpose": "Check the ZRC-ND Phase A vendor-return inbox before merge/QC.", - "returncode": 0, - "stage": "zrc_phase_a_intake", - "stderr": "", - "stdout": "ZRC-ND Phase A vendor return intake: awaiting_vendor_return_files\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_vendor_return_checklist.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_vendor_return_intake.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_phase_a_vendor_return_intake.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/merge_zrc_nd_measurements.py" - ], - "artifact": "reports/zrc_nd_measurement_merge.md", - "elapsed_seconds": 0.023, - "id": "merge_zrc_phase_a_measurements", - "purpose": "Merge returned ZRC-ND Phase A measurement rows into the active validation CSV.", - "returncode": 0, - "stage": "zrc_phase_a_intake", - "stderr": "", - "stdout": "Merged measurements: inserted=0 updated=0 skipped=0\nStatus: awaiting_measurement_file\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_measurement_merge.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_validation_runs_active.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_measurement_merge.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/check_zrc_nd_run_completeness.py" - ], - "artifact": "reports/zrc_nd_run_completeness.md", - "elapsed_seconds": 0.024, - "id": "check_zrc_run_completeness", - "purpose": "Check whether active ZRC-ND non-cell rows are complete enough for gate interpretation.", - "returncode": 0, - "stage": "zrc_phase_a_intake", - "stderr": "", - "stdout": "Completeness: no_measured_rows\nMeasured/planned: 0 / 132\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_run_completeness.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_run_completeness.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/evaluate_zrc_nd_validation_runs.py" - ], - "artifact": "reports/zrc_nd_validation_results.md", - "elapsed_seconds": 0.029, - "id": "evaluate_zrc_validation_runs", - "purpose": "Evaluate the active ZRC-ND non-cell run table after any returned rows are merged.", - "returncode": 0, - "stage": "zrc_phase_a_gate", - "stderr": "", - "stdout": "Evaluated 0 row(s): no_data\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_validation_results.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_validation_results.md\nTemplate ready at /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_validation_runs_active.csv" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/interpret_zrc_nd_sentinel.py" - ], - "artifact": "reports/zrc_nd_sentinel_interpretation.md", - "elapsed_seconds": 0.024, - "id": "refresh_zrc_phase_a_sentinel_after_merge", - "purpose": "Refresh the Phase A sentinel interpretation from the active ZRC-ND run table.", - "returncode": 0, - "stage": "zrc_phase_a_gate", - "stderr": "", - "stdout": "Sentinel: no_sentinel_rows\nNext action: Generate and fill the Phase A sentinel packet.\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_sentinel_interpretation.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_sentinel_interpretation.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/suggest_zrc_nd_next_measurements.py" - ], - "artifact": "reports/zrc_nd_next_measurements.md", - "elapsed_seconds": 0.027, - "id": "refresh_zrc_next_measurements_after_merge", - "purpose": "Refresh adaptive ZRC-ND measurement recommendations from the active run table and latest sentinel.", - "returncode": 0, - "stage": "zrc_phase_a_next_actions", - "stderr": "", - "stdout": "Recommendation: needs_phase_a_sentinel\nRecommended rows: 8\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_next_measurements.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_next_measurements.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_next_measurements.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/audit_zrc_nd_readiness.py" - ], - "artifact": "reports/zrc_nd_readiness_audit.md", - "elapsed_seconds": 0.024, - "id": "audit_zrc_readiness", - "purpose": "Refresh the ZRC-ND readiness audit while preserving the no-measured-data blocker.", - "returncode": 0, - "stage": "zrc_claim_guard", - "stderr": "", - "stdout": "Readiness: not_suitable_yet_no_measured_data\nSuitable: False\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_readiness_audit.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/zrc_nd_readiness_audit.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/select_limina_next_technology.py" - ], - "artifact": "reports/limina_technology_portfolio.md", - "elapsed_seconds": 0.024, - "id": "select_portfolio_branch", - "purpose": "Refresh the portfolio branch selector across NHI-PEDOT and ZRC-ND.", - "returncode": 0, - "stage": "portfolio", - "stderr": "", - "stdout": "Portfolio: no_suitable_material_yet\nPrimary next branch: limina_nhi_pedot_laminin_v0_1\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_technology_portfolio.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_technology_portfolio.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_second_wave_candidate_queue.py" - ], - "artifact": "reports/limina_second_wave_candidate_queue.md", - "elapsed_seconds": 0.026, - "id": "render_second_wave_candidate_queue", - "purpose": "Render the highest-value second-wave candidate scope-lock queue without bypassing first-wave evidence gates.", - "returncode": 0, - "stage": "portfolio", - "stderr": "", - "stdout": "Second-wave candidate queue: second_wave_candidate_queue_ready_while_first_wave_waits\nRows: 6\nReady for scope lock: 2\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_second_wave_candidate_queue.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_second_wave_candidate_queue.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_second_wave_candidate_queue.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/render_limina_second_wave_scope_lock_pack.py" - ], - "artifact": "reports/limina_second_wave_scope_lock_pack.md", - "elapsed_seconds": 0.024, - "id": "render_second_wave_scope_lock_pack", - "purpose": "Turn ready second-wave candidates into material-identity and future source-class scope-lock tasks.", - "returncode": 0, - "stage": "portfolio", - "stderr": "", - "stdout": "Second-wave scope-lock pack: second_wave_scope_lock_pack_ready\nReady candidates: 2\nTasks: 8\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_second_wave_scope_lock_pack.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_second_wave_scope_lock_tasks.csv\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_second_wave_scope_lock_pack.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/audit_limina_suitability_claim.py" - ], - "artifact": "reports/limina_suitability_claim_audit.md", - "elapsed_seconds": 0.027, - "id": "audit_claim_readiness", - "purpose": "Check whether any branch can support a first material suitability claim.", - "returncode": 0, - "stage": "claim_guard", - "stderr": "", - "stdout": "Claim ready: False\nStatus: no_suitable_material_claim_ready\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_suitability_claim_audit.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_suitability_claim_audit.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/audit_limina_portfolio_bypass_paths.py" - ], - "artifact": "reports/limina_portfolio_bypass_audit.md", - "elapsed_seconds": 0.024, - "id": "audit_portfolio_bypass_paths", - "purpose": "Check whether any ranked prospect can bypass the active H-A gate and still satisfy the claim audit boundary.", - "returncode": 0, - "stage": "claim_guard", - "stderr": "", - "stdout": "Portfolio bypass status: no_h_a_bypass_claim_ready\nNon-H-A claim-ready rows: 0\nTop non-H-A candidate: limina_all_dry_zwitterionic_external_v0_1\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_portfolio_bypass_audit.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_portfolio_bypass_audit.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/regress_limina_portfolio_claim_boundary.py" - ], - "artifact": "reports/limina_portfolio_claim_boundary_regression.md", - "elapsed_seconds": 0.053, - "id": "regress_portfolio_claim_boundary", - "purpose": "Verify the portfolio selector cannot declare suitability before the final claim audit.", - "returncode": 0, - "stage": "claim_guard", - "stderr": "", - "stdout": "LIMINA portfolio claim-boundary regression: pass\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_portfolio_claim_boundary_regression.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_portfolio_claim_boundary_regression.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/regress_limina_source_file_claim_guard.py" - ], - "artifact": "reports/limina_source_file_claim_guard_regression.md", - "elapsed_seconds": 0.027, - "id": "regress_source_file_claim_guard", - "purpose": "Verify measured-looking rows without valid source_file provenance cannot become claimable.", - "returncode": 0, - "stage": "claim_guard", - "stderr": "", - "stdout": "LIMINA source-file claim guard regression: pass\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_source_file_claim_guard_regression.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_source_file_claim_guard_regression.md" - }, - { - "argv": [ - "/opt/miniconda3/bin/python3", - "scripts/run_limina_discovery_cycle.py" - ], - "artifact": "reports/limina_discovery_cycle_state.md", - "elapsed_seconds": 0.056, - "id": "summarize_cycle_state", - "purpose": "Write the final next-action report for this iteration.", - "returncode": 0, - "stage": "cycle_state", - "stderr": "", - "stdout": "Mission state: awaiting_real_h_a_measurements\nClaim ready: False\nActive candidate: limina_alg_lam_pedot_lowdose_v0_2\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_discovery_cycle_state.json\nWrote /Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/reports/limina_discovery_cycle_state.md" - } - ], - "root": "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot", - "run_timestamp_utc": "2026-05-24T07:25:44+00:00", - "summary": { - "claim_ready": false, - "claim_status": "no_suitable_material_claim_ready", - "failed_command_ids": [], - "first_wave_post_dispatch_confirmations": 0, - "first_wave_post_dispatch_failed_commands": 0, - "first_wave_post_dispatch_replies": 0, - "first_wave_post_dispatch_status": "first_wave_post_dispatch_waiting_for_real_send_confirmations", - "first_wave_rfq_dispatch_cockpit_confirmations": 0, - "first_wave_rfq_dispatch_cockpit_html": "reports/limina_first_wave_rfq_dispatch_cockpit.html", - "first_wave_rfq_dispatch_cockpit_missing_bundles": 0, - "first_wave_rfq_dispatch_cockpit_missing_messages": 0, - "first_wave_rfq_dispatch_cockpit_ready_rows": 8, - "first_wave_rfq_dispatch_cockpit_replies": 0, - "first_wave_rfq_dispatch_cockpit_rows": 8, - "first_wave_rfq_dispatch_cockpit_status": "first_wave_rfq_dispatch_cockpit_ready_for_manual_send", - "forward_gate_rows": 28, - "forward_gate_status": "preregistered_waiting_for_h_a", - "h_a_bench_tasks": 12, - "h_a_blank_raw_entries_to_fill": 228, - "h_a_bundle_entry_apply_bundles": 0, - "h_a_bundle_entry_apply_errors": 0, - "h_a_bundle_entry_apply_source_rows": 0, - "h_a_bundle_entry_apply_status": "h_a_bundle_entry_apply_no_apply_rows", - "h_a_bundle_entry_sheet_existing_files": 0, - "h_a_bundle_entry_sheet_filled_rows": 0, - "h_a_bundle_entry_sheet_ready_rows": 0, - "h_a_bundle_entry_sheet_rows": 96, - "h_a_bundle_entry_sheet_status": "h_a_bundle_entry_sheet_ready", - "h_a_chain_of_custody_rows": 36, - "h_a_chain_of_custody_status": "ready_for_sample_handoff", - "h_a_delivery_package_missing_files": 0, - "h_a_delivery_package_status": "ready_to_send", - "h_a_execution_authorization_errors": 0, - "h_a_execution_authorization_rows": 0, - "h_a_execution_authorization_status": "nhi_pedot_h_a_execution_authorization_waiting_for_selected_provider", - "h_a_execution_authorization_valid_rows": 0, - "h_a_execution_release_authorization_blockers": 0, - "h_a_execution_release_blockers": 1, - "h_a_execution_release_ready": false, - "h_a_execution_release_released": false, - "h_a_execution_release_status": "nhi_pedot_h_a_execution_release_blocked_no_source_backed_provider_selection", - "h_a_measured_rows": 0, - "h_a_merge_applied_values": 0, - "h_a_merge_unresolved_targets": 0, - "h_a_pending_transfer_rows": 36, - "h_a_placeholder_rows": 12, - "h_a_qc_errors": 183, - "h_a_qc_status": "h_a_intake_not_ready", - "h_a_qc_warnings": 24, - "h_a_quote_selection_reply_count": 0, - "h_a_quote_selection_sent_count": 0, - "h_a_quote_selection_shortlist_count": 0, - "h_a_quote_selection_source_backed_reply_count": 0, - "h_a_quote_selection_status": "pending_outreach", - "h_a_quote_tracker_status": "pending_outreach", - "h_a_raw_csv_extraction_errors": 0, - "h_a_raw_csv_extraction_files": 0, - "h_a_raw_csv_extraction_rows": 0, - "h_a_raw_csv_extraction_status": "h_a_raw_csv_value_extraction_no_raw_csv", - "h_a_rfq_dispatch_archive_files": 22, - "h_a_rfq_dispatch_archive_hash_mismatches": 0, - "h_a_rfq_dispatch_archive_missing_files": 0, - "h_a_rfq_dispatch_archive_path": "data/nhi_pedot_h_a_rfq_dispatch_archive/nhi_pedot_h_a_rfq_dispatch_archive.zip", - "h_a_rfq_dispatch_archive_sha256": "b739036ff6d618bec4b57e1c028676338ef58599a11fb7a6822a6df9b725368b", - "h_a_rfq_dispatch_archive_status": "h_a_rfq_dispatch_archive_ready", - "h_a_rfq_dispatch_manifest_blocked_rows": 0, - "h_a_rfq_dispatch_manifest_bundle_match_rows": 4, - "h_a_rfq_dispatch_manifest_ready_rows": 4, - "h_a_rfq_dispatch_manifest_rows": 4, - "h_a_rfq_dispatch_manifest_status": "h_a_rfq_dispatch_manifest_ready", - "h_a_rfq_eml_drafts_missing_bundle_rows": 0, - "h_a_rfq_eml_drafts_missing_to_rows": 0, - "h_a_rfq_eml_drafts_ready_rows": 4, - "h_a_rfq_eml_drafts_rows": 4, - "h_a_rfq_eml_drafts_status": "h_a_rfq_eml_drafts_ready", - "h_a_rfq_eml_integrity_attachment_mismatch_rows": 0, - "h_a_rfq_eml_integrity_fail_rows": 0, - "h_a_rfq_eml_integrity_pass_rows": 4, - "h_a_rfq_eml_integrity_rows": 4, - "h_a_rfq_eml_integrity_status": "h_a_rfq_eml_integrity_ready", - "h_a_rfq_outbox_quote_count": 4, - "h_a_rfq_outbox_ready_count": 4, - "h_a_rfq_outbox_status": "ready_to_send_outbox", - "h_a_rfq_packet_status": "ready_to_send_rfq", - "h_a_rfq_reply_action_awaiting_reply": 0, - "h_a_rfq_reply_action_needs_source_file": 0, - "h_a_rfq_reply_action_pack_status": "h_a_rfq_reply_action_pack_waiting_for_send", - "h_a_rfq_reply_action_ready_to_apply": 0, - "h_a_rfq_reply_action_rows": 4, - "h_a_rfq_reply_action_waiting_for_send": 4, - "h_a_rfq_reply_intake_applied": 0, - "h_a_rfq_reply_intake_files": 0, - "h_a_rfq_reply_intake_needs_review": 0, - "h_a_rfq_reply_intake_needs_verified_send": 0, - "h_a_rfq_reply_intake_status": "nhi_pedot_h_a_rfq_reply_intake_waiting_for_reply_files", - "h_a_rfq_reply_log_applied_fields": 0, - "h_a_rfq_reply_log_errors": 0, - "h_a_rfq_reply_log_received_rows": 0, - "h_a_rfq_reply_log_rows": 4, - "h_a_rfq_reply_log_status": "nhi_pedot_h_a_rfq_reply_log_waiting_for_reply_files", - "h_a_rfq_reply_log_valid_rows": 0, - "h_a_rfq_send_action_needs_confirmation_rows": 0, - "h_a_rfq_send_action_pack_status": "h_a_rfq_send_action_pack_ready", - "h_a_rfq_send_action_ready_rows": 4, - "h_a_rfq_send_action_rows": 4, - "h_a_rfq_send_action_verified_rows": 0, - "h_a_rfq_send_cockpit_confirmations": 0, - "h_a_rfq_send_cockpit_html": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "h_a_rfq_send_cockpit_missing_bundle": 0, - "h_a_rfq_send_cockpit_missing_eml": 0, - "h_a_rfq_send_cockpit_ready_rows": 4, - "h_a_rfq_send_cockpit_replies": 0, - "h_a_rfq_send_cockpit_rows": 4, - "h_a_rfq_send_cockpit_status": "h_a_rfq_send_cockpit_ready_for_manual_send", - "h_a_rfq_send_confirmation_entry_apply_applied": 0, - "h_a_rfq_send_confirmation_entry_apply_apply_rows": 0, - "h_a_rfq_send_confirmation_entry_apply_blocked": 0, - "h_a_rfq_send_confirmation_entry_apply_status": "h_a_rfq_send_confirmation_entry_apply_no_apply_rows", - "h_a_rfq_send_confirmation_entry_sheet_blocked": 0, - "h_a_rfq_send_confirmation_entry_sheet_ready": 0, - "h_a_rfq_send_confirmation_entry_sheet_rows": 4, - "h_a_rfq_send_confirmation_entry_sheet_source_files": 0, - "h_a_rfq_send_confirmation_entry_sheet_status": "h_a_rfq_send_confirmation_entry_sheet_waiting_for_confirmation_files", - "h_a_rfq_send_confirmation_intake_applied": 0, - "h_a_rfq_send_confirmation_intake_bundle_matched": 0, - "h_a_rfq_send_confirmation_intake_files": 0, - "h_a_rfq_send_confirmation_intake_needs_review": 0, - "h_a_rfq_send_confirmation_intake_status": "nhi_pedot_h_a_rfq_send_confirmation_intake_waiting_for_confirmation_files", - "h_a_rfq_send_log_applied_dates": 0, - "h_a_rfq_send_log_errors": 0, - "h_a_rfq_send_log_rows": 4, - "h_a_rfq_send_log_sent_rows": 0, - "h_a_rfq_send_log_status": "nhi_pedot_h_a_rfq_send_log_waiting_for_sent_entries", - "h_a_rfq_send_log_valid_sent_rows": 0, - "h_a_sample_label_count": 36, - "h_a_sample_submission_shipping_status": "do_not_ship_until_vendor_confirms_quote_sample_acceptance_sds_and_custody", - "h_a_sample_submission_status": "sample_submission_precheck_ready", - "h_a_service_request_raw_entries": 228, - "h_a_service_request_status": "ready_to_request_real_measurements", - "h_a_source_drop_dirs": 48, - "h_a_source_drop_existing_files": 0, - "h_a_source_drop_missing_files": 228, - "h_a_source_drop_planned_files": 228, - "h_a_source_drop_status": "nhi_pedot_h_a_source_drop_plan_ready", - "h_a_source_template_pack_status": "nhi_pedot_h_a_source_file_template_pack_ready", - "h_a_source_template_pack_target_files": 228, - "h_a_source_template_pack_templates": 8, - "h_a_source_unlock_pack_bundles": 96, - "h_a_source_unlock_pack_existing_files": 0, - "h_a_source_unlock_pack_missing_files": 96, - "h_a_source_unlock_pack_source_rows": 228, - "h_a_source_unlock_pack_status": "h_a_source_unlock_pack_ready", - "h_a_source_value_import_errors": 0, - "h_a_source_value_import_files": 2, - "h_a_source_value_import_imported_rows": 0, - "h_a_source_value_import_rows": 228, - "h_a_source_value_import_status": "h_a_source_value_import_no_importable_rows", - "h_a_source_values_sheet_filled_rows": 0, - "h_a_source_values_sheet_import_ready_rows": 0, - "h_a_source_values_sheet_rows": 228, - "h_a_source_values_sheet_source_file_exists_rows": 0, - "h_a_source_values_sheet_status": "h_a_source_values_sheet_ready", - "h_a_split_scope_pair_count": 7, - "h_a_split_scope_preferred_count": 5, - "h_a_split_scope_status": "split_scope_plan_ready", - "h_a_status": "h_a_invalid_provenance", - "h_a_synthetic_rows": 0, - "h_a_total_rows": 12, - "h_a_vendor_bundle_entry_apply_bundles": 0, - "h_a_vendor_bundle_entry_apply_errors": 0, - "h_a_vendor_bundle_entry_apply_sheet_exists": true, - "h_a_vendor_bundle_entry_apply_source_rows": 0, - "h_a_vendor_bundle_entry_apply_status": "h_a_vendor_bundle_entry_return_no_apply_rows", - "h_a_vendor_bundle_entry_sheet_blocked_rows": 0, - "h_a_vendor_bundle_entry_sheet_existing_files": 0, - "h_a_vendor_bundle_entry_sheet_ready_rows": 0, - "h_a_vendor_bundle_entry_sheet_rows": 96, - "h_a_vendor_bundle_entry_sheet_status": "h_a_vendor_bundle_entry_sheet_ready", - "h_a_vendor_contact_plan_status": "contact_plan_ready", - "h_a_vendor_contact_ready_count": 4, - "h_a_vendor_contact_row_count": 8, - "h_a_vendor_contact_source_audit_fail_rows": 0, - "h_a_vendor_contact_source_audit_pass_rows": 4, - "h_a_vendor_contact_source_audit_rows": 4, - "h_a_vendor_contact_source_audit_stale_rows": 0, - "h_a_vendor_contact_source_audit_status": "h_a_vendor_contact_source_audit_ready", - "h_a_vendor_contact_standby_count": 4, - "h_a_vendor_first_wave_count": 4, - "h_a_vendor_outreach_status": "ready_for_vendor_screening", - "h_a_vendor_return_bundle_entry_apply_rows": 0, - "h_a_vendor_return_bundle_entry_rows": 96, - "h_a_vendor_return_export_files": 0, - "h_a_vendor_return_raw_value_rows": 0, - "h_a_vendor_return_status": "awaiting_vendor_return_files", - "hybrid_measurement_inhouse_rows": 184, - "hybrid_measurement_outsource_rows": 40, - "hybrid_measurement_plan_status": "hybrid_measurement_plan_ready", - "hybrid_measurement_provenance_rows": 126, - "hybrid_measurement_total_rows": 350, - "local_capture_local_tasks": 184, - "local_capture_outsource_tasks": 40, - "local_capture_pack_status": "local_capture_pack_ready", - "local_capture_preflight_errors": 0, - "local_capture_preflight_filled_tasks": 0, - "local_capture_preflight_pending_tasks": 350, - "local_capture_preflight_ready": false, - "local_capture_preflight_status": "local_capture_preflight_awaiting_entries", - "local_capture_preflight_warnings": 0, - "local_capture_provenance_tasks": 126, - "local_capture_task_count": 350, - "mission_reason": "Replace fixture, pending, and record_actual/record_lot placeholders with real measured provenance before interpreting H-A.", - "mission_state": "awaiting_real_h_a_measurements", - "next_action_boundary": "No suitability claim is allowed until real, non-placeholder, non-synthetic measured rows pass the required gates.", - "nhi_coupon_result_rows": 0, - "nhi_coupon_result_status": "no_data", - "nhi_forward_raw_csv_extraction_errors": 0, - "nhi_forward_raw_csv_extraction_files": 0, - "nhi_forward_raw_csv_extraction_rows": 0, - "nhi_forward_raw_csv_extraction_status": "nhi_pedot_forward_raw_csv_value_extraction_no_raw_csv", - "nhi_forward_source_drop_dirs": 28, - "nhi_forward_source_drop_existing_files": 0, - "nhi_forward_source_drop_missing_files": 592, - "nhi_forward_source_drop_planned_files": 592, - "nhi_forward_source_drop_status": "nhi_pedot_forward_source_drop_plan_ready", - "nhi_forward_source_import_errors": 0, - "nhi_forward_source_import_imported_rows": 0, - "nhi_forward_source_import_rows": 592, - "nhi_forward_source_import_status": "nhi_pedot_forward_source_value_import_no_importable_rows", - "nhi_forward_source_template_pack_status": "nhi_pedot_forward_source_file_template_pack_ready", - "nhi_forward_source_template_pack_target_files": 592, - "nhi_forward_source_template_pack_templates": 6, - "nhi_forward_source_values_filled_rows": 0, - "nhi_forward_source_values_import_ready_rows": 0, - "nhi_forward_source_values_rows": 592, - "nhi_forward_source_values_status": "nhi_pedot_forward_source_values_sheet_ready", - "nhi_long_raw_csv_extraction_errors": 0, - "nhi_long_raw_csv_extraction_files": 0, - "nhi_long_raw_csv_extraction_rows": 0, - "nhi_long_raw_csv_extraction_status": "nhi_pedot_long_raw_csv_value_extraction_no_raw_csv", - "nhi_long_result_rows": 0, - "nhi_long_result_status": "no_data", - "nhi_long_source_drop_dirs": 156, - "nhi_long_source_drop_existing_files": 0, - "nhi_long_source_drop_missing_files": 4836, - "nhi_long_source_drop_planned_files": 4836, - "nhi_long_source_drop_status": "nhi_pedot_long_source_drop_plan_ready", - "nhi_long_source_import_errors": 0, - "nhi_long_source_import_imported_rows": 0, - "nhi_long_source_import_rows": 4836, - "nhi_long_source_import_status": "nhi_pedot_long_source_value_import_no_importable_rows", - "nhi_long_source_template_pack_status": "nhi_pedot_long_source_file_template_pack_ready", - "nhi_long_source_template_pack_target_files": 4836, - "nhi_long_source_template_pack_templates": 5, - "nhi_long_source_values_filled_rows": 0, - "nhi_long_source_values_import_ready_rows": 0, - "nhi_long_source_values_rows": 4836, - "nhi_long_source_values_status": "nhi_pedot_long_source_values_sheet_ready", - "portfolio_bypass_non_h_a_claim_ready_rows": 0, - "portfolio_bypass_recommended_action": "run_zrc_phase_a_real_measurements_before_any_non_h_a_claim", - "portfolio_bypass_status": "no_h_a_bypass_claim_ready", - "portfolio_bypass_top_non_h_a_candidate": "limina_all_dry_zwitterionic_external_v0_1", - "second_wave_candidate_queue_hold_rows": 2, - "second_wave_candidate_queue_ready_scope_lock_rows": 2, - "second_wave_candidate_queue_rows": 6, - "second_wave_candidate_queue_status": "second_wave_candidate_queue_ready_while_first_wave_waits", - "second_wave_candidate_queue_watch_rows": 2, - "second_wave_scope_lock_pack_claim_evidence_created": false, - "second_wave_scope_lock_pack_ready_candidates": 2, - "second_wave_scope_lock_pack_source_classes": 5, - "second_wave_scope_lock_pack_status": "second_wave_scope_lock_pack_ready", - "second_wave_scope_lock_pack_tasks": 8, - "smoke_capture_local_or_record_tasks": 152, - "smoke_capture_outsource_tasks": 20, - "smoke_capture_preflight_errors": 0, - "smoke_capture_preflight_filled_tasks": 0, - "smoke_capture_preflight_pending_tasks": 172, - "smoke_capture_preflight_ready": false, - "smoke_capture_preflight_status": "local_capture_preflight_awaiting_entries", - "smoke_capture_preflight_warnings": 0, - "smoke_capture_task_count": 172, - "smoke_capture_tranche_status": "smoke_capture_tranche_ready", - "smoke_entry_apply_applied_values": 0, - "smoke_entry_apply_errors": 0, - "smoke_entry_apply_status": "smoke_entry_apply_no_filled_rows", - "smoke_entry_sheet_filled_value_rows": 0, - "smoke_entry_sheet_ready_rows": 0, - "smoke_entry_sheet_rows": 172, - "smoke_entry_sheet_status": "smoke_entry_sheet_ready", - "smoke_execution_queue_awaiting_rows": 172, - "smoke_execution_queue_h_a_rows": 114, - "smoke_execution_queue_rows": 172, - "smoke_execution_queue_source_ready_rows": 0, - "smoke_execution_queue_status": "smoke_execution_queue_ready", - "smoke_execution_queue_zrc_rows": 58, - "smoke_raw_csv_extraction_errors": 0, - "smoke_raw_csv_extraction_files": 0, - "smoke_raw_csv_extraction_rows": 0, - "smoke_raw_csv_extraction_status": "smoke_raw_csv_value_extraction_no_raw_csv", - "smoke_rehearsal_errors": 0, - "smoke_rehearsal_filled_tasks": 0, - "smoke_rehearsal_h_a_qc_status": "-", - "smoke_rehearsal_pending_tasks": 172, - "smoke_rehearsal_preflight_ready": false, - "smoke_rehearsal_preflight_status": "local_capture_preflight_awaiting_entries", - "smoke_rehearsal_status": "smoke_rehearsal_waiting_for_preflight", - "smoke_rehearsal_warnings": 0, - "smoke_rehearsal_zrc_validation_status": "-", - "smoke_source_drop_dirs": 10, - "smoke_source_drop_existing_files": 0, - "smoke_source_drop_missing_files": 172, - "smoke_source_drop_planned_files": 172, - "smoke_source_drop_status": "smoke_source_drop_plan_ready", - "smoke_source_value_import_errors": 0, - "smoke_source_value_import_files": 3, - "smoke_source_value_import_imported_rows": 0, - "smoke_source_value_import_rows": 182, - "smoke_source_value_import_status": "smoke_source_value_import_no_importable_rows", - "smoke_source_values_sheet_filled_rows": 0, - "smoke_source_values_sheet_import_ready_rows": 0, - "smoke_source_values_sheet_rows": 172, - "smoke_source_values_sheet_starter_rows": 19, - "smoke_source_values_sheet_status": "smoke_source_values_sheet_ready", - "smoke_starter_batch_blocked_rows": 19, - "smoke_starter_batch_readiness_status": "smoke_starter_batch_awaiting_values", - "smoke_starter_batch_ready_rows": 0, - "smoke_starter_batch_rows": 19, - "smoke_starter_execution_pack_dirs": 1, - "smoke_starter_execution_pack_existing_files": 0, - "smoke_starter_execution_pack_rows": 19, - "smoke_starter_execution_pack_status": "smoke_starter_execution_pack_ready", - "smoke_starter_template_pack_rows": 19, - "smoke_starter_template_pack_status": "smoke_starter_raw_file_template_pack_ready", - "smoke_starter_template_pack_templates": 8, - "smoke_unstructured_intake_invalid": 0, - "smoke_unstructured_intake_missing": 10, - "smoke_unstructured_intake_ready": 0, - "smoke_unstructured_intake_rows": 10, - "smoke_unstructured_intake_status": "smoke_unstructured_source_intake_waiting_for_files", - "smoke_unstructured_review_values_filled_rows": 0, - "smoke_unstructured_review_values_import_ready_rows": 0, - "smoke_unstructured_review_values_invalid_sources": 0, - "smoke_unstructured_review_values_ready_sources": 0, - "smoke_unstructured_review_values_rows": 10, - "smoke_unstructured_review_values_status": "smoke_unstructured_review_values_waiting_for_source_files", - "source_file_allowed_root_count": 12, - "source_file_expected_class_count": 12, - "source_file_inventory_capture_reference_count": 0, - "source_file_inventory_file_count": 0, - "source_file_inventory_missing_reference_count": 0, - "source_file_inventory_reference_count": 0, - "source_file_inventory_source_value_reference_count": 0, - "source_file_inventory_status": "source_file_inventory_empty", - "source_file_inventory_unreferenced_file_count": 0, - "source_file_manifest_status": "source_file_manifest_ready", - "status": "completed", - "top_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "top_priority": "promote_now", - "zrc_measurement_merge_inserted": 0, - "zrc_measurement_merge_output_rows": 0, - "zrc_measurement_merge_status": "awaiting_measurement_file", - "zrc_measurement_merge_updated": 0, - "zrc_next_recommended_rows": 8, - "zrc_next_status": "needs_phase_a_sentinel", - "zrc_phase_a_chain_rows": 16, - "zrc_phase_a_chain_status": "ready_for_phase_a_sample_handoff", - "zrc_phase_a_contact_plan_status": "contact_plan_ready", - "zrc_phase_a_contact_ready_count": 4, - "zrc_phase_a_contact_row_count": 8, - "zrc_phase_a_contact_standby_count": 4, - "zrc_phase_a_delivery_missing_files": 0, - "zrc_phase_a_delivery_status": "ready_to_send", - "zrc_phase_a_execution_authorization_errors": 0, - "zrc_phase_a_execution_authorization_rows": 0, - "zrc_phase_a_execution_authorization_status": "zrc_nd_phase_a_execution_authorization_waiting_for_selected_provider", - "zrc_phase_a_execution_authorization_valid_rows": 0, - "zrc_phase_a_execution_release_authorization_blockers": 0, - "zrc_phase_a_execution_release_blockers": 1, - "zrc_phase_a_execution_release_ready": false, - "zrc_phase_a_execution_release_released": false, - "zrc_phase_a_execution_release_status": "zrc_nd_phase_a_execution_release_blocked_no_source_backed_provider_selection", - "zrc_phase_a_pending_transfer_rows": 16, - "zrc_phase_a_quote_selection_reply_count": 0, - "zrc_phase_a_quote_selection_sent_count": 0, - "zrc_phase_a_quote_selection_shortlist_count": 0, - "zrc_phase_a_quote_selection_source_backed_reply_count": 0, - "zrc_phase_a_quote_selection_status": "pending_outreach", - "zrc_phase_a_quote_tracker_status": "pending_outreach", - "zrc_phase_a_raw_csv_extraction_errors": 0, - "zrc_phase_a_raw_csv_extraction_files": 0, - "zrc_phase_a_raw_csv_extraction_rows": 0, - "zrc_phase_a_raw_csv_extraction_status": "zrc_nd_phase_a_raw_csv_value_extraction_no_raw_csv", - "zrc_phase_a_rfq_dispatch_archive_files": 24, - "zrc_phase_a_rfq_dispatch_archive_hash_mismatches": 0, - "zrc_phase_a_rfq_dispatch_archive_missing_files": 0, - "zrc_phase_a_rfq_dispatch_archive_path": "data/zrc_nd_phase_a_rfq_dispatch_archive/zrc_nd_phase_a_rfq_dispatch_archive.zip", - "zrc_phase_a_rfq_dispatch_archive_sha256": "2a2ca661089a7d5ae0a91205968a383b98d7fbd90cea45c46fd4f6c8eab917d7", - "zrc_phase_a_rfq_dispatch_archive_status": "zrc_phase_a_rfq_dispatch_archive_ready", - "zrc_phase_a_rfq_dispatch_manifest_blocked_rows": 0, - "zrc_phase_a_rfq_dispatch_manifest_ready_rows": 4, - "zrc_phase_a_rfq_dispatch_manifest_rows": 4, - "zrc_phase_a_rfq_dispatch_manifest_status": "zrc_phase_a_rfq_dispatch_manifest_ready", - "zrc_phase_a_rfq_outbox_quote_count": 4, - "zrc_phase_a_rfq_outbox_ready_count": 4, - "zrc_phase_a_rfq_outbox_status": "ready_to_send_outbox", - "zrc_phase_a_rfq_reply_action_pack_awaiting_reply_rows": 0, - "zrc_phase_a_rfq_reply_action_pack_needs_source_rows": 0, - "zrc_phase_a_rfq_reply_action_pack_ready_apply_rows": 0, - "zrc_phase_a_rfq_reply_action_pack_rows": 4, - "zrc_phase_a_rfq_reply_action_pack_status": "zrc_phase_a_rfq_reply_action_pack_waiting_for_send", - "zrc_phase_a_rfq_reply_action_pack_waiting_send_rows": 4, - "zrc_phase_a_rfq_reply_intake_applied_rows": 0, - "zrc_phase_a_rfq_reply_intake_files": 0, - "zrc_phase_a_rfq_reply_intake_needs_review_rows": 0, - "zrc_phase_a_rfq_reply_intake_needs_verified_send_rows": 0, - "zrc_phase_a_rfq_reply_intake_status": "zrc_nd_phase_a_rfq_reply_intake_waiting_for_reply_files", - "zrc_phase_a_rfq_reply_log_applied_fields": 0, - "zrc_phase_a_rfq_reply_log_errors": 0, - "zrc_phase_a_rfq_reply_log_received_rows": 0, - "zrc_phase_a_rfq_reply_log_rows": 4, - "zrc_phase_a_rfq_reply_log_status": "zrc_nd_phase_a_rfq_reply_log_waiting_for_reply_files", - "zrc_phase_a_rfq_reply_log_valid_rows": 0, - "zrc_phase_a_rfq_send_cockpit_confirmations": 0, - "zrc_phase_a_rfq_send_cockpit_html": "reports/zrc_nd_phase_a_rfq_send_cockpit.html", - "zrc_phase_a_rfq_send_cockpit_missing_bundle": 0, - "zrc_phase_a_rfq_send_cockpit_missing_email": 0, - "zrc_phase_a_rfq_send_cockpit_ready_rows": 4, - "zrc_phase_a_rfq_send_cockpit_replies": 0, - "zrc_phase_a_rfq_send_cockpit_rows": 4, - "zrc_phase_a_rfq_send_cockpit_status": "zrc_phase_a_rfq_send_cockpit_ready_for_manual_send", - "zrc_phase_a_rfq_send_confirmation_entry_apply_applied_rows": 0, - "zrc_phase_a_rfq_send_confirmation_entry_apply_blocked_rows": 0, - "zrc_phase_a_rfq_send_confirmation_entry_apply_rows": 0, - "zrc_phase_a_rfq_send_confirmation_entry_apply_status": "zrc_phase_a_rfq_send_confirmation_entry_apply_no_apply_rows", - "zrc_phase_a_rfq_send_confirmation_entry_sheet_blocked_rows": 0, - "zrc_phase_a_rfq_send_confirmation_entry_sheet_ready_rows": 0, - "zrc_phase_a_rfq_send_confirmation_entry_sheet_rows": 4, - "zrc_phase_a_rfq_send_confirmation_entry_sheet_source_files": 0, - "zrc_phase_a_rfq_send_confirmation_entry_sheet_status": "zrc_phase_a_rfq_send_confirmation_entry_sheet_waiting_for_confirmation_files", - "zrc_phase_a_rfq_send_confirmation_intake_applied_rows": 0, - "zrc_phase_a_rfq_send_confirmation_intake_bundle_matched_rows": 0, - "zrc_phase_a_rfq_send_confirmation_intake_files": 0, - "zrc_phase_a_rfq_send_confirmation_intake_needs_review_rows": 0, - "zrc_phase_a_rfq_send_confirmation_intake_status": "zrc_nd_phase_a_rfq_send_confirmation_intake_waiting_for_confirmation_files", - "zrc_phase_a_rfq_send_log_applied_dates": 0, - "zrc_phase_a_rfq_send_log_errors": 0, - "zrc_phase_a_rfq_send_log_rows": 4, - "zrc_phase_a_rfq_send_log_sent_rows": 0, - "zrc_phase_a_rfq_send_log_status": "zrc_nd_phase_a_rfq_send_log_waiting_for_sent_entries", - "zrc_phase_a_rfq_send_log_valid_sent_rows": 0, - "zrc_phase_a_rfq_status": "ready_to_send_rfq", - "zrc_phase_a_sample_label_count": 16, - "zrc_phase_a_service_runs": 8, - "zrc_phase_a_service_status": "ready_to_request_real_phase_a_measurements", - "zrc_phase_a_source_drop_dirs": 8, - "zrc_phase_a_source_drop_existing_files": 0, - "zrc_phase_a_source_drop_missing_files": 304, - "zrc_phase_a_source_drop_planned_files": 304, - "zrc_phase_a_source_drop_status": "zrc_nd_phase_a_source_drop_plan_ready", - "zrc_phase_a_source_import_errors": 0, - "zrc_phase_a_source_import_imported_rows": 0, - "zrc_phase_a_source_import_rows": 304, - "zrc_phase_a_source_import_status": "zrc_nd_phase_a_source_value_import_no_importable_rows", - "zrc_phase_a_source_template_pack_status": "zrc_nd_phase_a_source_file_template_pack_ready", - "zrc_phase_a_source_template_pack_target_files": 304, - "zrc_phase_a_source_template_pack_templates": 8, - "zrc_phase_a_source_values_filled_rows": 0, - "zrc_phase_a_source_values_import_ready_rows": 0, - "zrc_phase_a_source_values_rows": 304, - "zrc_phase_a_source_values_status": "zrc_nd_phase_a_source_values_sheet_ready", - "zrc_phase_a_vendor_bundle_entry_apply_bundles": 0, - "zrc_phase_a_vendor_bundle_entry_apply_errors": 0, - "zrc_phase_a_vendor_bundle_entry_apply_rows": 0, - "zrc_phase_a_vendor_bundle_entry_apply_source_rows": 0, - "zrc_phase_a_vendor_bundle_entry_apply_status": "zrc_phase_a_vendor_bundle_entry_apply_no_apply_rows", - "zrc_phase_a_vendor_bundle_entry_sheet_blocked_rows": 0, - "zrc_phase_a_vendor_bundle_entry_sheet_bundles": 64, - "zrc_phase_a_vendor_bundle_entry_sheet_ready_rows": 0, - "zrc_phase_a_vendor_bundle_entry_sheet_status": "zrc_phase_a_vendor_bundle_entry_sheet_ready", - "zrc_phase_a_vendor_first_wave_count": 4, - "zrc_phase_a_vendor_outreach_status": "ready_for_vendor_screening", - "zrc_phase_a_vendor_return_export_files": 0, - "zrc_phase_a_vendor_return_rows": 0, - "zrc_phase_a_vendor_return_status": "awaiting_vendor_return_files", - "zrc_readiness": "not_suitable_yet_no_measured_data", - "zrc_run_completeness_measured_known_rows": 0, - "zrc_run_completeness_planned_rows": 132, - "zrc_run_completeness_status": "no_measured_rows", - "zrc_sentinel_rows": 0, - "zrc_sentinel_status": "no_sentinel_rows", - "zrc_suitable": false, - "zrc_validation_result_rows": 0, - "zrc_validation_result_status": "no_data" - } -} \ No newline at end of file diff --git a/data/limina_local_capture_pack.json b/data/limina_local_capture_pack.json deleted file mode 100644 index 2e2cfed..0000000 --- a/data/limina_local_capture_pack.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "boundary": "This pack is logistics and data-entry scaffolding only; it is not measured evidence until filled with real values and passed through QC, gate evaluators, and the final claim audit.", - "generated_artifacts": { - "h_a_local_capture_template": "data/nhi_pedot_h_a_local_capture_template.csv", - "h_a_osmolality_outsource_template": "data/nhi_pedot_h_a_osmolality_outsource_template.csv", - "instrument_register_template": "data/limina_local_instrument_register_template.csv", - "qc_checklist": "data/limina_local_capture_qc_checklist.csv", - "task_table": "data/limina_local_capture_tasks.csv", - "zrc_local_capture_template": "data/zrc_nd_phase_a_local_capture_template.csv", - "zrc_osmolality_outsource_template": "data/zrc_nd_phase_a_osmolality_outsource_template.csv" - }, - "merge_commands": [ - "python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv", - "python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv", - "python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv", - "python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv" - ], - "purpose": "Turn the hybrid measurement routing plan into fillable local/outsource templates without claiming material suitability.", - "source_artifacts": { - "h_a_raw_template": "data/nhi_pedot_h_a_raw_measurements_template.csv", - "hybrid_plan": "data/limina_hybrid_measurement_plan.json", - "zrc_phase_a_template": "data/zrc_nd_phase_a_sentinel_template.csv" - }, - "status": "local_capture_pack_ready", - "summary": { - "branch_counts": { - "NHI-PEDOT H-A": 228, - "ZRC-ND Phase A": 122 - }, - "h_a_local_entry_rows": 204, - "h_a_outsource_entry_rows": 24, - "outsourced_preferred_rows": 40, - "ready_to_collect_local_rows": 184, - "ready_to_record_provenance_rows": 126, - "route_counts": { - "inhouse_ready": 184, - "outsourced_preferred": 40, - "supplier_or_build_record": 126 - }, - "task_count": 350, - "zrc_local_template_rows": 8, - "zrc_outsource_template_rows": 8 - } -} \ No newline at end of file diff --git a/data/limina_local_capture_preflight.json b/data/limina_local_capture_preflight.json deleted file mode 100644 index 62742de..0000000 --- a/data/limina_local_capture_preflight.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "boundary": "Preflight checks local capture entry quality and source-file existence only. It does not create measured evidence or a material suitability claim.", - "filled_task_count": 0, - "inputs": { - "h_a_local": "data/nhi_pedot_h_a_local_capture_template.csv", - "h_a_outsource": "data/nhi_pedot_h_a_osmolality_outsource_template.csv", - "instrument_register": "data/limina_local_instrument_register_template.csv", - "source_manifest": "data/limina_source_file_manifest.json", - "tasks": "data/limina_local_capture_tasks.csv", - "zrc_local": "data/zrc_nd_phase_a_local_capture_template.csv", - "zrc_outsource": "data/zrc_nd_phase_a_osmolality_outsource_template.csv" - }, - "issue_counts": { - "error": 0, - "warning": 0 - }, - "issues": [], - "pending_task_count": 350, - "preflight_ready": false, - "source_file_policy": { - "allowed_root_count": 12, - "expected_source_class_count": 12, - "manifest": "data/limina_source_file_manifest.json", - "must_exist": true, - "status": "source_file_manifest_ready" - }, - "status": "local_capture_preflight_awaiting_entries", - "task_count": 350, - "template_summaries": { - "h_a_local": { - "filled": 0, - "pending": 204, - "tasks": 204 - }, - "h_a_outsource": { - "filled": 0, - "pending": 24, - "tasks": 24 - }, - "zrc_local": { - "filled": 0, - "pending": 106, - "tasks": 106 - }, - "zrc_outsource": { - "filled": 0, - "pending": 16, - "tasks": 16 - } - } -} \ No newline at end of file diff --git a/data/limina_local_capture_qc_checklist.csv b/data/limina_local_capture_qc_checklist.csv deleted file mode 100644 index 376ea54..0000000 --- a/data/limina_local_capture_qc_checklist.csv +++ /dev/null @@ -1,7 +0,0 @@ -check_id,stage,applies_to,requirement,fail_if,owner,status,notes -LC-QC-001,pre_entry,all templates,Every run_id must exactly match the generated template run_id.,"run_id is edited, missing, duplicated incorrectly, or invented.",operator,pending_real_measurement, -LC-QC-002,provenance,all measured fields,"Every measured value must include measured_at, operator_or_agent, instrument_id, and source_file.","any provenance field is blank, placeholder, synthetic, or not traceable to the row.",operator,pending_real_measurement, -LC-QC-003,source_files,all measured fields,"source_file must point to raw export, image, worksheet, calibration log, or vendor report.","source_file is only an email, quote, verbal note, capability claim, or blank.",operator,pending_real_measurement, -LC-QC-004,units,pH/conductivity/osmolality/temperature/swelling fields,Units must match the generated template or an accepted alias in the merge script.,unit is missing where required or inconsistent with the target field.,operator,pending_real_measurement, -LC-QC-005,visual_scoring,"visible_precipitate,visible_shedding,delamination_score,optical_transparency_fraction",Use the same imaging/scoring method across all matched rows.,"lighting, magnification, scoring rubric, or threshold changes without deviation log.",operator,pending_real_measurement, -LC-QC-006,claim_guard,all outputs,Do not treat local capture templates or partially filled rows as suitability evidence.,claim_ready is inferred before evaluator gates and claim audit pass on real rows.,agent,active_guard, diff --git a/data/limina_local_capture_tasks.csv b/data/limina_local_capture_tasks.csv deleted file mode 100644 index 2947e21..0000000 --- a/data/limina_local_capture_tasks.csv +++ /dev/null @@ -1,351 +0,0 @@ -task_id,branch,route,run_id,sample_event,target_field,wide_field,unit,instrument_class,entry_file,merge_command,source_file_requirement,value_required,provenance_required,notes -LC-0001,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,date,date,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0002,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0003,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0004,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0005,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0006,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0007,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0008,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0009,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0010,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0011,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0012,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0013,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0014,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0015,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0016,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0017,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0018,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0019,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0020,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,date,date,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0021,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0022,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0023,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0024,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0025,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0026,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0027,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0028,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0029,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0030,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0031,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0032,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0033,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0034,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0035,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0036,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0037,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0038,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0039,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,date,date,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0040,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0041,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0042,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0043,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0044,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0045,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0046,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0047,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0048,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0049,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0050,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0051,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0052,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0053,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0054,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0055,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0056,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0057,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0058,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,date,date,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0059,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0060,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0061,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0062,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0063,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0064,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0065,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0066,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0067,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0068,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0069,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0070,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0071,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0072,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0073,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0074,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0075,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0076,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0077,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,date,date,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0078,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0079,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0080,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0081,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0082,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0083,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0084,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0085,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0086,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0087,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0088,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0089,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0090,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0091,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0092,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0093,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0094,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0095,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0096,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,date,date,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0097,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0098,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0099,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0100,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0101,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0102,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0103,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0104,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0105,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0106,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0107,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0108,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0109,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0110,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0111,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0112,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0113,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0114,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0115,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,date,date,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0116,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0117,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0118,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0119,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0120,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0121,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0122,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0123,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0124,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0125,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0126,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0127,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0128,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0129,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0130,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0131,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0132,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0133,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0134,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,date,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0135,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0136,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0137,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0138,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0139,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0140,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0141,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0142,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0143,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0144,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0145,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0146,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0147,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0148,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0149,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0150,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0151,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0152,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0153,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,date,date,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0154,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0155,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0156,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0157,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0158,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0159,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0160,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0161,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0162,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0163,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0164,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0165,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0166,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0167,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0168,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0169,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0170,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0171,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0172,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,date,date,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0173,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0174,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0175,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0176,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0177,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0178,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0179,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0180,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0181,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0182,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0183,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0184,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0185,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0186,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0187,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0188,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0189,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0190,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0191,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,date,date,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0192,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0193,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0194,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0195,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0196,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0197,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0198,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0199,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0200,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0201,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0202,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0203,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0204,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0205,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0206,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0207,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0208,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0209,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0210,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,date,date,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0211,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0212,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0213,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0214,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0215,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0216,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0217,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0218,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0219,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0220,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0221,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0222,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0223,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0224,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0225,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0226,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0227,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0228,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry -LC-0229,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,conductivity_final_mS_cm,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0230,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,conductivity_initial_mS_cm,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0231,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,exposure_time_h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Incubation start/stop log or vendor report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0232,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,initial_volume_ml,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Pipetting worksheet or balance/volume log.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0233,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,pH_final,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0234,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,pH_initial,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0235,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0236,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0237,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,osmolality_final_mOsm_kg,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0238,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,osmolality_initial_mOsm_kg,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0239,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,date,date,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0240,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,medium_lot,medium_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0241,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,medium_name,medium_name,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0242,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,membrane_area_cm2,membrane_area_cm2,cm2,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Build drawing, measurement worksheet, or supplier documentation.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0243,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,membrane_lot,membrane_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Supplier label, CoA, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0244,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,0 h,prefilter_lot,prefilter_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Supplier label, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0245,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,conductivity_final_mS_cm,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0246,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,conductivity_initial_mS_cm,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0247,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,exposure_time_h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Incubation start/stop log or vendor report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0248,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,initial_volume_ml,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Pipetting worksheet or balance/volume log.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0249,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,pH_final,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0250,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,pH_initial,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0251,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0252,ZRC-ND Phase A,inhouse_ready,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0253,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,osmolality_final_mOsm_kg,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0254,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,osmolality_initial_mOsm_kg,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0255,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,date,date,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0256,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,medium_lot,medium_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0257,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,medium_name,medium_name,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0258,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,membrane_area_cm2,membrane_area_cm2,cm2,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Build drawing, measurement worksheet, or supplier documentation.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0259,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,membrane_lot,membrane_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Supplier label, CoA, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0260,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,24 h,prefilter_lot,prefilter_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Supplier label, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0261,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,conductivity_final_mS_cm,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0262,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,conductivity_initial_mS_cm,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0263,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,exposure_time_h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Incubation start/stop log or vendor report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0264,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,initial_volume_ml,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Pipetting worksheet or balance/volume log.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0265,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,pH_final,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0266,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,pH_initial,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0267,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0268,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0269,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,osmolality_final_mOsm_kg,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0270,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,osmolality_initial_mOsm_kg,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0271,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,date,date,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0272,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,medium_lot,medium_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0273,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,medium_name,medium_name,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0274,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,membrane_area_cm2,membrane_area_cm2,cm2,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Build drawing, measurement worksheet, or supplier documentation.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0275,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,membrane_lot,membrane_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Supplier label, CoA, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0276,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,0 h,prefilter_lot,prefilter_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Supplier label, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0277,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,conductivity_final_mS_cm,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0278,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,conductivity_initial_mS_cm,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0279,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,exposure_time_h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Incubation start/stop log or vendor report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0280,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,initial_volume_ml,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Pipetting worksheet or balance/volume log.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0281,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,pH_final,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0282,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,pH_initial,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0283,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0284,ZRC-ND Phase A,inhouse_ready,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0285,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,osmolality_final_mOsm_kg,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0286,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,osmolality_initial_mOsm_kg,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0287,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,date,date,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0288,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,medium_lot,medium_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0289,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,medium_name,medium_name,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0290,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,membrane_area_cm2,membrane_area_cm2,cm2,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Build drawing, measurement worksheet, or supplier documentation.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0291,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,membrane_lot,membrane_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Supplier label, CoA, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0292,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,24 h,prefilter_lot,prefilter_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Supplier label, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0293,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,conductivity_final_mS_cm,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0294,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,conductivity_initial_mS_cm,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0295,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,exposure_time_h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Incubation start/stop log or vendor report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0296,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,initial_volume_ml,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Pipetting worksheet or balance/volume log.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0297,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,pH_final,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0298,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,pH_initial,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0299,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0300,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0301,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,osmolality_final_mOsm_kg,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0302,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,osmolality_initial_mOsm_kg,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0303,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,date,date,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0304,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,medium_lot,medium_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0305,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,medium_name,medium_name,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0306,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,membrane_area_cm2,membrane_area_cm2,cm2,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Build drawing, measurement worksheet, or supplier documentation.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0307,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,membrane_lot,membrane_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Supplier label, CoA, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0308,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,prefilter_lot,prefilter_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Supplier label, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0309,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,conductivity_final_mS_cm,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0310,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,conductivity_initial_mS_cm,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0311,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,exposure_time_h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Incubation start/stop log or vendor report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0312,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,initial_volume_ml,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Pipetting worksheet or balance/volume log.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0313,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,pH_final,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0314,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,pH_initial,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0315,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0316,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0317,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,osmolality_final_mOsm_kg,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0318,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,osmolality_initial_mOsm_kg,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0319,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,date,date,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0320,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,medium_lot,medium_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0321,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,medium_name,medium_name,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0322,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,membrane_area_cm2,membrane_area_cm2,cm2,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Build drawing, measurement worksheet, or supplier documentation.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0323,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,membrane_lot,membrane_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Supplier label, CoA, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0324,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,prefilter_lot,prefilter_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Supplier label, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0325,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,conductivity_final_mS_cm,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0326,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,conductivity_initial_mS_cm,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0327,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,exposure_time_h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Incubation start/stop log or vendor report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0328,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,initial_volume_ml,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Pipetting worksheet or balance/volume log.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0329,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,pH_final,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0330,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,pH_initial,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0331,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0332,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0333,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-0h,0 h,osmolality_final_mOsm_kg,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0334,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-0h,0 h,osmolality_initial_mOsm_kg,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0335,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-0h,0 h,date,date,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0336,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-0h,0 h,medium_lot,medium_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0337,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-0h,0 h,medium_name,medium_name,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0338,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,conductivity_final_mS_cm,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0339,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,conductivity_initial_mS_cm,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0340,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,exposure_time_h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Incubation start/stop log or vendor report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0341,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,initial_volume_ml,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Pipetting worksheet or balance/volume log.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0342,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,pH_final,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0343,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,pH_initial,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0344,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0345,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0346,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-24h,24 h,osmolality_final_mOsm_kg,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0347,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-24h,24 h,osmolality_initial_mOsm_kg,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0348,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-24h,24 h,date,date,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0349,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-24h,24 h,medium_lot,medium_lot,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry -LC-0350,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-24h,24 h,medium_name,medium_name,,record_review,data/zrc_nd_phase_a_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry diff --git a/data/limina_local_instrument_register_template.csv b/data/limina_local_instrument_register_template.csv deleted file mode 100644 index c754ed1..0000000 --- a/data/limina_local_instrument_register_template.csv +++ /dev/null @@ -1,7 +0,0 @@ -instrument_id,instrument_class,required_for_fields,minimum_capability,calibration_or_source_requirement,output_file_required,status,owner_or_lab,notes -record_actual_pH_meter_id,calibrated_pH_meter,"pH,pH_initial,pH_final",Calibrated pH measurement in culture-medium range.,Two- or three-point calibration on measurement day; preserve calibration log.,"meter export, calibration log, or time-stamped display photo",needed_before_measurement,, -record_actual_conductivity_meter_id,calibrated_conductivity_meter,"conductivity,conductivity_initial_mS_cm,conductivity_final_mS_cm",mS/cm conductivity readout with calibration standard suitable for media.,Calibration or standard check on measurement day.,"meter export, calibration log, or time-stamped display photo",needed_before_measurement,, -record_actual_temperature_probe_or_incubator_id,temperature_probe_or_incubator_log,temperature_c,Temperature record at incubation or measurement time.,Probe ID or incubator log traceable to the measurement window.,"incubator export, probe log, or time-stamped photo",needed_before_measurement,, -record_actual_imaging_station_id,imaging_station_or_scoring_sheet,"visible_precipitate,visible_shedding,delamination_score,optical_transparency_fraction",Consistent lightbox/stereoscope/microscope imaging with run_id traceability.,"Use same lighting, scale, magnification, and scoring worksheet across rows.",image files plus scoring worksheet,needed_before_measurement,, -record_actual_dimension_or_mass_method_id,caliper_balance_or_image_analysis,swelling_fraction,"Pre/post dimension, area, or mass method applied consistently.","Record method, scale/caliper ID, or image-analysis workflow.","worksheet, export, or annotated images",needed_before_measurement,, -external_or_local_osmometer_id,osmometer_or_external_lab,"osmolality,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg",Osmolality in mOsm/kg with run_id reconciliation.,External report or local calibration record.,osmometer report/export,outsourced_preferred,,Use only if real report/export is available. diff --git a/data/limina_material_technologies.json b/data/limina_material_technologies.json deleted file mode 100644 index 9395183..0000000 --- a/data/limina_material_technologies.json +++ /dev/null @@ -1,181 +0,0 @@ -[ - { - "id": "limina_zrc_nd_v0_1", - "name": "ZRC-ND: Zwitterionic Regenerated-Cellulose Neurodialysis Cartridge", - "priority_lane": "LIMINA-External-1", - "status": "nominated", - "one_line": "A side-stream, MWCO-graded regenerated-cellulose dialysis cartridge with a low-fouling zwitterionic hydration layer to remove lactate/ammonium-class small wastes while preserving neurotrophic proteins and secretome signals.", - "technology_type": "selective_neuronal_media_waste_management_material", - "core_material_stack": [ - { - "layer": "low-binding prefilter", - "material": "PES or SFCA membrane in a short upstream guard position", - "function": "Remove debris while minimizing protein/growth-factor adsorption." - }, - { - "layer": "primary selective exchange membrane", - "material": "Regenerated cellulose dialysis membrane, first screened at 3.5 kDa and 10 kDa MWCO", - "function": "Exchange lactate, ammonium/ammonia, salts, and other low-MW waste while retaining high-MW trophic proteins." - }, - { - "layer": "antifouling hydration layer", - "material": "Thin zwitterionic graft/coating such as sulfobetaine, carboxybetaine, or MPC-like chemistry on the medium-facing membrane/housing surfaces", - "function": "Reduce protein fouling and preserve membrane performance in protein-rich neuronal medium." - }, - { - "layer": "monitoring and safety shell", - "material": "Low-leachable COC/COP or PEEK cartridge body with pH, conductivity, pressure/flow, and bubble observation points", - "function": "Keep the waste cartridge outside the cell chamber and make silent failure detectable." - } - ], - "design_claim": "A passive side-stream neurodialysis cartridge can be made more suitable for long-lived neural wetware by combining MWCO-based small-waste exchange with low-fouling zwitterionic surface chemistry, rather than relying on bulk medium exchange or broad adsorbent beds.", - "why_it_is_new_for_limina": [ - "It treats culture medium as a signaling environment, not a disposable buffer.", - "It separates waste removal from cell exposure by using a side-stream cartridge.", - "It combines size-selective regenerated cellulose dialysis with antifouling zwitterionic chemistry for neural-medium preservation.", - "It explicitly optimizes for both waste clearance and BDNF/NGF/albumin/transferrin retention." - ], - "fit_to_requirements": { - "remove_lactate_ammonium": "Supported by low-MW dialysis/exchange rationale; needs quantitative clearance tests.", - "preserve_growth_factors": "Supported by MWCO retention logic and low-binding membrane evidence; needs BDNF/NGF recovery data.", - "avoid_leachables": "Material family is plausible, but cartridge body, coating, sterilization, and extractables must be tested.", - "avoid_protein_stripping": "Zwitterionic/low-binding surfaces are selected specifically to reduce fouling; recovery assays are mandatory.", - "culture_stability": "Passive side-stream design reduces direct cell exposure; long-duration 37 C fouling and drift remain open.", - "monitorability": "Side-stream shell includes pH, conductivity, flow/pressure, and bubble observation points." - }, - "evidence_refs": [ - "dialysis_medium_partitioning_2020", - "ammonia_importance_review_1996", - "lactate_ammonia_growth_inhibition_1991", - "inhibitory_metabolites_2021", - "low_binding_membrane_media_technical", - "low_binding_rc_membrane_vendor", - "zwitterionic_membrane_antifouling_2016", - "zwitterionic_cellulose_acetate_hfm_2026", - "bdnf_uniprot_p23560", - "ngf_uniprot_p01138", - "dialysis_mwco_principle_thermo", - "neural_microfluidic_systems_2023" - ], - "validation_plan": [ - "Run fresh-medium blank through the module to detect pH, osmolality, conductivity, turbidity, and extractables shifts.", - "Run spiked recovery panel for lactate, ammonium, BDNF/NGF proxy, albumin, transferrin, and total protein.", - "Compare 3.5 kDa versus 10 kDa RC MWCO before adding active polishing.", - "Compare unmodified RC against zwitterionic-modified RC/housing surfaces for protein recovery and fouling drift.", - "Only after media-chemistry gates pass, test neuronal conditioned-media viability and morphology." - ], - "kill_criteria": [ - "BDNF/NGF or proxy neurotrophic factor recovery is unacceptably low at useful clearance.", - "Fresh-medium blank shows meaningful leachables, pH drift, osmolality drift, or conductivity drift.", - "Flow resistance or fouling drifts rapidly under protein-rich medium.", - "The zwitterionic coating changes MWCO/permeability so much that waste clearance is no longer useful.", - "Bulk medium exchange outperforms the cartridge even after accounting for secretome dilution." - ], - "open_questions": [ - "Which MWCO gives the best retention-clearance balance for the actual CL1-like medium?", - "Can zwitterionic modification be applied without clogging low-MWCO RC pores?", - "Is coating the cartridge housing enough, or must the membrane surface itself be modified?", - "Does retaining secretome signals improve neural network stability relative to bulk medium exchange?", - "Which low-leachable cartridge housing material is best: COC/COP, PEEK, glass, or another option?" - ], - "score": { - "target_selectivity": 4, - "growth_factor_retention": 5, - "low_leachables": 3, - "culture_stability": 3, - "integration_complexity": 3, - "monitorability": 5, - "novelty_upside": 5, - "risk_control": 3, - "weighted_internal_score": 4.02 - } - }, - { - "id": "limina_nhi_pedot_laminin_v0_1", - "name": "NHI-PEDOT: Laminin-Anchored PEDOT:PSS Neural Hydrogel Interphase", - "priority_lane": "LIMINA-Cell-1", - "status": "nominated", - "one_line": "A brain-soft, ECM-adhesive hydrogel interphase that embeds low-loading PEDOT:PSS conductive microdomains under a laminin or peptide-presenting top environment for cell-facing MEA coupling.", - "technology_type": "cell_contact_soft_mixed_conducting_interface", - "core_material_stack": [ - { - "layer": "MEA anchor and insulation boundary", - "material": "Oxygen-plasma or dopamine-primed MEA surface with masked electrode windows and nonfouling insulation regions", - "function": "Keep the hydrogel attached to the recording surface while preserving defined electrode access and optical inspection." - }, - { - "layer": "soft neural hydrogel matrix", - "material": "GelMA, hyaluronic-acid, or alginate-based hydrogel tuned around brain-like low-kPa mechanics", - "function": "Provide a hydrated, mechanically gentle environment for neuronal attachment, neurite extension, and medium diffusion." - }, - { - "layer": "mixed-conducting microdomain phase", - "material": "Low-loading PEDOT:PSS domains or tracks, pre-rinsed and stabilized to reduce free PSS and acidic leachables", - "function": "Lower local impedance and improve ionic/electronic coupling without making the whole surface polymer-dominated." - }, - { - "layer": "cell-instructive presentation layer", - "material": "Laminin, laminin-derived peptides, or ECM-mimetic adhesive motifs presented above or within the hydrogel", - "function": "Prevent the conductive phase from becoming a bare material challenge and guide neuronal adhesion, neurite outgrowth, and network formation." - } - ], - "design_claim": "A CL1-like neural culture interface should not optimize conductivity alone. A soft ECM-adhesive hydrogel can host sparse PEDOT:PSS conductive domains so that cells primarily experience a brain-like hydrated matrix while electrodes still gain a lower-impedance mixed-conducting bridge.", - "why_it_is_new_for_limina": [ - "It treats the electrode surface as a cell-adaptation material rather than a passive conductor.", - "It separates the biological presentation layer from the conductive microdomain fraction.", - "It makes PEDOT:PSS loading a dose-controlled design variable with explicit leachables and network-activity gates.", - "It can be tested on MEA coupons before any closed CL1 hardware integration." - ], - "fit_to_requirements": { - "cell_adaptation": "Brain-soft hydrogel mechanics and laminin/peptide cues are selected to support neuronal adhesion, neurites, and maturation.", - "electrical_coupling": "PEDOT:PSS microdomains are selected to lower impedance and improve mixed ionic/electronic coupling.", - "avoid_leachables": "The design requires aggressive pre-rinse, extract testing, pH monitoring, and PEDOT:PSS dose control before live-cell exposure.", - "culture_stability": "Hydrogel swelling, delamination, photoinitiator residue, and PEDOT:PSS drift are treated as gating risks.", - "mea_integration": "The material is designed for coupon-level MEA testing with masked electrode windows and impedance tracking.", - "monitorability": "Optical transparency, thickness, swelling, EIS, and MEA network activity can all be monitored directly." - }, - "evidence_refs": [ - "pedot_brain_monitoring_2025", - "pedot_bio_sei_2026", - "conductive_hydrogels_2025", - "hydrogel_neural_tissue_2020", - "stiffness_sensing_2020", - "gelma_pedot_composite_2018", - "pedot_neural_culture_hydrogel_2025", - "gelma_pedot_micropatterning_2026", - "dnt_nam_viability_neurite_mea_2022", - "neuronal_network_material_biocompatibility_mea_2013" - ], - "validation_plan": [ - "Run acellular hydrogel extract and soak tests for pH, osmolality, conductivity, visible particulates, swelling, delamination, and PEDOT:PSS-related leachables.", - "Measure electrochemical impedance, charge-storage capacity, optical transparency, and thickness drift before and after 37 C culture-medium soaking.", - "Compare hydrogel-only, hydrogel-plus-laminin, low-PEDOT:PSS, and high-PEDOT:PSS articles on the same MEA coupon geometry.", - "Only after material blank and electrochemical stability gates pass, run neural viability, neurite, morphology, and MEA network activity pilots.", - "Rerank PEDOT:PSS loading and ECM presentation using measured toxicity, impedance, and network stability rather than conductivity alone." - ], - "kill_criteria": [ - "Extracts or soaks produce pH/osmolality/conductivity drift outside neural medium tolerance or visible particulate/shedding.", - "PEDOT:PSS loading reduces viability, neurite formation, or network activity relative to hydrogel-only and laminin controls.", - "Impedance benefits are small compared with hydrogel-only controls or disappear after medium soaking.", - "The hydrogel swells, delaminates, cracks, or occludes electrode windows under culture conditions.", - "Optical access or MEA signal quality becomes worse than a simpler PDA-laminin or hydrogel-only coating." - ], - "open_questions": [ - "Which matrix, GelMA, hyaluronic acid, or alginate-laminin, best balances CL1-like culture compatibility with manufacturability?", - "What PEDOT:PSS loading gives enough impedance reduction without PSS/leachable or stiffness penalties?", - "Should conductive domains be continuous tracks, sparse islands, or a very low-loading bulk phase?", - "Can the hydrogel be sterilized or prepared aseptically without changing impedance, modulus, or ligand presentation?", - "Does the material improve long-duration network stability compared with plain laminin-coated MEA controls?" - ], - "score": { - "cell_compatibility": 5, - "electrical_coupling": 3, - "mechanical_match": 5, - "culture_stability": 3, - "mea_integration": 4, - "novelty_upside": 4, - "risk_control": 4, - "weighted_internal_score": 4.08 - } - } -] diff --git a/data/limina_portfolio_bypass_audit.json b/data/limina_portfolio_bypass_audit.json deleted file mode 100644 index 9c56825..0000000 --- a/data/limina_portfolio_bypass_audit.json +++ /dev/null @@ -1,237 +0,0 @@ -{ - "active_discovery_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "active_discovery_priority": "promote_now", - "audit_boundary": "Discovery ranking and literature references can nominate prospects, but a bypass is only real when the parent claim audit has source-file-backed measured gates without relying on the H-A branch.", - "claim_ready": false, - "portfolio_primary_next_branch": "limina_nhi_pedot_laminin_v0_1", - "portfolio_status": "no_suitable_material_yet", - "rows": [ - { - "blocking_reason": "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "can_bypass_h_a": false, - "claim_decision": "not_claim_ready", - "claim_ready": false, - "decision": "blocked_by_h_a_claim_gate", - "lane": "LIMINA-Cell-1", - "next_decisive_artifact": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "parent_route": "NHI-PEDOT cell-contact branch", - "parent_technology_id": "limina_nhi_pedot_laminin_v0_1", - "priority": "promote_now", - "prospect_id": "limina_alg_lam_pedot_lowdose_v0_2", - "prospect_name": "ALG-LAM-PEDOT Low-Dose Neural Hydrogel Interphase", - "provenance_counts": "coupon=0/0 measured; h_a_sentinel=0/12 measured; long_duration=0/0 measured", - "rank": 1, - "requires_h_a_before_claim": true, - "weighted_score": 4.285 - }, - { - "blocking_reason": "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "can_bypass_h_a": false, - "claim_decision": "not_claim_ready", - "claim_ready": false, - "decision": "blocked_by_h_a_claim_gate", - "lane": "LIMINA-Cell-1", - "next_decisive_artifact": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "parent_route": "NHI-PEDOT cell-contact branch", - "parent_technology_id": "limina_nhi_pedot_laminin_v0_1", - "priority": "parallel_screen", - "prospect_id": "limina_pda_anchor_alg_lam_pedot_window_v0_1", - "prospect_name": "PDA-Anchored ALG-LAM-PEDOT Electrode-Window Interphase", - "provenance_counts": "coupon=0/0 measured; h_a_sentinel=0/12 measured; long_duration=0/0 measured", - "rank": 2, - "requires_h_a_before_claim": true, - "weighted_score": 3.67 - }, - { - "blocking_reason": "ZRC-ND readiness audit is not suitable.", - "can_bypass_h_a": true, - "claim_decision": "not_claim_ready", - "claim_ready": false, - "decision": "non_h_a_path_not_claim_ready", - "lane": "LIMINA-External-1", - "next_decisive_artifact": "reports/zrc_nd_phase_a_sentinel_packet.md", - "parent_route": "ZRC-ND external-material branch", - "parent_technology_id": "limina_zrc_nd_v0_1", - "priority": "parallel_screen", - "prospect_id": "limina_all_dry_zwitterionic_external_v0_1", - "prospect_name": "All-Dry Zwitterionic Gradient External-Fluidic Coating", - "provenance_counts": "biological=0/0 measured; non_cell=0/0 measured", - "rank": 3, - "requires_h_a_before_claim": false, - "weighted_score": 3.5 - }, - { - "blocking_reason": "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "can_bypass_h_a": false, - "claim_decision": "not_claim_ready", - "claim_ready": false, - "decision": "blocked_by_h_a_claim_gate", - "lane": "LIMINA-Cell-1", - "next_decisive_artifact": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "parent_route": "NHI-PEDOT cell-contact branch", - "parent_technology_id": "limina_nhi_pedot_laminin_v0_1", - "priority": "watch", - "prospect_id": "limina_alg_gel_pedot_ppy_lowoxidant_v0_1", - "prospect_name": "Alg-Gel PEDOT/PPy Low-Oxidant Biointerface Comparator", - "provenance_counts": "coupon=0/0 measured; h_a_sentinel=0/12 measured; long_duration=0/0 measured", - "rank": 4, - "requires_h_a_before_claim": true, - "weighted_score": 3.192 - }, - { - "blocking_reason": "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "can_bypass_h_a": false, - "claim_decision": "not_claim_ready", - "claim_ready": false, - "decision": "blocked_by_h_a_claim_gate", - "lane": "LIMINA-Cell-1", - "next_decisive_artifact": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "parent_route": "NHI-PEDOT cell-contact branch", - "parent_technology_id": "limina_nhi_pedot_laminin_v0_1", - "priority": "watch", - "prospect_id": "limina_zwitterionic_pedot_hydrogel_v0_1", - "prospect_name": "Zwitterionic PEDOT:PSS Hydrated Electrode Hydrogel", - "provenance_counts": "coupon=0/0 measured; h_a_sentinel=0/12 measured; long_duration=0/0 measured", - "rank": 5, - "requires_h_a_before_claim": true, - "weighted_score": 3.171 - }, - { - "blocking_reason": "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "can_bypass_h_a": false, - "claim_decision": "not_claim_ready", - "claim_ready": false, - "decision": "blocked_by_h_a_claim_gate", - "lane": "LIMINA-Cell-1", - "next_decisive_artifact": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "parent_route": "NHI-PEDOT cell-contact branch", - "parent_technology_id": "limina_nhi_pedot_laminin_v0_1", - "priority": "hold", - "prospect_id": "limina_pedot_sgagh_ecm_signal_hydrogel_v0_1", - "prospect_name": "PEDOT:sGAGh Electronic ECM Signal Hydrogel", - "provenance_counts": "coupon=0/0 measured; h_a_sentinel=0/12 measured; long_duration=0/0 measured", - "rank": 6, - "requires_h_a_before_claim": true, - "weighted_score": 3.198 - }, - { - "blocking_reason": "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "can_bypass_h_a": false, - "claim_decision": "not_claim_ready", - "claim_ready": false, - "decision": "blocked_by_h_a_claim_gate", - "lane": "LIMINA-Cell-1", - "next_decisive_artifact": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "parent_route": "NHI-PEDOT cell-contact branch", - "parent_technology_id": "limina_nhi_pedot_laminin_v0_1", - "priority": "hold", - "prospect_id": "limina_hydrogel_actuated_multilayer_3d_mea_v0_1", - "prospect_name": "Hydrogel-Actuated Multilayer 3D Organoid MEA Interface", - "provenance_counts": "coupon=0/0 measured; h_a_sentinel=0/12 measured; long_duration=0/0 measured", - "rank": 7, - "requires_h_a_before_claim": true, - "weighted_score": 3.17 - }, - { - "blocking_reason": "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "can_bypass_h_a": false, - "claim_decision": "not_claim_ready", - "claim_ready": false, - "decision": "blocked_by_h_a_claim_gate", - "lane": "LIMINA-Cell-1", - "next_decisive_artifact": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "parent_route": "NHI-PEDOT cell-contact branch", - "parent_technology_id": "limina_nhi_pedot_laminin_v0_1", - "priority": "hold", - "prospect_id": "limina_anisotropic_spedot_psbma_hydrogel_v0_1", - "prospect_name": "Anisotropic S-PEDOT/PSBMA Antifouling Hydrogel Electrode", - "provenance_counts": "coupon=0/0 measured; h_a_sentinel=0/12 measured; long_duration=0/0 measured", - "rank": 8, - "requires_h_a_before_claim": true, - "weighted_score": 3.067 - }, - { - "blocking_reason": "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "can_bypass_h_a": false, - "claim_decision": "not_claim_ready", - "claim_ready": false, - "decision": "blocked_by_h_a_claim_gate", - "lane": "LIMINA-Cell-1", - "next_decisive_artifact": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "parent_route": "NHI-PEDOT cell-contact branch", - "parent_technology_id": "limina_nhi_pedot_laminin_v0_1", - "priority": "hold", - "prospect_id": "limina_cameo_cnt_organoid_frame_v0_1", - "prospect_name": "CNT Organoid MEA Recording Frame", - "provenance_counts": "coupon=0/0 measured; h_a_sentinel=0/12 measured; long_duration=0/0 measured", - "rank": 9, - "requires_h_a_before_claim": true, - "weighted_score": 2.802 - }, - { - "blocking_reason": "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "can_bypass_h_a": false, - "claim_decision": "not_claim_ready", - "claim_ready": false, - "decision": "blocked_by_h_a_claim_gate", - "lane": "LIMINA-Cell-1", - "next_decisive_artifact": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "parent_route": "NHI-PEDOT cell-contact branch", - "parent_technology_id": "limina_nhi_pedot_laminin_v0_1", - "priority": "hold", - "prospect_id": "limina_op_apa_fillerfree_hydrogel_v0_1", - "prospect_name": "OP-APA Filler-Free Adaptive Bioelectronic Hydrogel", - "provenance_counts": "coupon=0/0 measured; h_a_sentinel=0/12 measured; long_duration=0/0 measured", - "rank": 10, - "requires_h_a_before_claim": true, - "weighted_score": 2.799 - }, - { - "blocking_reason": "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "can_bypass_h_a": false, - "claim_decision": "not_claim_ready", - "claim_ready": false, - "decision": "blocked_by_h_a_claim_gate", - "lane": "LIMINA-Cell-1", - "next_decisive_artifact": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "parent_route": "NHI-PEDOT cell-contact branch", - "parent_technology_id": "limina_nhi_pedot_laminin_v0_1", - "priority": "hold", - "prospect_id": "limina_entangled_zwitterionic_mechanoadaptive_matrix_v0_1", - "prospect_name": "Entangled Zwitterionic Mechanoadaptive Hydrogel Matrix", - "provenance_counts": "coupon=0/0 measured; h_a_sentinel=0/12 measured; long_duration=0/0 measured", - "rank": 11, - "requires_h_a_before_claim": true, - "weighted_score": 2.761 - }, - { - "blocking_reason": "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "can_bypass_h_a": false, - "claim_decision": "not_claim_ready", - "claim_ready": false, - "decision": "blocked_by_h_a_claim_gate", - "lane": "LIMINA-Cell-1", - "next_decisive_artifact": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "parent_route": "NHI-PEDOT cell-contact branch", - "parent_technology_id": "limina_nhi_pedot_laminin_v0_1", - "priority": "hold", - "prospect_id": "limina_mxene_gel_oha_sensing_hydrogel_v0_1", - "prospect_name": "MXene-Gel/OHA Conductive Adhesive Hydrogel Comparator", - "provenance_counts": "coupon=0/0 measured; h_a_sentinel=0/12 measured; long_duration=0/0 measured", - "rank": 12, - "requires_h_a_before_claim": true, - "weighted_score": 2.597 - } - ], - "status": "no_h_a_bypass_claim_ready", - "summary": { - "audit_rows": 12, - "claim_ready_rows": 0, - "h_a_dependent_rows": 11, - "non_h_a_candidate_rows": 1, - "non_h_a_claim_ready_rows": 0, - "recommended_action": "run_zrc_phase_a_real_measurements_before_any_non_h_a_claim", - "top_non_h_a_candidate": "limina_all_dry_zwitterionic_external_v0_1", - "top_non_h_a_decision": "non_h_a_path_not_claim_ready" - } -} \ No newline at end of file diff --git a/data/limina_portfolio_claim_boundary_regression.json b/data/limina_portfolio_claim_boundary_regression.json deleted file mode 100644 index d1c2c0f..0000000 --- a/data/limina_portfolio_claim_boundary_regression.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "assertions": [ - { - "detail": "returncode=0; stderr=", - "name": "selector_command_succeeded", - "passed": true - }, - { - "detail": "portfolio status=claim_audit_required", - "name": "portfolio_does_not_claim_suitable_material_present", - "passed": true - }, - { - "detail": "portfolio status=claim_audit_required", - "name": "portfolio_requires_claim_audit", - "passed": true - }, - { - "detail": "zrc status=readiness_gates_passed_claim_audit_required", - "name": "zrc_suitable_readiness_still_requires_claim_audit", - "passed": true - }, - { - "detail": "nhi status=long_gates_passed_claim_audit_required", - "name": "nhi_long_pass_still_requires_claim_audit", - "passed": true - } - ], - "command": { - "returncode": 0, - "stderr": "", - "stdout": "Portfolio: claim_audit_required\nPrimary next branch: limina_nhi_pedot_laminin_v0_1\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_portfolio_claim_boundary_z5gn8vay/portfolio.json\nWrote /var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_portfolio_claim_boundary_z5gn8vay/portfolio.md" - }, - "portfolio": { - "active_discovery_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "active_discovery_priority": "promote_now", - "branches": [ - { - "name": "NHI-PEDOT", - "next_action": "Run the final suitability claim audit for the active ALG-LAM-PEDOT candidate; long-duration gates report pass, but source-file provenance still controls the claim.", - "portfolio_priority": 0, - "portfolio_status": "long_gates_passed_claim_audit_required", - "priority_lane": "LIMINA-Cell-1", - "proof_boundary": "Not suitable until final claim audit verifies H-A/H-B/H-C and long-duration source-file provenance.", - "readiness_status": "h_a=h_a_lead_passes_continue_h_b;h_a_service=ready_to_request_real_measurements;coupon=nhi_pedot_passes_gates;long=nhi_pedot_long_passes_gates", - "sentinel_status": "not_applicable", - "technology_id": "limina_nhi_pedot_laminin_v0_1", - "technology_status": "nominated", - "validation_packages": { - "all_present": true, - "expected": [ - "data/nhi_pedot_validation_package.json", - "data/nhi_pedot_long_followup_package.json" - ], - "present": [ - "data/nhi_pedot_validation_package.json", - "data/nhi_pedot_long_followup_package.json" - ] - }, - "weighted_internal_score": 4.08 - }, - { - "name": "ZRC-ND", - "next_action": "Run the final suitability claim audit; readiness gates report suitable, but portfolio cannot declare suitability without claimable source-file provenance.", - "portfolio_priority": 0, - "portfolio_status": "readiness_gates_passed_claim_audit_required", - "priority_lane": "LIMINA-External-1", - "proof_boundary": "Not suitable until the final claim audit verifies measured non-cell and biological provenance.", - "readiness_status": "suitable", - "sentinel_status": "sentinel_passes_continue", - "technology_id": "limina_zrc_nd_v0_1", - "technology_status": "nominated", - "validation_packages": { - "all_present": true, - "expected": [ - "data/zrc_nd_3p5k_guard_validation_package.json", - "data/zrc_nd_biological_followup_package.json" - ], - "present": [ - "data/zrc_nd_3p5k_guard_validation_package.json", - "data/zrc_nd_biological_followup_package.json" - ] - }, - "weighted_internal_score": 4.02 - } - ], - "primary_next_branch": "limina_nhi_pedot_laminin_v0_1", - "status": "claim_audit_required" - }, - "portfolio_status": "claim_audit_required", - "primary_next_branch": "limina_nhi_pedot_laminin_v0_1", - "status": "pass", - "tmp_dir": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_portfolio_claim_boundary_z5gn8vay" -} \ No newline at end of file diff --git a/data/limina_quote_selection_source_guard_regression.json b/data/limina_quote_selection_source_guard_regression.json deleted file mode 100644 index 2e10d2e..0000000 --- a/data/limina_quote_selection_source_guard_regression.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "checks": { - "h_a_selected_without_source_is_not_selected": true, - "h_a_source_backed_reply_can_shortlist": true, - "h_a_unbacked_reply_needs_source_files": true, - "zrc_selected_without_source_is_not_selected": true, - "zrc_source_backed_reply_can_shortlist": true, - "zrc_unbacked_reply_needs_source_files": true - }, - "h_a_backed_status": "ready_to_select_provider", - "h_a_unbacked_status": "quote_replies_need_source_files", - "status": "pass", - "zrc_backed_status": "ready_to_select_provider", - "zrc_unbacked_status": "quote_replies_need_source_files" -} \ No newline at end of file diff --git a/data/limina_rfq_reply_intake_regression.json b/data/limina_rfq_reply_intake_regression.json deleted file mode 100644 index 50180b7..0000000 --- a/data/limina_rfq_reply_intake_regression.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "applied_status": "regression_rfq_reply_intake_registered_for_review", - "checks": { - "no_files_reply_log_stays_pending": true, - "no_files_waits": true, - "text_reply_does_not_mark_received": true, - "text_reply_needs_manual_review": true, - "unverified_send_does_not_apply": true, - "valid_eml_apply_updates_tracker_but_not_selection_fields": true, - "valid_eml_marks_clarification_for_review": true, - "valid_eml_registers_one_row": true - }, - "status": "pass", - "text_review_status": "regression_rfq_reply_intake_needs_review", - "unverified_status": "regression_rfq_reply_intake_needs_review" -} \ No newline at end of file diff --git a/data/limina_rfq_reply_log_regression.json b/data/limina_rfq_reply_log_regression.json deleted file mode 100644 index 1036089..0000000 --- a/data/limina_rfq_reply_log_regression.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "applied_status": "regression_rfq_reply_log_applied", - "checks": { - "initial_tracker_unchanged": true, - "initial_waits_without_reply_files": true, - "missing_source_does_not_apply_tracker": true, - "missing_source_rejected": true, - "valid_reply_applies_tracker_fields": true - }, - "initial_status": "regression_rfq_reply_log_waiting_for_reply_files", - "rejected_status": "regression_rfq_reply_log_has_errors", - "status": "pass" -} \ No newline at end of file diff --git a/data/limina_rfq_send_confirmation_intake_regression.json b/data/limina_rfq_send_confirmation_intake_regression.json deleted file mode 100644 index 53e3b7c..0000000 --- a/data/limina_rfq_send_confirmation_intake_regression.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "applied_status": "regression_rfq_send_confirmation_intake_applied", - "checks": { - "no_files_send_log_stays_pending": true, - "no_files_waits": true, - "text_confirmation_does_not_mark_sent": true, - "text_confirmation_needs_manual_review": true, - "valid_eml_applies_one_row": true, - "valid_eml_matches_expected_bundle": true, - "valid_eml_records_expected_bundle_hash": true, - "valid_eml_send_log_applies_tracker_date": true, - "wrong_bundle_does_not_apply_tracker": true, - "wrong_bundle_needs_review": true - }, - "status": "pass", - "text_review_status": "regression_rfq_send_confirmation_intake_needs_review", - "wrong_bundle_status": "regression_rfq_send_confirmation_intake_needs_review" -} \ No newline at end of file diff --git a/data/limina_rfq_send_log_regression.json b/data/limina_rfq_send_log_regression.json deleted file mode 100644 index 4b23479..0000000 --- a/data/limina_rfq_send_log_regression.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "applied_status": "regression_rfq_send_log_applied", - "checks": { - "bad_hash_does_not_apply_tracker_date": true, - "bad_hash_rejected": true, - "initial_tracker_unchanged": true, - "initial_waits_without_sent_rows": true, - "missing_confirmation_does_not_apply_tracker_date": true, - "missing_confirmation_source_rejected": true, - "valid_send_applies_one_tracker_date": true, - "valid_send_is_source_backed": true - }, - "initial_status": "regression_rfq_send_log_waiting_for_sent_entries", - "missing_confirmation_status": "regression_rfq_send_log_has_errors", - "rejected_status": "regression_rfq_send_log_has_errors", - "status": "pass" -} \ No newline at end of file diff --git a/data/limina_scoring_profile.json b/data/limina_scoring_profile.json deleted file mode 100644 index dcccc09..0000000 --- a/data/limina_scoring_profile.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": "0.1", - "scale": "1_to_5", - "weights": { - "cell_compatibility": 0.22, - "electrical_coupling": 0.18, - "mechanical_match": 0.16, - "culture_stability": 0.12, - "mea_integration": 0.12, - "novelty_upside": 0.1, - "risk_control": 0.1 - }, - "gates": [ - { - "field": "cell_compatibility", - "minimum": 3, - "reason": "A material that cannot plausibly support neural cell viability should not be prioritized." - }, - { - "field": "culture_stability", - "minimum": 3, - "reason": "The interface must remain stable in warm aqueous culture medium." - } - ] -} - diff --git a/data/limina_second_wave_candidate_queue.csv b/data/limina_second_wave_candidate_queue.csv deleted file mode 100644 index 564aee5..0000000 --- a/data/limina_second_wave_candidate_queue.csv +++ /dev/null @@ -1,7 +0,0 @@ -queue_rank,candidate_id,name,lane,ranking_priority,weighted_score,queue_decision,measurement_lane,measurement_dependency,scope_lock_action,near_term_test -1,limina_pda_anchor_alg_lam_pedot_window_v0_1,PDA-Anchored ALG-LAM-PEDOT Electrode-Window Interphase,LIMINA-Cell-1,parallel_screen,3.67,ready_for_second_wave_scope_lock_measurement_dependency,cell_contact_anchor_rescue_coupon,requires_primary_h_a_blank_pass,"Lock the PDA/primer chemistry, electrode-window mask, extract-blank fields, and single-coupon H-A/H-B rescue trigger before any live-cell work.",Add one anchored lead article to H-B electrochemical/physical stability only after the acellular H-A blank passes for the unanchored low-dose lead. -2,limina_all_dry_zwitterionic_external_v0_1,All-Dry Zwitterionic Gradient External-Fluidic Coating,LIMINA-External-1,parallel_screen,3.5,ready_for_second_wave_scope_lock_measurement_dependency,external_material_phase_a_comparator,requires_zrc_phase_a_failure_mode,"Lock coated-surface placement, fouling/adsorption readouts, extract-blank fields, and ZRC Phase A trigger before procurement or coating outreach.",Run as a coating-on-housing comparator after ZRC-ND Phase A sentinel defines whether adsorption/fouling is the limiting failure mode. -3,limina_alg_gel_pedot_ppy_lowoxidant_v0_1,Alg-Gel PEDOT/PPy Low-Oxidant Biointerface Comparator,LIMINA-Cell-1,watch,3.192,watch_after_primary_gate_data,cell_contact_acellular_witness_coupon,requires_primary_h_a_blank_pass,"Lock material identity, procurement route, source-file classes, and a tiny acellular witness-coupon acceptance table.",Use only after ALG-LAM-PEDOT H-A/H-B establishes a baseline; run as an acellular H-B conductivity/stability comparator with strict extract and shedding fields. -4,limina_zwitterionic_pedot_hydrogel_v0_1,Zwitterionic PEDOT:PSS Hydrated Electrode Hydrogel,LIMINA-Cell-1,watch,3.171,watch_after_primary_gate_data,cell_contact_acellular_witness_coupon,scope_lock_can_start_now,"Lock material identity, procurement route, source-file classes, and a tiny acellular witness-coupon acceptance table.",Do not displace ALG-LAM-PEDOT yet; use as a later comparator if acellular extract and impedance data look better than the alginate-laminin lead. -5,limina_pedot_sgagh_ecm_signal_hydrogel_v0_1,PEDOT:sGAGh Electronic ECM Signal Hydrogel,LIMINA-Cell-1,hold,3.198,hold_until_discovery_gate_failure_resolved,cell_contact_acellular_witness_coupon,scope_lock_can_start_now,"Lock material identity, procurement route, source-file classes, and a tiny acellular witness-coupon acceptance table.","Keep behind ALG-LAM-PEDOT until a small H-A/H-B witness coupon can show clean extract behavior, stable pH/osmolality/conductivity, retained BDNF/laminin signal, and no delamination." -6,limina_hydrogel_actuated_multilayer_3d_mea_v0_1,Hydrogel-Actuated Multilayer 3D Organoid MEA Interface,LIMINA-Cell-1,hold,3.17,hold_until_discovery_gate_failure_resolved,cell_contact_acellular_witness_coupon,scope_lock_can_start_now,"Lock material identity, procurement route, source-file classes, and a tiny acellular witness-coupon acceptance table.",Keep as a device-architecture horizon scan; extract a simplified witness-coupon plan only after the planar ALG-LAM-PEDOT H-A/H-B route has real data. diff --git a/data/limina_second_wave_candidate_queue.json b/data/limina_second_wave_candidate_queue.json deleted file mode 100644 index 272c769..0000000 --- a/data/limina_second_wave_candidate_queue.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "next_commands": [ - "python3 scripts/render_limina_second_wave_candidate_queue.py", - "python3 scripts/run_limina_iteration.py" - ], - "rows": [ - { - "candidate_id": "limina_pda_anchor_alg_lam_pedot_window_v0_1", - "evidence_refs": [ - "pedot_neural_culture_hydrogel_2025", - "pedot_brain_monitoring_2025", - "gelma_pedot_micropatterning_2026", - "neuronal_network_material_biocompatibility_mea_2013" - ], - "gate_failure_count": 0, - "gate_failures": [], - "known_risks": [ - "Primer chemistry may add its own extractables.", - "Localized conductive domains may be harder to fabricate reproducibly.", - "Anchoring can improve stability while reducing softness at the cell interface." - ], - "lane": "LIMINA-Cell-1", - "measurement_dependency": "requires_primary_h_a_blank_pass", - "measurement_lane": "cell_contact_anchor_rescue_coupon", - "name": "PDA-Anchored ALG-LAM-PEDOT Electrode-Window Interphase", - "near_term_test": "Add one anchored lead article to H-B electrochemical/physical stability only after the acellular H-A blank passes for the unanchored low-dose lead.", - "non_claim_boundary": "Second-wave queue rows are planning artifacts only; they do not create measured source-file evidence or material suitability.", - "queue_decision": "ready_for_second_wave_scope_lock_measurement_dependency", - "queue_rank": 1, - "ranking_priority": "parallel_screen", - "risk_count": 3, - "scope_lock_action": "Lock the PDA/primer chemistry, electrode-window mask, extract-blank fields, and single-coupon H-A/H-B rescue trigger before any live-cell work.", - "weighted_score": 3.67 - }, - { - "candidate_id": "limina_all_dry_zwitterionic_external_v0_1", - "evidence_refs": [ - "all_dry_zwitterionic_gradient_2024", - "zwitterionic_membrane_antifouling_2016", - "zwitterionic_cellulose_acetate_hfm_2026", - "organ_chip_perfusion_review_2022" - ], - "gate_failure_count": 0, - "gate_failures": [], - "known_risks": [ - "Coating could change extractables or optical inspection properties.", - "It may not solve protein loss if the MWCO membrane itself dominates adsorption.", - "Not yet validated in CL1-like neuronal medium." - ], - "lane": "LIMINA-External-1", - "measurement_dependency": "requires_zrc_phase_a_failure_mode", - "measurement_lane": "external_material_phase_a_comparator", - "name": "All-Dry Zwitterionic Gradient External-Fluidic Coating", - "near_term_test": "Run as a coating-on-housing comparator after ZRC-ND Phase A sentinel defines whether adsorption/fouling is the limiting failure mode.", - "non_claim_boundary": "Second-wave queue rows are planning artifacts only; they do not create measured source-file evidence or material suitability.", - "queue_decision": "ready_for_second_wave_scope_lock_measurement_dependency", - "queue_rank": 2, - "ranking_priority": "parallel_screen", - "risk_count": 3, - "scope_lock_action": "Lock coated-surface placement, fouling/adsorption readouts, extract-blank fields, and ZRC Phase A trigger before procurement or coating outreach.", - "weighted_score": 3.5 - }, - { - "candidate_id": "limina_alg_gel_pedot_ppy_lowoxidant_v0_1", - "evidence_refs": [ - "alg_gel_pedot_ppy_biointerface_2026", - "gelma_pedot_composite_2018", - "conductive_hydrogels_2025", - "iso_10993_5_cytotoxicity_extract_fda" - ], - "gate_failure_count": 0, - "gate_failures": [], - "known_risks": [ - "Fibroblast cytocompatibility is not a neuronal-network compatibility claim.", - "PPy oxidation chemistry can leave residues that matter in long-lived neural cultures.", - "High conductivity may trade off with optical transparency or softness." - ], - "lane": "LIMINA-Cell-1", - "measurement_dependency": "requires_primary_h_a_blank_pass", - "measurement_lane": "cell_contact_acellular_witness_coupon", - "name": "Alg-Gel PEDOT/PPy Low-Oxidant Biointerface Comparator", - "near_term_test": "Use only after ALG-LAM-PEDOT H-A/H-B establishes a baseline; run as an acellular H-B conductivity/stability comparator with strict extract and shedding fields.", - "non_claim_boundary": "Second-wave queue rows are planning artifacts only; they do not create measured source-file evidence or material suitability.", - "queue_decision": "watch_after_primary_gate_data", - "queue_rank": 3, - "ranking_priority": "watch", - "risk_count": 3, - "scope_lock_action": "Lock material identity, procurement route, source-file classes, and a tiny acellular witness-coupon acceptance table.", - "weighted_score": 3.192 - }, - { - "candidate_id": "limina_zwitterionic_pedot_hydrogel_v0_1", - "evidence_refs": [ - "zwitterionic_pedot_eeg_hydrogel_2025", - "pedot_brain_monitoring_2025", - "pedot_bio_sei_2026", - "conductive_hydrogels_2025" - ], - "gate_failure_count": 0, - "gate_failures": [], - "known_risks": [ - "In vivo electrode evidence does not prove in vitro neuronal network compatibility.", - "Zwitterionic monomers and crosslinkers can create new leachable risks.", - "Fabrication complexity may slow the first suitability claim." - ], - "lane": "LIMINA-Cell-1", - "measurement_dependency": "scope_lock_can_start_now", - "measurement_lane": "cell_contact_acellular_witness_coupon", - "name": "Zwitterionic PEDOT:PSS Hydrated Electrode Hydrogel", - "near_term_test": "Do not displace ALG-LAM-PEDOT yet; use as a later comparator if acellular extract and impedance data look better than the alginate-laminin lead.", - "non_claim_boundary": "Second-wave queue rows are planning artifacts only; they do not create measured source-file evidence or material suitability.", - "queue_decision": "watch_after_primary_gate_data", - "queue_rank": 4, - "ranking_priority": "watch", - "risk_count": 3, - "scope_lock_action": "Lock material identity, procurement route, source-file classes, and a tiny acellular witness-coupon acceptance table.", - "weighted_score": 3.171 - }, - { - "candidate_id": "limina_pedot_sgagh_ecm_signal_hydrogel_v0_1", - "evidence_refs": [ - "pedot_sgagh_electronic_ecm_2026", - "pedot_bio_sei_2026", - "conductive_hydrogels_2025", - "hydrogel_neural_tissue_2020" - ], - "gate_failure_count": 1, - "gate_failures": [ - "measurement_accessibility below 3: The next claim candidate must be testable with near-term coupon, medium, or simple material measurements." - ], - "known_risks": [ - "High novelty comes with synthesis, procurement, and reproducibility uncertainty.", - "Growth-factor binding is attractive but could perturb neuronal differentiation or maturation in unwanted directions.", - "No direct long-duration human neuronal-network compatibility evidence yet." - ], - "lane": "LIMINA-Cell-1", - "measurement_dependency": "scope_lock_can_start_now", - "measurement_lane": "cell_contact_acellular_witness_coupon", - "name": "PEDOT:sGAGh Electronic ECM Signal Hydrogel", - "near_term_test": "Keep behind ALG-LAM-PEDOT until a small H-A/H-B witness coupon can show clean extract behavior, stable pH/osmolality/conductivity, retained BDNF/laminin signal, and no delamination.", - "non_claim_boundary": "Second-wave queue rows are planning artifacts only; they do not create measured source-file evidence or material suitability.", - "queue_decision": "hold_until_discovery_gate_failure_resolved", - "queue_rank": 5, - "ranking_priority": "hold", - "risk_count": 3, - "scope_lock_action": "Lock material identity, procurement route, source-file classes, and a tiny acellular witness-coupon acceptance table.", - "weighted_score": 3.198 - }, - { - "candidate_id": "limina_hydrogel_actuated_multilayer_3d_mea_v0_1", - "evidence_refs": [ - "mlmea_organoid_depth_interface_2026", - "eflower_hydrogel_actuated_3d_mea_2024", - "shape_conformal_organoid_framework_2026", - "neuronal_network_material_biocompatibility_mea_2013" - ], - "gate_failure_count": 1, - "gate_failures": [ - "measurement_accessibility below 3: The next claim candidate must be testable with near-term coupon, medium, or simple material measurements." - ], - "known_risks": [ - "Fabrication is much harder than a planar witness coupon.", - "Pt-black, PDMS, and actuator hydrogels each need extractables, adsorption, and stability checks.", - "Organoid electrophysiology evidence does not directly prove compatibility with the current CL1-like planar path." - ], - "lane": "LIMINA-Cell-1", - "measurement_dependency": "scope_lock_can_start_now", - "measurement_lane": "cell_contact_acellular_witness_coupon", - "name": "Hydrogel-Actuated Multilayer 3D Organoid MEA Interface", - "near_term_test": "Keep as a device-architecture horizon scan; extract a simplified witness-coupon plan only after the planar ALG-LAM-PEDOT H-A/H-B route has real data.", - "non_claim_boundary": "Second-wave queue rows are planning artifacts only; they do not create measured source-file evidence or material suitability.", - "queue_decision": "hold_until_discovery_gate_failure_resolved", - "queue_rank": 6, - "ranking_priority": "hold", - "risk_count": 3, - "scope_lock_action": "Lock material identity, procurement route, source-file classes, and a tiny acellular witness-coupon acceptance table.", - "weighted_score": 3.17 - } - ], - "status": "second_wave_candidate_queue_ready_while_first_wave_waits", - "summary": { - "active_discovery_ids_excluded": [ - "limina_alg_lam_pedot_lowdose_v0_2", - "limina_nhi_pedot_laminin_v0_1", - "limina_zrc_nd_v0_1" - ], - "first_wave_confirmations": 0, - "first_wave_failed_commands": 0, - "first_wave_replies": 0, - "hold_rows": 2, - "queue_rows": 6, - "ready_scope_lock_rows": 2, - "watch_rows": 2 - } -} \ No newline at end of file diff --git a/data/limina_second_wave_scope_lock_pack.json b/data/limina_second_wave_scope_lock_pack.json deleted file mode 100644 index 2ff5a52..0000000 --- a/data/limina_second_wave_scope_lock_pack.json +++ /dev/null @@ -1,158 +0,0 @@ -{ - "candidates": [ - { - "candidate_id": "limina_pda_anchor_alg_lam_pedot_window_v0_1", - "evidence_refs": [ - "pedot_neural_culture_hydrogel_2025", - "pedot_brain_monitoring_2025", - "gelma_pedot_micropatterning_2026", - "neuronal_network_material_biocompatibility_mea_2013" - ], - "measurement_dependency": "requires_primary_h_a_blank_pass", - "measurement_lane": "cell_contact_anchor_rescue_coupon", - "name": "PDA-Anchored ALG-LAM-PEDOT Electrode-Window Interphase", - "near_term_test": "Add one anchored lead article to H-B electrochemical/physical stability only after the acellular H-A blank passes for the unanchored low-dose lead.", - "ranking_priority": "parallel_screen", - "scope_lock_action": "Lock the PDA/primer chemistry, electrode-window mask, extract-blank fields, and single-coupon H-A/H-B rescue trigger before any live-cell work.", - "task_ids": [ - "limina_pda_anchor_alg_lam_pedot_window_v0_1__01_lock_primer_and_electrode_window_identity", - "limina_pda_anchor_alg_lam_pedot_window_v0_1__02_define_primer_extract_blank", - "limina_pda_anchor_alg_lam_pedot_window_v0_1__03_bind_h_b_rescue_electrochemical_fields", - "limina_pda_anchor_alg_lam_pedot_window_v0_1__04_record_rescue_trigger_boundary" - ], - "weighted_score": 3.67 - }, - { - "candidate_id": "limina_all_dry_zwitterionic_external_v0_1", - "evidence_refs": [ - "all_dry_zwitterionic_gradient_2024", - "zwitterionic_membrane_antifouling_2016", - "zwitterionic_cellulose_acetate_hfm_2026", - "organ_chip_perfusion_review_2022" - ], - "measurement_dependency": "requires_zrc_phase_a_failure_mode", - "measurement_lane": "external_material_phase_a_comparator", - "name": "All-Dry Zwitterionic Gradient External-Fluidic Coating", - "near_term_test": "Run as a coating-on-housing comparator after ZRC-ND Phase A sentinel defines whether adsorption/fouling is the limiting failure mode.", - "ranking_priority": "parallel_screen", - "scope_lock_action": "Lock coated-surface placement, fouling/adsorption readouts, extract-blank fields, and ZRC Phase A trigger before procurement or coating outreach.", - "task_ids": [ - "limina_all_dry_zwitterionic_external_v0_1__01_lock_coated_surface_placement", - "limina_all_dry_zwitterionic_external_v0_1__02_define_extract_and_medium_integrity_blank", - "limina_all_dry_zwitterionic_external_v0_1__03_bind_fouling_and_protein_recovery_readouts", - "limina_all_dry_zwitterionic_external_v0_1__04_record_external_branch_trigger_boundary" - ], - "weighted_score": 3.5 - } - ], - "next_commands": [ - "python3 scripts/render_limina_second_wave_scope_lock_pack.py", - "python3 scripts/run_limina_iteration.py" - ], - "status": "second_wave_scope_lock_pack_ready", - "summary": { - "claim_evidence_created": false, - "queue_status": "second_wave_candidate_queue_ready_while_first_wave_waits", - "ready_candidate_count": 2, - "source_file_class_count": 5, - "task_count": 8 - }, - "tasks": [ - { - "acceptance_criterion": "Primer chemistry, MEA substrate, mask/window geometry, and hydrogel article identity are fixed before any measurement package is released.", - "candidate_id": "limina_pda_anchor_alg_lam_pedot_window_v0_1", - "claim_boundary": "Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable.", - "dependency": "requires_primary_h_a_blank_pass", - "route": "desk_review", - "source_file_class": "supplier_or_build_record", - "task_id": "limina_pda_anchor_alg_lam_pedot_window_v0_1__01_lock_primer_and_electrode_window_identity", - "task_order": 1, - "task_type": "scope_lock", - "title": "Lock primer and electrode-window identity" - }, - { - "acceptance_criterion": "Blank article has pH, osmolality, conductivity, visible shedding, swelling, delamination, and transparency fields mapped to source files.", - "candidate_id": "limina_pda_anchor_alg_lam_pedot_window_v0_1", - "claim_boundary": "Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable.", - "dependency": "requires_primary_h_a_blank_pass", - "route": "h_a_rescue_prereq", - "source_file_class": "bench_or_chain_of_custody_record", - "task_id": "limina_pda_anchor_alg_lam_pedot_window_v0_1__02_define_primer_extract_blank", - "task_order": 2, - "task_type": "measurement_plan", - "title": "Define primer extract blank" - }, - { - "acceptance_criterion": "1 kHz impedance, charge-storage proxy, impedance drift, and window-occlusion notes are listed as conditional H-B fields.", - "candidate_id": "limina_pda_anchor_alg_lam_pedot_window_v0_1", - "claim_boundary": "Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable.", - "dependency": "requires_primary_h_a_blank_pass", - "route": "h_b_conditional", - "source_file_class": "electrochemical_or_mea_export", - "task_id": "limina_pda_anchor_alg_lam_pedot_window_v0_1__03_bind_h_b_rescue_electrochemical_fields", - "task_order": 3, - "task_type": "measurement_plan", - "title": "Bind H-B rescue electrochemical fields" - }, - { - "acceptance_criterion": "Candidate can only advance if primary H-A is clean enough and measured failure mode points to delamination, adhesion, or window instability.", - "candidate_id": "limina_pda_anchor_alg_lam_pedot_window_v0_1", - "claim_boundary": "Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable.", - "dependency": "requires_primary_h_a_blank_pass", - "route": "portfolio", - "source_file_class": "bench_or_chain_of_custody_record", - "task_id": "limina_pda_anchor_alg_lam_pedot_window_v0_1__04_record_rescue_trigger_boundary", - "task_order": 4, - "task_type": "decision_gate", - "title": "Record rescue trigger boundary" - }, - { - "acceptance_criterion": "Substrate, coating location, uncoated comparator, and membrane/housing exposure boundary are fixed before outreach or purchase.", - "candidate_id": "limina_all_dry_zwitterionic_external_v0_1", - "claim_boundary": "Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable.", - "dependency": "requires_zrc_phase_a_failure_mode", - "route": "desk_review", - "source_file_class": "supplier_or_build_record", - "task_id": "limina_all_dry_zwitterionic_external_v0_1__01_lock_coated_surface_placement", - "task_order": 1, - "task_type": "scope_lock", - "title": "Lock coated surface placement" - }, - { - "acceptance_criterion": "pH, osmolality, conductivity, turbidity/visible residue, and extractable-risk notes are mapped to source-backed fields.", - "candidate_id": "limina_all_dry_zwitterionic_external_v0_1", - "claim_boundary": "Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable.", - "dependency": "requires_zrc_phase_a_failure_mode", - "route": "zrc_phase_a_comparator", - "source_file_class": "pH_meter_export_or_photo", - "task_id": "limina_all_dry_zwitterionic_external_v0_1__02_define_extract_and_medium_integrity_blank", - "task_order": 2, - "task_type": "measurement_plan", - "title": "Define extract and medium integrity blank" - }, - { - "acceptance_criterion": "BSA or albumin adsorption, BDNF/proxy recovery, flow resistance drift, and post-soak inspection are listed as required comparator fields.", - "candidate_id": "limina_all_dry_zwitterionic_external_v0_1", - "claim_boundary": "Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable.", - "dependency": "requires_zrc_phase_a_failure_mode", - "route": "zrc_phase_a_comparator", - "source_file_class": "biochemical_or_plate_reader_export", - "task_id": "limina_all_dry_zwitterionic_external_v0_1__03_bind_fouling_and_protein_recovery_readouts", - "task_order": 3, - "task_type": "measurement_plan", - "title": "Bind fouling and protein recovery readouts" - }, - { - "acceptance_criterion": "Candidate can only advance if ZRC Phase A real data show adsorption, fouling, or housing-surface loss as a limiting failure mode.", - "candidate_id": "limina_all_dry_zwitterionic_external_v0_1", - "claim_boundary": "Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable.", - "dependency": "requires_zrc_phase_a_failure_mode", - "route": "portfolio", - "source_file_class": "bench_or_chain_of_custody_record", - "task_id": "limina_all_dry_zwitterionic_external_v0_1__04_record_external_branch_trigger_boundary", - "task_order": 4, - "task_type": "decision_gate", - "title": "Record external-branch trigger boundary" - } - ] -} \ No newline at end of file diff --git a/data/limina_second_wave_scope_lock_tasks.csv b/data/limina_second_wave_scope_lock_tasks.csv deleted file mode 100644 index 21c937d..0000000 --- a/data/limina_second_wave_scope_lock_tasks.csv +++ /dev/null @@ -1,9 +0,0 @@ -task_id,candidate_id,task_order,title,task_type,route,dependency,source_file_class,acceptance_criterion,claim_boundary -limina_pda_anchor_alg_lam_pedot_window_v0_1__01_lock_primer_and_electrode_window_identity,limina_pda_anchor_alg_lam_pedot_window_v0_1,1,Lock primer and electrode-window identity,scope_lock,desk_review,requires_primary_h_a_blank_pass,supplier_or_build_record,"Primer chemistry, MEA substrate, mask/window geometry, and hydrogel article identity are fixed before any measurement package is released.",Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable. -limina_pda_anchor_alg_lam_pedot_window_v0_1__02_define_primer_extract_blank,limina_pda_anchor_alg_lam_pedot_window_v0_1,2,Define primer extract blank,measurement_plan,h_a_rescue_prereq,requires_primary_h_a_blank_pass,bench_or_chain_of_custody_record,"Blank article has pH, osmolality, conductivity, visible shedding, swelling, delamination, and transparency fields mapped to source files.",Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable. -limina_pda_anchor_alg_lam_pedot_window_v0_1__03_bind_h_b_rescue_electrochemical_fields,limina_pda_anchor_alg_lam_pedot_window_v0_1,3,Bind H-B rescue electrochemical fields,measurement_plan,h_b_conditional,requires_primary_h_a_blank_pass,electrochemical_or_mea_export,"1 kHz impedance, charge-storage proxy, impedance drift, and window-occlusion notes are listed as conditional H-B fields.",Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable. -limina_pda_anchor_alg_lam_pedot_window_v0_1__04_record_rescue_trigger_boundary,limina_pda_anchor_alg_lam_pedot_window_v0_1,4,Record rescue trigger boundary,decision_gate,portfolio,requires_primary_h_a_blank_pass,bench_or_chain_of_custody_record,"Candidate can only advance if primary H-A is clean enough and measured failure mode points to delamination, adhesion, or window instability.",Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable. -limina_all_dry_zwitterionic_external_v0_1__01_lock_coated_surface_placement,limina_all_dry_zwitterionic_external_v0_1,1,Lock coated surface placement,scope_lock,desk_review,requires_zrc_phase_a_failure_mode,supplier_or_build_record,"Substrate, coating location, uncoated comparator, and membrane/housing exposure boundary are fixed before outreach or purchase.",Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable. -limina_all_dry_zwitterionic_external_v0_1__02_define_extract_and_medium_integrity_blank,limina_all_dry_zwitterionic_external_v0_1,2,Define extract and medium integrity blank,measurement_plan,zrc_phase_a_comparator,requires_zrc_phase_a_failure_mode,pH_meter_export_or_photo,"pH, osmolality, conductivity, turbidity/visible residue, and extractable-risk notes are mapped to source-backed fields.",Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable. -limina_all_dry_zwitterionic_external_v0_1__03_bind_fouling_and_protein_recovery_readouts,limina_all_dry_zwitterionic_external_v0_1,3,Bind fouling and protein recovery readouts,measurement_plan,zrc_phase_a_comparator,requires_zrc_phase_a_failure_mode,biochemical_or_plate_reader_export,"BSA or albumin adsorption, BDNF/proxy recovery, flow resistance drift, and post-soak inspection are listed as required comparator fields.",Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable. -limina_all_dry_zwitterionic_external_v0_1__04_record_external_branch_trigger_boundary,limina_all_dry_zwitterionic_external_v0_1,4,Record external-branch trigger boundary,decision_gate,portfolio,requires_zrc_phase_a_failure_mode,bench_or_chain_of_custody_record,"Candidate can only advance if ZRC Phase A real data show adsorption, fouling, or housing-surface loss as a limiting failure mode.",Scope-lock tasks define future source-backed measurements only; they are not measured evidence and cannot make a candidate suitable. diff --git a/data/limina_smoke_capture_preflight.json b/data/limina_smoke_capture_preflight.json deleted file mode 100644 index 7e432bb..0000000 --- a/data/limina_smoke_capture_preflight.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "boundary": "Preflight checks local capture entry quality and source-file existence only. It does not create measured evidence or a material suitability claim.", - "filled_task_count": 0, - "inputs": { - "h_a_local": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "h_a_outsource": "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "instrument_register": "data/limina_local_instrument_register_template.csv", - "source_manifest": "data/limina_source_file_manifest.json", - "tasks": "data/limina_smoke_capture_tasks.csv", - "zrc_local": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "zrc_outsource": "data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv" - }, - "issue_counts": { - "error": 0, - "warning": 0 - }, - "issues": [], - "pending_task_count": 172, - "preflight_ready": false, - "source_file_policy": { - "allowed_root_count": 12, - "expected_source_class_count": 12, - "manifest": "data/limina_source_file_manifest.json", - "must_exist": true, - "status": "source_file_manifest_ready" - }, - "status": "local_capture_preflight_awaiting_entries", - "task_count": 172, - "template_summaries": { - "h_a_local": { - "filled": 0, - "pending": 102, - "tasks": 102 - }, - "h_a_outsource": { - "filled": 0, - "pending": 12, - "tasks": 12 - }, - "zrc_local": { - "filled": 0, - "pending": 50, - "tasks": 50 - }, - "zrc_outsource": { - "filled": 0, - "pending": 8, - "tasks": 8 - } - } -} \ No newline at end of file diff --git a/data/limina_smoke_capture_tasks.csv b/data/limina_smoke_capture_tasks.csv deleted file mode 100644 index 190628f..0000000 --- a/data/limina_smoke_capture_tasks.csv +++ /dev/null @@ -1,173 +0,0 @@ -task_id,branch,route,run_id,sample_event,target_field,wide_field,unit,instrument_class,entry_file,merge_command,source_file_requirement,value_required,provenance_required,notes -LC-0001,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,date,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0002,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0003,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0004,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0005,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0006,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0007,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0008,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0009,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0010,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0011,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0012,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0013,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0014,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0015,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0016,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0017,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0018,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0019,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0020,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,date,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0021,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0022,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0023,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0024,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0025,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0026,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0027,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0028,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0029,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0030,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0031,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0032,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0033,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0034,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0035,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0036,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0037,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0038,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0058,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,date,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0059,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0060,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0061,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0062,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0063,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0064,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0065,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0066,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0067,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0068,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0069,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0070,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0071,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0072,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0073,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0074,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0075,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0076,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0077,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,date,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0078,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0079,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0080,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0081,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0082,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0083,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0084,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0085,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0086,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0087,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0088,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0089,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0090,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0091,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0092,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0093,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0094,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0095,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0115,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,date,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0116,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0117,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0118,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0119,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0120,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0121,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0122,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0123,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0124,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0125,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0126,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0127,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0128,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0129,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0130,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0131,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0132,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0133,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0134,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0135,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0136,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0137,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0138,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Build sheet, sample label, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0139,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Supplier documentation, build sheet, or sample label record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0140,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Recipe record, supplier CoA, coating log, or build sheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0141,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"SOP identifier, batch record, or chain-of-custody record.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0142,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,pH_initial,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0143,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0144,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0145,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,pH_final,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0146,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --base data/nhi_pedot_h_a_runs_active.csv --raw data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv --out data/nhi_pedot_h_a_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0147,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0148,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0149,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Time-stamped image or microscopy/stereoscope export.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0150,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0151,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Image plus scoring worksheet or vendor image-analysis report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0152,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py --raw data/nhi_pedot_h_a_smoke_local_capture_template.csv,Image-analysis export or vendor microscopy report.,yes,measured_at/operator_or_agent/source_file plus instrument_id for measured fields,long_form_h_a_raw_entry;smoke_tranche_not_claim_evidence -LC-0293,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,conductivity_final_mS_cm,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0294,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,conductivity_initial_mS_cm,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0295,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,exposure_time_h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,Incubation start/stop log or vendor report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0296,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,initial_volume_ml,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,Pipetting worksheet or balance/volume log.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0297,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,pH_final,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0298,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,pH_initial,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0299,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0300,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0301,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,osmolality_final_mOsm_kg,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0302,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,osmolality_initial_mOsm_kg,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0303,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,date,date,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0304,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,medium_lot,medium_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0305,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,medium_name,medium_name,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0306,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,membrane_area_cm2,membrane_area_cm2,cm2,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Build drawing, measurement worksheet, or supplier documentation.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0307,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,membrane_lot,membrane_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Supplier label, CoA, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0308,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,prefilter_lot,prefilter_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Supplier label, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0309,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,conductivity_final_mS_cm,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0310,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,conductivity_initial_mS_cm,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0311,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,exposure_time_h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,Incubation start/stop log or vendor report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0312,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,initial_volume_ml,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,Pipetting worksheet or balance/volume log.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0313,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,pH_final,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0314,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,pH_initial,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0315,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0316,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0317,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,osmolality_final_mOsm_kg,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0318,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,osmolality_initial_mOsm_kg,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0319,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,date,date,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0320,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,medium_lot,medium_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0321,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,medium_name,medium_name,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0322,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,membrane_area_cm2,membrane_area_cm2,cm2,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Build drawing, measurement worksheet, or supplier documentation.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0323,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,membrane_lot,membrane_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Supplier label, CoA, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0324,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,prefilter_lot,prefilter_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Supplier label, build sheet, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0325,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,conductivity_final_mS_cm,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0326,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,conductivity_initial_mS_cm,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0327,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,exposure_time_h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,Incubation start/stop log or vendor report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0328,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,initial_volume_ml,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,Pipetting worksheet or balance/volume log.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0329,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,pH_final,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0330,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,pH_initial,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0331,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0332,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0333,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-0h,0 h,osmolality_final_mOsm_kg,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0334,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-0h,0 h,osmolality_initial_mOsm_kg,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0335,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-0h,0 h,date,date,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0336,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-0h,0 h,medium_lot,medium_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0337,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-0h,0 h,medium_name,medium_name,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0338,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,conductivity_final_mS_cm,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0339,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,conductivity_initial_mS_cm,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Conductivity meter export, calibration log, or display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0340,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,exposure_time_h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,Incubation start/stop log or vendor report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0341,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,initial_volume_ml,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,Pipetting worksheet or balance/volume log.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0342,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,pH_final,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0343,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,pH_initial,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Meter export, calibration log, or time-stamped display photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0344,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,temperature_c,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Incubator log, probe export, or time-stamped photo.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0345,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,visible_precipitate,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,Time-stamped image or vendor inspection report.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0346,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-24h,24 h,osmolality_final_mOsm_kg,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0347,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-24h,24 h,osmolality_initial_mOsm_kg,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,python3 scripts/merge_zrc_nd_measurements.py --base data/zrc_nd_validation_runs_active.csv --measurements data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv --out data/zrc_nd_validation_runs_active.csv,Osmometer report/export reconciled to run_id.,yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0348,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-24h,24 h,date,date,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0349,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-24h,24 h,medium_lot,medium_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Lot CoA, bottle label image, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence -LC-0350,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-24h,24 h,medium_name,medium_name,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_smoke_local_capture_template.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",yes,operator_or_agent/date/source_file plus instrument_id if captured outside vendor report,wide_zrc_phase_a_entry;smoke_tranche_not_claim_evidence diff --git a/data/limina_smoke_capture_tranche.json b/data/limina_smoke_capture_tranche.json deleted file mode 100644 index e9f698c..0000000 --- a/data/limina_smoke_capture_tranche.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "boundary": "Passing this smoke tranche only proves the data pipeline and may reveal early red flags. It cannot satisfy the final material-discovery objective.", - "generated_artifacts": { - "h_a_local_capture_template": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "h_a_osmolality_outsource_template": "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "tasks": "data/limina_smoke_capture_tasks.csv", - "zrc_local_capture_template": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "zrc_osmolality_outsource_template": "data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv" - }, - "preflight_command": "python3 scripts/preflight_limina_local_capture.py --tasks data/limina_smoke_capture_tasks.csv --h-a-local data/nhi_pedot_h_a_smoke_local_capture_template.csv --h-a-outsource data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv --zrc-local data/zrc_nd_phase_a_smoke_local_capture_template.csv --zrc-outsource data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv --json-out data/limina_smoke_capture_preflight.json --report reports/limina_smoke_capture_preflight.md", - "purpose": "Create the smallest useful real-measurement tranche for validating capture, preflight, merge, and early red-flag detection.", - "smoke_scope": { - "claim_boundary": "This tranche is intentionally incomplete for H-A/ZRC suitability claims.", - "h_a_run_ids": [ - "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - ], - "zrc_run_ids": [ - "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "ZRCND-A-no_module_static_control-R1-0h", - "ZRCND-A-no_module_static_control-R1-24h" - ] - }, - "status": "smoke_capture_tranche_ready", - "summary": { - "branch_counts": { - "NHI-PEDOT H-A": 114, - "ZRC-ND Phase A": 58 - }, - "h_a_local_entry_rows": 102, - "h_a_outsource_entry_rows": 12, - "h_a_smoke_run_count": 6, - "local_or_record_tasks": 152, - "outsourced_preferred_tasks": 20, - "route_counts": { - "inhouse_ready": 92, - "outsourced_preferred": 20, - "supplier_or_build_record": 60 - }, - "task_count": 172, - "zrc_local_template_rows": 4, - "zrc_outsource_template_rows": 4, - "zrc_smoke_run_count": 4 - } -} \ No newline at end of file diff --git a/data/limina_smoke_entry_apply.json b/data/limina_smoke_entry_apply.json deleted file mode 100644 index fd1059e..0000000 --- a/data/limina_smoke_entry_apply.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "boundary": "Applying an entry sheet only copies user-entered values into smoke templates. Downstream preflight, rehearsal, QC, gates, and claim audit still control evidence status.", - "inputs": { - "queue": "data/limina_smoke_execution_queue.json", - "sheet": "data/limina_smoke_entry_sheet.csv", - "source_manifest": "data/limina_source_file_manifest.json" - }, - "issues": [], - "status": "smoke_entry_apply_no_filled_rows", - "summary": { - "applied_values": 0, - "error_count": 0, - "sheet_rows": 172, - "skipped_apply_no_rows": 0, - "skipped_blank_rows": 172, - "skipped_invalid_rows": 0, - "skipped_missing_target_rows": 0, - "warning_count": 0 - }, - "updated_templates": [] -} \ No newline at end of file diff --git a/data/limina_smoke_entry_sheet.csv b/data/limina_smoke_entry_sheet.csv deleted file mode 100644 index 69d61fd..0000000 --- a/data/limina_smoke_entry_sheet.csv +++ /dev/null @@ -1,173 +0,0 @@ -queue_id,apply,value,measured_at,operator_or_agent,instrument_id,source_file,notes,priority,batch,branch,route,run_id,sample_event,target_field,unit,instrument_class,entry_file,row_locator,source_class,source_file_requirement,recommended_source_file,capture_instruction,current_value_status,provenance_status -SQ-0001,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|date,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,"Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0002,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|medium_name,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0003,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|medium_lot,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0004,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|temperature_c,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,"Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0005,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|mea_coupon_id,supplier_or_build_record,"Build sheet, sample label, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0006,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|electrode_material,supplier_or_build_record,"Supplier documentation, build sheet, or sample label record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,"Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0007,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|laminin_or_peptide_density,supplier_or_build_record,"Recipe record, supplier CoA, coating log, or build sheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0008,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|sterilization_or_aseptic_protocol,supplier_or_build_record,"SOP identifier, batch record, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0009,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|initial|pH,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0010,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|initial|osmolality,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0011,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|initial|conductivity,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0012,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|final|pH,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0013,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|final|osmolality,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0014,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|final|conductivity,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0015,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|visible_precipitate,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0016,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|visible_shedding,image_or_scoring_worksheet,Time-stamped image or microscopy/stereoscope export.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0017,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|swelling_fraction,swelling_dimension_or_mass_worksheet,"Image analysis export, caliper log, or mass/dimension worksheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0018,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|delamination_score,image_or_scoring_worksheet,Image plus scoring worksheet or vendor image-analysis report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0019,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|optical_transparency_fraction,image_or_scoring_worksheet,Image-analysis export or vendor microscopy report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0020,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|date,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,"Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0021,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|medium_name,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0022,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|medium_lot,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0023,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|temperature_c,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,"Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0024,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|mea_coupon_id,supplier_or_build_record,"Build sheet, sample label, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0025,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|electrode_material,supplier_or_build_record,"Supplier documentation, build sheet, or sample label record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,"Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0026,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|laminin_or_peptide_density,supplier_or_build_record,"Recipe record, supplier CoA, coating log, or build sheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0027,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|sterilization_or_aseptic_protocol,supplier_or_build_record,"SOP identifier, batch record, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0028,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|initial|pH,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0029,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|initial|osmolality,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0030,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|initial|conductivity,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0031,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|final|pH,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0032,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|final|osmolality,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0033,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|final|conductivity,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0034,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|visible_precipitate,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0035,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|visible_shedding,image_or_scoring_worksheet,Time-stamped image or microscopy/stereoscope export.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0036,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|swelling_fraction,swelling_dimension_or_mass_worksheet,"Image analysis export, caliper log, or mass/dimension worksheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0037,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|delamination_score,image_or_scoring_worksheet,Image plus scoring worksheet or vendor image-analysis report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0038,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|optical_transparency_fraction,image_or_scoring_worksheet,Image-analysis export or vendor microscopy report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0039,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|date,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,"Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0040,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|medium_name,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0041,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|medium_lot,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0042,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|temperature_c,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,"Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0043,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|mea_coupon_id,supplier_or_build_record,"Build sheet, sample label, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0044,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|electrode_material,supplier_or_build_record,"Supplier documentation, build sheet, or sample label record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,"Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0045,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|laminin_or_peptide_density,supplier_or_build_record,"Recipe record, supplier CoA, coating log, or build sheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0046,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|sterilization_or_aseptic_protocol,supplier_or_build_record,"SOP identifier, batch record, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0047,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|initial|pH,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0048,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|initial|osmolality,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0049,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|initial|conductivity,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0050,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|final|pH,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0051,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|final|osmolality,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0052,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|final|conductivity,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0053,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|visible_precipitate,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0054,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|visible_shedding,image_or_scoring_worksheet,Time-stamped image or microscopy/stereoscope export.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0055,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|swelling_fraction,swelling_dimension_or_mass_worksheet,"Image analysis export, caliper log, or mass/dimension worksheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0056,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|delamination_score,image_or_scoring_worksheet,Image plus scoring worksheet or vendor image-analysis report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0057,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|optical_transparency_fraction,image_or_scoring_worksheet,Image-analysis export or vendor microscopy report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0058,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|date,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,"Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0059,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|medium_name,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0060,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|medium_lot,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0061,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|temperature_c,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,"Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0062,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|mea_coupon_id,supplier_or_build_record,"Build sheet, sample label, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0063,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|electrode_material,supplier_or_build_record,"Supplier documentation, build sheet, or sample label record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,"Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0064,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|laminin_or_peptide_density,supplier_or_build_record,"Recipe record, supplier CoA, coating log, or build sheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0065,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|sterilization_or_aseptic_protocol,supplier_or_build_record,"SOP identifier, batch record, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0066,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|initial|pH,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0067,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|initial|osmolality,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0068,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|initial|conductivity,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0069,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|final|pH,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0070,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|final|osmolality,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0071,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|final|conductivity,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0072,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|visible_precipitate,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0073,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|visible_shedding,image_or_scoring_worksheet,Time-stamped image or microscopy/stereoscope export.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0074,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|swelling_fraction,swelling_dimension_or_mass_worksheet,"Image analysis export, caliper log, or mass/dimension worksheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0075,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|delamination_score,image_or_scoring_worksheet,Image plus scoring worksheet or vendor image-analysis report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0076,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|optical_transparency_fraction,image_or_scoring_worksheet,Image-analysis export or vendor microscopy report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0077,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|date,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,"Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0078,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|medium_name,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0079,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|medium_lot,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0080,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|temperature_c,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,"Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0081,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|mea_coupon_id,supplier_or_build_record,"Build sheet, sample label, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0082,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|electrode_material,supplier_or_build_record,"Supplier documentation, build sheet, or sample label record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,"Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0083,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|laminin_or_peptide_density,supplier_or_build_record,"Recipe record, supplier CoA, coating log, or build sheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0084,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|sterilization_or_aseptic_protocol,supplier_or_build_record,"SOP identifier, batch record, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0085,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|initial|pH,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0086,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|initial|osmolality,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0087,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|initial|conductivity,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0088,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|final|pH,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0089,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|final|osmolality,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0090,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|final|conductivity,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0091,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|visible_precipitate,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0092,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|visible_shedding,image_or_scoring_worksheet,Time-stamped image or microscopy/stereoscope export.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0093,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|swelling_fraction,swelling_dimension_or_mass_worksheet,"Image analysis export, caliper log, or mass/dimension worksheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0094,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|delamination_score,image_or_scoring_worksheet,Image plus scoring worksheet or vendor image-analysis report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0095,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|optical_transparency_fraction,image_or_scoring_worksheet,Image-analysis export or vendor microscopy report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0096,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|date,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,"Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0097,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|medium_name,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0098,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|medium_lot,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0099,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|temperature_c,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,"Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0100,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|mea_coupon_id,supplier_or_build_record,"Build sheet, sample label, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0101,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|electrode_material,supplier_or_build_record,"Supplier documentation, build sheet, or sample label record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,"Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0102,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|laminin_or_peptide_density,supplier_or_build_record,"Recipe record, supplier CoA, coating log, or build sheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0103,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|sterilization_or_aseptic_protocol,supplier_or_build_record,"SOP identifier, batch record, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0104,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|initial|pH,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0105,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|initial|osmolality,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0106,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|initial|conductivity,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0107,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|final|pH,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0108,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|final|osmolality,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0109,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|final|conductivity,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0110,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|visible_precipitate,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0111,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|visible_shedding,image_or_scoring_worksheet,Time-stamped image or microscopy/stereoscope export.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0112,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|swelling_fraction,swelling_dimension_or_mass_worksheet,"Image analysis export, caliper log, or mass/dimension worksheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0113,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|delamination_score,image_or_scoring_worksheet,Image plus scoring worksheet or vendor image-analysis report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0114,yes,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|optical_transparency_fraction,image_or_scoring_worksheet,Image-analysis export or vendor microscopy report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0115,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|conductivity_final_mS_cm,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0116,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|conductivity_initial_mS_cm,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0117,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_exposure_time_h_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|exposure_time_h,bench_or_chain_of_custody_record,Incubation start/stop log or vendor report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_exposure_time_h_bench_or_chain_of_custody_record.csv,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0118,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|initial_volume_ml,swelling_dimension_or_mass_worksheet,Pipetting worksheet or balance/volume log.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0119,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_pH_final_pH_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|pH_final,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_pH_final_pH_meter_export_or_photo.csv,Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0120,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_pH_initial_pH_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|pH_initial,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_pH_initial_pH_meter_export_or_photo.csv,Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0121,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_temperature_c_temperature_or_incubator_log.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|temperature_c,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_temperature_c_temperature_or_incubator_log.csv,Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0122,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_visible_precipitate_image_or_scoring_worksheet.png,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|visible_precipitate,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_visible_precipitate_image_or_scoring_worksheet.png,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0123,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|osmolality_final_mOsm_kg,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0124,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|osmolality_initial_mOsm_kg,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0125,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_date_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,date,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|date,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_date_bench_or_chain_of_custody_record.csv,Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0126,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_medium_lot_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,medium_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|medium_lot,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_medium_lot_bench_or_chain_of_custody_record.csv,Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0127,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_medium_name_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,medium_name,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|medium_name,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_medium_name_bench_or_chain_of_custody_record.csv,Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0128,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_membrane_area_cm2_swelling_dimension_or_mass_worksheet.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,membrane_area_cm2,cm2,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|membrane_area_cm2,swelling_dimension_or_mass_worksheet,"Build drawing, measurement worksheet, or supplier documentation.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_membrane_area_cm2_swelling_dimension_or_mass_worksheet.csv,Capture membrane_area_cm2 with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0129,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_membrane_lot_supplier_or_build_record.pdf,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,membrane_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|membrane_lot,supplier_or_build_record,"Supplier label, CoA, build sheet, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_membrane_lot_supplier_or_build_record.pdf,Record build/supplier provenance for membrane_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0130,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_prefilter_lot_supplier_or_build_record.pdf,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,prefilter_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|prefilter_lot,supplier_or_build_record,"Supplier label, build sheet, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_prefilter_lot_supplier_or_build_record.pdf,Record build/supplier provenance for prefilter_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0131,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|conductivity_final_mS_cm,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0132,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|conductivity_initial_mS_cm,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0133,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_exposure_time_h_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|exposure_time_h,bench_or_chain_of_custody_record,Incubation start/stop log or vendor report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_exposure_time_h_bench_or_chain_of_custody_record.csv,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0134,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|initial_volume_ml,swelling_dimension_or_mass_worksheet,Pipetting worksheet or balance/volume log.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0135,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_pH_final_pH_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|pH_final,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_pH_final_pH_meter_export_or_photo.csv,Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0136,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_pH_initial_pH_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|pH_initial,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_pH_initial_pH_meter_export_or_photo.csv,Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0137,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_temperature_c_temperature_or_incubator_log.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|temperature_c,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_temperature_c_temperature_or_incubator_log.csv,Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0138,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_visible_precipitate_image_or_scoring_worksheet.png,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|visible_precipitate,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_visible_precipitate_image_or_scoring_worksheet.png,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0139,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|osmolality_final_mOsm_kg,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0140,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|osmolality_initial_mOsm_kg,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0141,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_date_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,date,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|date,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_date_bench_or_chain_of_custody_record.csv,Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0142,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_medium_lot_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,medium_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|medium_lot,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_medium_lot_bench_or_chain_of_custody_record.csv,Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0143,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_medium_name_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,medium_name,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|medium_name,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_medium_name_bench_or_chain_of_custody_record.csv,Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0144,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_membrane_area_cm2_swelling_dimension_or_mass_worksheet.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,membrane_area_cm2,cm2,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|membrane_area_cm2,swelling_dimension_or_mass_worksheet,"Build drawing, measurement worksheet, or supplier documentation.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_membrane_area_cm2_swelling_dimension_or_mass_worksheet.csv,Capture membrane_area_cm2 with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0145,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_membrane_lot_supplier_or_build_record.pdf,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,membrane_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|membrane_lot,supplier_or_build_record,"Supplier label, CoA, build sheet, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_membrane_lot_supplier_or_build_record.pdf,Record build/supplier provenance for membrane_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0146,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_prefilter_lot_supplier_or_build_record.pdf,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,prefilter_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|prefilter_lot,supplier_or_build_record,"Supplier label, build sheet, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_prefilter_lot_supplier_or_build_record.pdf,Record build/supplier provenance for prefilter_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0147,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|conductivity_final_mS_cm,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0148,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|conductivity_initial_mS_cm,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0149,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_exposure_time_h_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|exposure_time_h,bench_or_chain_of_custody_record,Incubation start/stop log or vendor report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_exposure_time_h_bench_or_chain_of_custody_record.csv,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0150,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|initial_volume_ml,swelling_dimension_or_mass_worksheet,Pipetting worksheet or balance/volume log.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0151,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_pH_final_pH_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|pH_final,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_pH_final_pH_meter_export_or_photo.csv,Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0152,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_pH_initial_pH_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|pH_initial,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_pH_initial_pH_meter_export_or_photo.csv,Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0153,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_temperature_c_temperature_or_incubator_log.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|temperature_c,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_temperature_c_temperature_or_incubator_log.csv,Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0154,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_visible_precipitate_image_or_scoring_worksheet.png,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|visible_precipitate,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_visible_precipitate_image_or_scoring_worksheet.png,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0155,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-0h,0 h,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-no_module_static_control-R1-0h|osmolality_final_mOsm_kg,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0156,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-0h,0 h,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-no_module_static_control-R1-0h|osmolality_initial_mOsm_kg,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0157,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_date_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-0h,0 h,date,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|date,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_date_bench_or_chain_of_custody_record.csv,Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0158,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_medium_lot_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-0h,0 h,medium_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|medium_lot,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_medium_lot_bench_or_chain_of_custody_record.csv,Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0159,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_medium_name_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-0h,0 h,medium_name,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|medium_name,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_medium_name_bench_or_chain_of_custody_record.csv,Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0160,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|conductivity_final_mS_cm,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0161,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|conductivity_initial_mS_cm,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0162,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_exposure_time_h_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|exposure_time_h,bench_or_chain_of_custody_record,Incubation start/stop log or vendor report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_exposure_time_h_bench_or_chain_of_custody_record.csv,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0163,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|initial_volume_ml,swelling_dimension_or_mass_worksheet,Pipetting worksheet or balance/volume log.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0164,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_pH_final_pH_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|pH_final,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_pH_final_pH_meter_export_or_photo.csv,Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0165,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_pH_initial_pH_meter_export_or_photo.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|pH_initial,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_pH_initial_pH_meter_export_or_photo.csv,Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0166,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_temperature_c_temperature_or_incubator_log.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|temperature_c,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_temperature_c_temperature_or_incubator_log.csv,Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0167,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_visible_precipitate_image_or_scoring_worksheet.png,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|visible_precipitate,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_visible_precipitate_image_or_scoring_worksheet.png,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0168,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-24h,24 h,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-no_module_static_control-R1-24h|osmolality_final_mOsm_kg,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0169,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-24h,24 h,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-no_module_static_control-R1-24h|osmolality_initial_mOsm_kg,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id -SQ-0170,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_date_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-24h,24 h,date,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|date,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_date_bench_or_chain_of_custody_record.csv,Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0171,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_medium_lot_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-24h,24 h,medium_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|medium_lot,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_medium_lot_bench_or_chain_of_custody_record.csv,Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file -SQ-0172,yes,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_medium_name_bench_or_chain_of_custody_record.csv,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-24h,24 h,medium_name,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|medium_name,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_medium_name_bench_or_chain_of_custody_record.csv,Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file diff --git a/data/limina_smoke_entry_sheet.json b/data/limina_smoke_entry_sheet.json deleted file mode 100644 index 47f7dc9..0000000 --- a/data/limina_smoke_entry_sheet.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "boundary": "This sheet is a fillable intake surface only. Values require real source files and downstream preflight before they can reach any evidence gate.", - "generated_artifacts": { - "json": "data/limina_smoke_entry_sheet.json", - "report": "reports/limina_smoke_entry_sheet.md", - "sheet": "data/limina_smoke_entry_sheet.csv" - }, - "post_fill_command": "python3 scripts/apply_limina_smoke_entry_sheet.py", - "source_queue": { - "path": "data/limina_smoke_execution_queue.json", - "queue_row_count": 172, - "status": "smoke_execution_queue_ready" - }, - "status": "smoke_entry_sheet_ready", - "summary": { - "blocked_value_rows": 0, - "entry_rows": 172, - "filled_source_file_rows": 172, - "filled_value_rows": 0, - "ready_to_apply_rows": 0, - "skipped_rows": 0 - } -} \ No newline at end of file diff --git a/data/limina_smoke_execution_queue.csv b/data/limina_smoke_execution_queue.csv deleted file mode 100644 index 88f49fa..0000000 --- a/data/limina_smoke_execution_queue.csv +++ /dev/null @@ -1,173 +0,0 @@ -queue_id,priority,batch,branch,route,run_id,sample_event,target_field,unit,instrument_class,entry_file,row_locator,current_value_status,provenance_status,source_class,source_file_requirement,recommended_source_file,capture_instruction,post_fill_check -SQ-0001,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|date,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,"Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0002,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|medium_name,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0003,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|medium_lot,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0004,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|temperature_c,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,"Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0005,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|mea_coupon_id,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Build sheet, sample label, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0006,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|electrode_material,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Supplier documentation, build sheet, or sample label record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,"Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0007,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|laminin_or_peptide_density,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Recipe record, supplier CoA, coating log, or build sheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0008,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|sterilization_or_aseptic_protocol,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"SOP identifier, batch record, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0009,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|initial|pH,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0010,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|initial|osmolality,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0011,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|initial|conductivity,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0012,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|final|pH,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0013,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|final|osmolality,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0014,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|final|conductivity,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0015,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|visible_precipitate,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0016,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|visible_shedding,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or microscopy/stereoscope export.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0017,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|swelling_fraction,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,swelling_dimension_or_mass_worksheet,"Image analysis export, caliper log, or mass/dimension worksheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0018,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|delamination_score,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Image plus scoring worksheet or vendor image-analysis report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0019,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|optical_transparency_fraction,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Image-analysis export or vendor microscopy report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0020,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|date,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,"Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0021,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|medium_name,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0022,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|medium_lot,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0023,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|temperature_c,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,"Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0024,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|mea_coupon_id,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Build sheet, sample label, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0025,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|electrode_material,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Supplier documentation, build sheet, or sample label record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,"Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0026,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|laminin_or_peptide_density,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Recipe record, supplier CoA, coating log, or build sheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0027,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|sterilization_or_aseptic_protocol,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"SOP identifier, batch record, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0028,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|initial|pH,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0029,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|initial|osmolality,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0030,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|initial|conductivity,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0031,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|final|pH,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0032,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|final|osmolality,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0033,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|final|conductivity,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0034,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|visible_precipitate,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0035,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|visible_shedding,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or microscopy/stereoscope export.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0036,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|swelling_fraction,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,swelling_dimension_or_mass_worksheet,"Image analysis export, caliper log, or mass/dimension worksheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0037,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|delamination_score,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Image plus scoring worksheet or vendor image-analysis report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0038,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|optical_transparency_fraction,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Image-analysis export or vendor microscopy report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0039,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|date,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,"Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0040,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|medium_name,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0041,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|medium_lot,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0042,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|temperature_c,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,"Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0043,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|mea_coupon_id,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Build sheet, sample label, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0044,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|electrode_material,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Supplier documentation, build sheet, or sample label record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,"Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0045,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|laminin_or_peptide_density,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Recipe record, supplier CoA, coating log, or build sheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0046,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|sterilization_or_aseptic_protocol,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"SOP identifier, batch record, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0047,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|initial|pH,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0048,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|initial|osmolality,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0049,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|initial|conductivity,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0050,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|final|pH,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0051,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|final|osmolality,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0052,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|final|conductivity,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0053,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|visible_precipitate,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0054,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|visible_shedding,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or microscopy/stereoscope export.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0055,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|swelling_fraction,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,swelling_dimension_or_mass_worksheet,"Image analysis export, caliper log, or mass/dimension worksheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0056,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|delamination_score,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Image plus scoring worksheet or vendor image-analysis report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0057,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|optical_transparency_fraction,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Image-analysis export or vendor microscopy report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0058,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|date,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,"Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0059,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|medium_name,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0060,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|medium_lot,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0061,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|temperature_c,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,"Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0062,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|mea_coupon_id,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Build sheet, sample label, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0063,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|electrode_material,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Supplier documentation, build sheet, or sample label record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,"Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0064,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|laminin_or_peptide_density,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Recipe record, supplier CoA, coating log, or build sheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0065,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|sterilization_or_aseptic_protocol,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"SOP identifier, batch record, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0066,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|initial|pH,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0067,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|initial|osmolality,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0068,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|initial|conductivity,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0069,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|final|pH,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0070,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|final|osmolality,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0071,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|final|conductivity,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0072,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|visible_precipitate,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0073,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|visible_shedding,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or microscopy/stereoscope export.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0074,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|swelling_fraction,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,swelling_dimension_or_mass_worksheet,"Image analysis export, caliper log, or mass/dimension worksheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0075,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|delamination_score,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Image plus scoring worksheet or vendor image-analysis report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0076,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|optical_transparency_fraction,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Image-analysis export or vendor microscopy report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0077,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|date,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,"Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0078,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|medium_name,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0079,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|medium_lot,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0080,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|temperature_c,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,"Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0081,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|mea_coupon_id,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Build sheet, sample label, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0082,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|electrode_material,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Supplier documentation, build sheet, or sample label record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,"Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0083,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|laminin_or_peptide_density,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Recipe record, supplier CoA, coating log, or build sheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0084,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|sterilization_or_aseptic_protocol,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"SOP identifier, batch record, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0085,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|initial|pH,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0086,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|initial|osmolality,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0087,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|initial|conductivity,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0088,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|final|pH,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0089,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|final|osmolality,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0090,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|final|conductivity,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0091,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|visible_precipitate,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0092,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|visible_shedding,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or microscopy/stereoscope export.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0093,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|swelling_fraction,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,swelling_dimension_or_mass_worksheet,"Image analysis export, caliper log, or mass/dimension worksheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0094,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|delamination_score,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Image plus scoring worksheet or vendor image-analysis report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0095,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|optical_transparency_fraction,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Image-analysis export or vendor microscopy report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0096,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|date,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,"Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0097,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|medium_name,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0098,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|medium_lot,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0099,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,C,temperature_probe_or_incubator_log,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|temperature_c,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,"Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0100,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|mea_coupon_id,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Build sheet, sample label, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0101,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|electrode_material,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Supplier documentation, build sheet, or sample label record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,"Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0102,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|laminin_or_peptide_density,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Recipe record, supplier CoA, coating log, or build sheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0103,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,,record_review,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|sterilization_or_aseptic_protocol,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"SOP identifier, batch record, or chain-of-custody record.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0104,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|initial|pH,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0105,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|initial|osmolality,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0106,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|initial|conductivity,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0107,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,pH,calibrated_pH_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|final|pH,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,"Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0108,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,mOsm/kg,osmometer_or_external_lab,data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|final|osmolality,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0109,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,mS/cm,calibrated_conductivity_meter,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|final|conductivity,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,"Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0110,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|visible_precipitate,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0111,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,bool,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|visible_shedding,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or microscopy/stereoscope export.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0112,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,fraction,caliper_balance_or_image_analysis,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|swelling_fraction,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,swelling_dimension_or_mass_worksheet,"Image analysis export, caliper log, or mass/dimension worksheet.",data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0113,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,score,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|delamination_score,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Image plus scoring worksheet or vendor image-analysis report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0114,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,fraction,imaging_station_or_scoring_sheet,data/nhi_pedot_h_a_smoke_local_capture_template.csv,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|optical_transparency_fraction,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Image-analysis export or vendor microscopy report.,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.",python3 scripts/run_limina_iteration.py -SQ-0115,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|conductivity_final_mS_cm,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0116,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|conductivity_initial_mS_cm,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0117,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|exposure_time_h,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,bench_or_chain_of_custody_record,Incubation start/stop log or vendor report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_exposure_time_h_bench_or_chain_of_custody_record.csv,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0118,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|initial_volume_ml,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,swelling_dimension_or_mass_worksheet,Pipetting worksheet or balance/volume log.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0119,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|pH_final,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_pH_final_pH_meter_export_or_photo.csv,Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0120,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|pH_initial,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_pH_initial_pH_meter_export_or_photo.csv,Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0121,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|temperature_c,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_temperature_c_temperature_or_incubator_log.csv,Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0122,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|visible_precipitate,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_visible_precipitate_image_or_scoring_worksheet.png,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0123,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|osmolality_final_mOsm_kg,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0124,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|osmolality_initial_mOsm_kg,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0125,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,date,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|date,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_date_bench_or_chain_of_custody_record.csv,Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0126,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,medium_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|medium_lot,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_medium_lot_bench_or_chain_of_custody_record.csv,Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0127,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,medium_name,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|medium_name,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_medium_name_bench_or_chain_of_custody_record.csv,Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0128,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,membrane_area_cm2,cm2,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|membrane_area_cm2,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,swelling_dimension_or_mass_worksheet,"Build drawing, measurement worksheet, or supplier documentation.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_membrane_area_cm2_swelling_dimension_or_mass_worksheet.csv,Capture membrane_area_cm2 with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0129,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,membrane_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|membrane_lot,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Supplier label, CoA, build sheet, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_membrane_lot_supplier_or_build_record.pdf,Record build/supplier provenance for membrane_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0130,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,prefilter_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|prefilter_lot,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Supplier label, build sheet, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_prefilter_lot_supplier_or_build_record.pdf,Record build/supplier provenance for prefilter_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0131,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|conductivity_final_mS_cm,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0132,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|conductivity_initial_mS_cm,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0133,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|exposure_time_h,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,bench_or_chain_of_custody_record,Incubation start/stop log or vendor report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_exposure_time_h_bench_or_chain_of_custody_record.csv,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0134,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|initial_volume_ml,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,swelling_dimension_or_mass_worksheet,Pipetting worksheet or balance/volume log.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0135,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|pH_final,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_pH_final_pH_meter_export_or_photo.csv,Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0136,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|pH_initial,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_pH_initial_pH_meter_export_or_photo.csv,Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0137,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|temperature_c,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_temperature_c_temperature_or_incubator_log.csv,Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0138,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|visible_precipitate,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_visible_precipitate_image_or_scoring_worksheet.png,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0139,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|osmolality_final_mOsm_kg,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0140,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|osmolality_initial_mOsm_kg,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0141,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,date,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|date,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_date_bench_or_chain_of_custody_record.csv,Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0142,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,medium_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|medium_lot,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_medium_lot_bench_or_chain_of_custody_record.csv,Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0143,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,medium_name,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|medium_name,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_medium_name_bench_or_chain_of_custody_record.csv,Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0144,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,membrane_area_cm2,cm2,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|membrane_area_cm2,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,swelling_dimension_or_mass_worksheet,"Build drawing, measurement worksheet, or supplier documentation.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_membrane_area_cm2_swelling_dimension_or_mass_worksheet.csv,Capture membrane_area_cm2 with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0145,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,membrane_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|membrane_lot,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Supplier label, CoA, build sheet, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_membrane_lot_supplier_or_build_record.pdf,Record build/supplier provenance for membrane_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0146,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,prefilter_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|prefilter_lot,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,supplier_or_build_record,"Supplier label, build sheet, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_prefilter_lot_supplier_or_build_record.pdf,Record build/supplier provenance for prefilter_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0147,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|conductivity_final_mS_cm,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0148,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|conductivity_initial_mS_cm,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0149,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|exposure_time_h,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,bench_or_chain_of_custody_record,Incubation start/stop log or vendor report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_exposure_time_h_bench_or_chain_of_custody_record.csv,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0150,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|initial_volume_ml,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,swelling_dimension_or_mass_worksheet,Pipetting worksheet or balance/volume log.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0151,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|pH_final,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_pH_final_pH_meter_export_or_photo.csv,Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0152,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|pH_initial,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_pH_initial_pH_meter_export_or_photo.csv,Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0153,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|temperature_c,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_temperature_c_temperature_or_incubator_log.csv,Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0154,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-0h,0 h,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|visible_precipitate,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_visible_precipitate_image_or_scoring_worksheet.png,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0155,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-0h,0 h,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-no_module_static_control-R1-0h|osmolality_final_mOsm_kg,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0156,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-0h,0 h,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-no_module_static_control-R1-0h|osmolality_initial_mOsm_kg,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0157,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-0h,0 h,date,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|date,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_date_bench_or_chain_of_custody_record.csv,Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0158,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-0h,0 h,medium_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|medium_lot,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_medium_lot_bench_or_chain_of_custody_record.csv,Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0159,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-0h,0 h,medium_name,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-0h|medium_name,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_medium_name_bench_or_chain_of_custody_record.csv,Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0160,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,conductivity_final_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|conductivity_final_mS_cm,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0161,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,conductivity_initial_mS_cm,mS/cm,calibrated_conductivity_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|conductivity_initial_mS_cm,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,conductivity_meter_export_or_photo,"Conductivity meter export, calibration log, or display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0162,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,exposure_time_h,h,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|exposure_time_h,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,bench_or_chain_of_custody_record,Incubation start/stop log or vendor report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_exposure_time_h_bench_or_chain_of_custody_record.csv,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0163,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,initial_volume_ml,mL,bench_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|initial_volume_ml,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,swelling_dimension_or_mass_worksheet,Pipetting worksheet or balance/volume log.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0164,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,pH_final,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|pH_final,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_pH_final_pH_meter_export_or_photo.csv,Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0165,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,pH_initial,pH,calibrated_pH_meter,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|pH_initial,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,pH_meter_export_or_photo,"Meter export, calibration log, or time-stamped display photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_pH_initial_pH_meter_export_or_photo.csv,Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0166,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,temperature_c,C,temperature_probe_or_incubator_log,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|temperature_c,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,temperature_or_incubator_log,"Incubator log, probe export, or time-stamped photo.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_temperature_c_temperature_or_incubator_log.csv,Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0167,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,ZRCND-A-no_module_static_control-R1-24h,24 h,visible_precipitate,bool,imaging_station_or_scoring_sheet,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|visible_precipitate,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,image_or_scoring_worksheet,Time-stamped image or vendor inspection report.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_visible_precipitate_image_or_scoring_worksheet.png,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0168,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-24h,24 h,osmolality_final_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-no_module_static_control-R1-24h|osmolality_final_mOsm_kg,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0169,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,ZRCND-A-no_module_static_control-R1-24h,24 h,osmolality_initial_mOsm_kg,mOsm/kg,osmometer_or_external_lab,data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv,ZRCND-A-no_module_static_control-R1-24h|osmolality_initial_mOsm_kg,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file+instrument_id,osmometer_report_or_export,Osmometer report/export reconciled to run_id.,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0170,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-24h,24 h,date,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|date,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Bench sheet, vendor report, or chain-of-custody CSV.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_date_bench_or_chain_of_custody_record.csv,Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0171,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-24h,24 h,medium_lot,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|medium_lot,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Lot CoA, bottle label image, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_medium_lot_bench_or_chain_of_custody_record.csv,Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py -SQ-0172,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,ZRCND-A-no_module_static_control-R1-24h,24 h,medium_name,,record_review,data/zrc_nd_phase_a_smoke_local_capture_template.csv,ZRCND-A-no_module_static_control-R1-24h|medium_name,awaiting_value,missing_measured_at_or_date+operator_or_agent+source_file,bench_or_chain_of_custody_record,"Medium bottle photo, lot CoA, or chain-of-custody record.",data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_medium_name_bench_or_chain_of_custody_record.csv,Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.,python3 scripts/run_limina_iteration.py diff --git a/data/limina_smoke_execution_queue.json b/data/limina_smoke_execution_queue.json deleted file mode 100644 index e3a4a86..0000000 --- a/data/limina_smoke_execution_queue.json +++ /dev/null @@ -1,3659 +0,0 @@ -{ - "boundary": "This queue is execution scaffolding only. It cannot satisfy a material suitability claim without real source files, QC-clean rows, gate passes, and claim_ready=true.", - "generated_artifacts": { - "csv": "data/limina_smoke_execution_queue.csv", - "json": "data/limina_smoke_execution_queue.json", - "report": "reports/limina_smoke_execution_queue.md" - }, - "post_fill_commands": [ - "python3 scripts/preflight_limina_local_capture.py --tasks data/limina_smoke_capture_tasks.csv --h-a-local data/nhi_pedot_h_a_smoke_local_capture_template.csv --h-a-outsource data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv --zrc-local data/zrc_nd_phase_a_smoke_local_capture_template.csv --zrc-outsource data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv --json-out data/limina_smoke_capture_preflight.json --report reports/limina_smoke_capture_preflight.md", - "python3 scripts/run_limina_smoke_rehearsal.py", - "python3 scripts/run_limina_iteration.py" - ], - "purpose": "Convert the smoke capture tranche into field-level execution rows with source-file destinations and post-fill checks.", - "queue": [ - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0001", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|date", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV.", - "target_field": "date", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0002", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|medium_name", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Medium bottle photo, lot CoA, or chain-of-custody record.", - "target_field": "medium_name", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0003", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|medium_lot", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Lot CoA, bottle label image, or chain-of-custody record.", - "target_field": "medium_lot", - "unit": "" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "temperature_probe_or_incubator_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0004", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|temperature_c", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "metadata", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "target_field": "temperature_c", - "unit": "C" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0005", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|mea_coupon_id", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record.", - "target_field": "mea_coupon_id", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0006", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|electrode_material", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Supplier documentation, build sheet, or sample label record.", - "target_field": "electrode_material", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0007", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|laminin_or_peptide_density", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Recipe record, supplier CoA, coating log, or build sheet.", - "target_field": "laminin_or_peptide_density", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0008", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|metadata|sterilization_or_aseptic_protocol", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "SOP identifier, batch record, or chain-of-custody record.", - "target_field": "sterilization_or_aseptic_protocol", - "unit": "" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0009", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|initial|pH", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "initial", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "target_field": "pH", - "unit": "pH" - }, - { - "batch": "B2_HA_osmolality_external", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 3, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0010", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|initial|osmolality", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "initial", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality", - "unit": "mOsm/kg" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0011", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|initial|conductivity", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "initial", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "target_field": "conductivity", - "unit": "mS/cm" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0012", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_pH_final_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|final|pH", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "final", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "target_field": "pH", - "unit": "pH" - }, - { - "batch": "B2_HA_osmolality_external", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 3, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0013", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|final|osmolality", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "final", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality", - "unit": "mOsm/kg" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0014", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|final|conductivity", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "final", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "target_field": "conductivity", - "unit": "mS/cm" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0015", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|visible_precipitate", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or vendor inspection report.", - "target_field": "visible_precipitate", - "unit": "bool" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0016", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|visible_shedding", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or microscopy/stereoscope export.", - "target_field": "visible_shedding", - "unit": "bool" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "caliper_balance_or_image_analysis", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0017", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|swelling_fraction", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "physical_inspection", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "target_field": "swelling_fraction", - "unit": "fraction" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0018", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|delamination_score", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report.", - "target_field": "delamination_score", - "unit": "score" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0019", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h|physical_inspection|optical_transparency_fraction", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image-analysis export or vendor microscopy report.", - "target_field": "optical_transparency_fraction", - "unit": "fraction" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0020", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|date", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV.", - "target_field": "date", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0021", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|medium_name", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Medium bottle photo, lot CoA, or chain-of-custody record.", - "target_field": "medium_name", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0022", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|medium_lot", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Lot CoA, bottle label image, or chain-of-custody record.", - "target_field": "medium_lot", - "unit": "" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "temperature_probe_or_incubator_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0023", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|temperature_c", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "metadata", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "target_field": "temperature_c", - "unit": "C" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0024", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|mea_coupon_id", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record.", - "target_field": "mea_coupon_id", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0025", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|electrode_material", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Supplier documentation, build sheet, or sample label record.", - "target_field": "electrode_material", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0026", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|laminin_or_peptide_density", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Recipe record, supplier CoA, coating log, or build sheet.", - "target_field": "laminin_or_peptide_density", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0027", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|metadata|sterilization_or_aseptic_protocol", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "SOP identifier, batch record, or chain-of-custody record.", - "target_field": "sterilization_or_aseptic_protocol", - "unit": "" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0028", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|initial|pH", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "initial", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "target_field": "pH", - "unit": "pH" - }, - { - "batch": "B2_HA_osmolality_external", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 3, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0029", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|initial|osmolality", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "initial", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality", - "unit": "mOsm/kg" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0030", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|initial|conductivity", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "initial", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "target_field": "conductivity", - "unit": "mS/cm" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0031", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_pH_final_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|final|pH", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "final", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "target_field": "pH", - "unit": "pH" - }, - { - "batch": "B2_HA_osmolality_external", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 3, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0032", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|final|osmolality", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "final", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality", - "unit": "mOsm/kg" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0033", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|final|conductivity", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "final", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "target_field": "conductivity", - "unit": "mS/cm" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0034", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|visible_precipitate", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or vendor inspection report.", - "target_field": "visible_precipitate", - "unit": "bool" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0035", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|visible_shedding", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or microscopy/stereoscope export.", - "target_field": "visible_shedding", - "unit": "bool" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "caliper_balance_or_image_analysis", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0036", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|swelling_fraction", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "physical_inspection", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "target_field": "swelling_fraction", - "unit": "fraction" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0037", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|delamination_score", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report.", - "target_field": "delamination_score", - "unit": "score" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0038", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h|physical_inspection|optical_transparency_fraction", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image-analysis export or vendor microscopy report.", - "target_field": "optical_transparency_fraction", - "unit": "fraction" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0039", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|date", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV.", - "target_field": "date", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0040", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|medium_name", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Medium bottle photo, lot CoA, or chain-of-custody record.", - "target_field": "medium_name", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0041", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|medium_lot", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Lot CoA, bottle label image, or chain-of-custody record.", - "target_field": "medium_lot", - "unit": "" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "temperature_probe_or_incubator_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0042", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|temperature_c", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "metadata", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "target_field": "temperature_c", - "unit": "C" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0043", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|mea_coupon_id", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record.", - "target_field": "mea_coupon_id", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0044", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|electrode_material", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Supplier documentation, build sheet, or sample label record.", - "target_field": "electrode_material", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0045", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|laminin_or_peptide_density", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Recipe record, supplier CoA, coating log, or build sheet.", - "target_field": "laminin_or_peptide_density", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0046", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|metadata|sterilization_or_aseptic_protocol", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "SOP identifier, batch record, or chain-of-custody record.", - "target_field": "sterilization_or_aseptic_protocol", - "unit": "" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0047", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|initial|pH", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "initial", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "target_field": "pH", - "unit": "pH" - }, - { - "batch": "B2_HA_osmolality_external", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 3, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0048", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|initial|osmolality", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "initial", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality", - "unit": "mOsm/kg" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0049", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|initial|conductivity", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "initial", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "target_field": "conductivity", - "unit": "mS/cm" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0050", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_pH_final_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|final|pH", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "final", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "target_field": "pH", - "unit": "pH" - }, - { - "batch": "B2_HA_osmolality_external", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 3, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0051", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|final|osmolality", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "final", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality", - "unit": "mOsm/kg" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0052", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|final|conductivity", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "final", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "target_field": "conductivity", - "unit": "mS/cm" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0053", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|visible_precipitate", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or vendor inspection report.", - "target_field": "visible_precipitate", - "unit": "bool" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0054", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|visible_shedding", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or microscopy/stereoscope export.", - "target_field": "visible_shedding", - "unit": "bool" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "caliper_balance_or_image_analysis", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0055", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|swelling_fraction", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "physical_inspection", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "target_field": "swelling_fraction", - "unit": "fraction" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0056", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|delamination_score", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report.", - "target_field": "delamination_score", - "unit": "score" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0057", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h|physical_inspection|optical_transparency_fraction", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image-analysis export or vendor microscopy report.", - "target_field": "optical_transparency_fraction", - "unit": "fraction" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0058", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|date", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV.", - "target_field": "date", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0059", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|medium_name", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Medium bottle photo, lot CoA, or chain-of-custody record.", - "target_field": "medium_name", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0060", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|medium_lot", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Lot CoA, bottle label image, or chain-of-custody record.", - "target_field": "medium_lot", - "unit": "" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "temperature_probe_or_incubator_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0061", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|temperature_c", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "metadata", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "target_field": "temperature_c", - "unit": "C" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0062", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|mea_coupon_id", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record.", - "target_field": "mea_coupon_id", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0063", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|electrode_material", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Supplier documentation, build sheet, or sample label record.", - "target_field": "electrode_material", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0064", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|laminin_or_peptide_density", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Recipe record, supplier CoA, coating log, or build sheet.", - "target_field": "laminin_or_peptide_density", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0065", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|metadata|sterilization_or_aseptic_protocol", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "SOP identifier, batch record, or chain-of-custody record.", - "target_field": "sterilization_or_aseptic_protocol", - "unit": "" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0066", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|initial|pH", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "initial", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "target_field": "pH", - "unit": "pH" - }, - { - "batch": "B2_HA_osmolality_external", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 3, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0067", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|initial|osmolality", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "initial", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality", - "unit": "mOsm/kg" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0068", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|initial|conductivity", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "initial", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "target_field": "conductivity", - "unit": "mS/cm" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0069", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_pH_final_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|final|pH", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "final", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "target_field": "pH", - "unit": "pH" - }, - { - "batch": "B2_HA_osmolality_external", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 3, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0070", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|final|osmolality", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "final", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality", - "unit": "mOsm/kg" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0071", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|final|conductivity", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "final", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "target_field": "conductivity", - "unit": "mS/cm" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0072", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|visible_precipitate", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or vendor inspection report.", - "target_field": "visible_precipitate", - "unit": "bool" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0073", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|visible_shedding", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or microscopy/stereoscope export.", - "target_field": "visible_shedding", - "unit": "bool" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "caliper_balance_or_image_analysis", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0074", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|swelling_fraction", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "physical_inspection", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "target_field": "swelling_fraction", - "unit": "fraction" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0075", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|delamination_score", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report.", - "target_field": "delamination_score", - "unit": "score" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0076", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h|physical_inspection|optical_transparency_fraction", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image-analysis export or vendor microscopy report.", - "target_field": "optical_transparency_fraction", - "unit": "fraction" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0077", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|date", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV.", - "target_field": "date", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0078", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|medium_name", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Medium bottle photo, lot CoA, or chain-of-custody record.", - "target_field": "medium_name", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0079", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|medium_lot", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Lot CoA, bottle label image, or chain-of-custody record.", - "target_field": "medium_lot", - "unit": "" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "temperature_probe_or_incubator_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0080", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|temperature_c", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "metadata", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "target_field": "temperature_c", - "unit": "C" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0081", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|mea_coupon_id", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record.", - "target_field": "mea_coupon_id", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0082", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|electrode_material", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Supplier documentation, build sheet, or sample label record.", - "target_field": "electrode_material", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0083", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|laminin_or_peptide_density", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Recipe record, supplier CoA, coating log, or build sheet.", - "target_field": "laminin_or_peptide_density", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0084", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|metadata|sterilization_or_aseptic_protocol", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "SOP identifier, batch record, or chain-of-custody record.", - "target_field": "sterilization_or_aseptic_protocol", - "unit": "" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0085", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|initial|pH", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "initial", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "target_field": "pH", - "unit": "pH" - }, - { - "batch": "B2_HA_osmolality_external", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 3, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0086", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|initial|osmolality", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "initial", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality", - "unit": "mOsm/kg" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0087", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|initial|conductivity", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "initial", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "target_field": "conductivity", - "unit": "mS/cm" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0088", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_pH_final_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|final|pH", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "final", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "target_field": "pH", - "unit": "pH" - }, - { - "batch": "B2_HA_osmolality_external", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 3, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0089", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|final|osmolality", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "final", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality", - "unit": "mOsm/kg" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0090", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|final|conductivity", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "final", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "target_field": "conductivity", - "unit": "mS/cm" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0091", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|visible_precipitate", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or vendor inspection report.", - "target_field": "visible_precipitate", - "unit": "bool" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0092", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|visible_shedding", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or microscopy/stereoscope export.", - "target_field": "visible_shedding", - "unit": "bool" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "caliper_balance_or_image_analysis", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0093", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|swelling_fraction", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "physical_inspection", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "target_field": "swelling_fraction", - "unit": "fraction" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0094", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|delamination_score", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report.", - "target_field": "delamination_score", - "unit": "score" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0095", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h|physical_inspection|optical_transparency_fraction", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image-analysis export or vendor microscopy report.", - "target_field": "optical_transparency_fraction", - "unit": "fraction" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0096", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|date", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV.", - "target_field": "date", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0097", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|medium_name", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Medium bottle photo, lot CoA, or chain-of-custody record.", - "target_field": "medium_name", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0098", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|medium_lot", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "metadata", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Lot CoA, bottle label image, or chain-of-custody record.", - "target_field": "medium_lot", - "unit": "" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "temperature_probe_or_incubator_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0099", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|temperature_c", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "metadata", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "target_field": "temperature_c", - "unit": "C" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0100", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|mea_coupon_id", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record.", - "target_field": "mea_coupon_id", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0101", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|electrode_material", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Supplier documentation, build sheet, or sample label record.", - "target_field": "electrode_material", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0102", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|laminin_or_peptide_density", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Recipe record, supplier CoA, coating log, or build sheet.", - "target_field": "laminin_or_peptide_density", - "unit": "" - }, - { - "batch": "B0_HA_setup_records", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 1, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0103", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|metadata|sterilization_or_aseptic_protocol", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "metadata", - "source_class": "supplier_or_build_record", - "source_file_requirement": "SOP identifier, batch record, or chain-of-custody record.", - "target_field": "sterilization_or_aseptic_protocol", - "unit": "" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0104", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|initial|pH", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "initial", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "target_field": "pH", - "unit": "pH" - }, - { - "batch": "B2_HA_osmolality_external", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 3, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0105", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|initial|osmolality", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "initial", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality", - "unit": "mOsm/kg" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0106", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|initial|conductivity", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "initial", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "target_field": "conductivity", - "unit": "mS/cm" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0107", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_final_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|final|pH", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "final", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "target_field": "pH", - "unit": "pH" - }, - { - "batch": "B2_HA_osmolality_external", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 3, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0108", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|final|osmolality", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "final", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality", - "unit": "mOsm/kg" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0109", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|final|conductivity", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "final", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "target_field": "conductivity", - "unit": "mS/cm" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0110", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|visible_precipitate", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or vendor inspection report.", - "target_field": "visible_precipitate", - "unit": "bool" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0111", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|visible_shedding", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or microscopy/stereoscope export.", - "target_field": "visible_shedding", - "unit": "bool" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "caliper_balance_or_image_analysis", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0112", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|swelling_fraction", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "physical_inspection", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "target_field": "swelling_fraction", - "unit": "fraction" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0113", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|delamination_score", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report.", - "target_field": "delamination_score", - "unit": "score" - }, - { - "batch": "B1_HA_local_measurements", - "branch": "NHI-PEDOT H-A", - "capture_instruction": "Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file.", - "current_value_status": "awaiting_value", - "entry_file": "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 2, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0114", - "recommended_source_file": "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h|physical_inspection|optical_transparency_fraction", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sample_event": "physical_inspection", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image-analysis export or vendor microscopy report.", - "target_field": "optical_transparency_fraction", - "unit": "fraction" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0115", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|conductivity_final_mS_cm", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo.", - "target_field": "conductivity_final_mS_cm", - "unit": "mS/cm" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0116", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|conductivity_initial_mS_cm", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo.", - "target_field": "conductivity_initial_mS_cm", - "unit": "mS/cm" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "bench_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0117", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_exposure_time_h_bench_or_chain_of_custody_record.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|exposure_time_h", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Incubation start/stop log or vendor report.", - "target_field": "exposure_time_h", - "unit": "h" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "bench_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0118", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|initial_volume_ml", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Pipetting worksheet or balance/volume log.", - "target_field": "initial_volume_ml", - "unit": "mL" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0119", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_pH_final_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|pH_final", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo.", - "target_field": "pH_final", - "unit": "pH" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0120", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_pH_initial_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|pH_initial", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo.", - "target_field": "pH_initial", - "unit": "pH" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "temperature_probe_or_incubator_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0121", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_temperature_c_temperature_or_incubator_log.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|temperature_c", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "target_field": "temperature_c", - "unit": "C" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0122", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_visible_precipitate_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|visible_precipitate", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or vendor inspection report.", - "target_field": "visible_precipitate", - "unit": "bool" - }, - { - "batch": "B4_ZRC_external_osmolality", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 5, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0123", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|osmolality_final_mOsm_kg", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality_final_mOsm_kg", - "unit": "mOsm/kg" - }, - { - "batch": "B4_ZRC_external_osmolality", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 5, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0124", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|osmolality_initial_mOsm_kg", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality_initial_mOsm_kg", - "unit": "mOsm/kg" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0125", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_date_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|date", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV.", - "target_field": "date", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0126", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_medium_lot_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|medium_lot", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Lot CoA, bottle label image, or chain-of-custody record.", - "target_field": "medium_lot", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0127", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_medium_name_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|medium_name", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Medium bottle photo, lot CoA, or chain-of-custody record.", - "target_field": "medium_name", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture membrane_area_cm2 with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0128", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_membrane_area_cm2_swelling_dimension_or_mass_worksheet.csv", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|membrane_area_cm2", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Build drawing, measurement worksheet, or supplier documentation.", - "target_field": "membrane_area_cm2", - "unit": "cm2" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Record build/supplier provenance for membrane_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0129", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_membrane_lot_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|membrane_lot", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Supplier label, CoA, build sheet, or chain-of-custody record.", - "target_field": "membrane_lot", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Record build/supplier provenance for prefilter_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0130", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_prefilter_lot_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h|prefilter_lot", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "sample_event": "0 h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Supplier label, build sheet, or chain-of-custody record.", - "target_field": "prefilter_lot", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0131", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|conductivity_final_mS_cm", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo.", - "target_field": "conductivity_final_mS_cm", - "unit": "mS/cm" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0132", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|conductivity_initial_mS_cm", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo.", - "target_field": "conductivity_initial_mS_cm", - "unit": "mS/cm" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "bench_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0133", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_exposure_time_h_bench_or_chain_of_custody_record.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|exposure_time_h", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Incubation start/stop log or vendor report.", - "target_field": "exposure_time_h", - "unit": "h" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "bench_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0134", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|initial_volume_ml", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Pipetting worksheet or balance/volume log.", - "target_field": "initial_volume_ml", - "unit": "mL" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0135", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_pH_final_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|pH_final", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo.", - "target_field": "pH_final", - "unit": "pH" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0136", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_pH_initial_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|pH_initial", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo.", - "target_field": "pH_initial", - "unit": "pH" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "temperature_probe_or_incubator_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0137", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_temperature_c_temperature_or_incubator_log.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|temperature_c", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "target_field": "temperature_c", - "unit": "C" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0138", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_visible_precipitate_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|visible_precipitate", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or vendor inspection report.", - "target_field": "visible_precipitate", - "unit": "bool" - }, - { - "batch": "B4_ZRC_external_osmolality", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 5, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0139", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|osmolality_final_mOsm_kg", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality_final_mOsm_kg", - "unit": "mOsm/kg" - }, - { - "batch": "B4_ZRC_external_osmolality", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 5, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0140", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|osmolality_initial_mOsm_kg", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality_initial_mOsm_kg", - "unit": "mOsm/kg" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0141", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_date_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|date", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV.", - "target_field": "date", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0142", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_medium_lot_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|medium_lot", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Lot CoA, bottle label image, or chain-of-custody record.", - "target_field": "medium_lot", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0143", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_medium_name_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|medium_name", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Medium bottle photo, lot CoA, or chain-of-custody record.", - "target_field": "medium_name", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture membrane_area_cm2 with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0144", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_membrane_area_cm2_swelling_dimension_or_mass_worksheet.csv", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|membrane_area_cm2", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Build drawing, measurement worksheet, or supplier documentation.", - "target_field": "membrane_area_cm2", - "unit": "cm2" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Record build/supplier provenance for membrane_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0145", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_membrane_lot_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|membrane_lot", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Supplier label, CoA, build sheet, or chain-of-custody record.", - "target_field": "membrane_lot", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Record build/supplier provenance for prefilter_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0146", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_prefilter_lot_supplier_or_build_record.pdf", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h|prefilter_lot", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "sample_event": "24 h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Supplier label, build sheet, or chain-of-custody record.", - "target_field": "prefilter_lot", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0147", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-0h|conductivity_final_mS_cm", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "sample_event": "0 h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo.", - "target_field": "conductivity_final_mS_cm", - "unit": "mS/cm" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0148", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-0h|conductivity_initial_mS_cm", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "sample_event": "0 h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo.", - "target_field": "conductivity_initial_mS_cm", - "unit": "mS/cm" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "bench_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0149", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_exposure_time_h_bench_or_chain_of_custody_record.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-0h|exposure_time_h", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "sample_event": "0 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Incubation start/stop log or vendor report.", - "target_field": "exposure_time_h", - "unit": "h" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "bench_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0150", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-0h|initial_volume_ml", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "sample_event": "0 h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Pipetting worksheet or balance/volume log.", - "target_field": "initial_volume_ml", - "unit": "mL" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0151", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_pH_final_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-0h|pH_final", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "sample_event": "0 h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo.", - "target_field": "pH_final", - "unit": "pH" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0152", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_pH_initial_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-0h|pH_initial", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "sample_event": "0 h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo.", - "target_field": "pH_initial", - "unit": "pH" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "temperature_probe_or_incubator_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0153", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_temperature_c_temperature_or_incubator_log.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-0h|temperature_c", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "sample_event": "0 h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "target_field": "temperature_c", - "unit": "C" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0154", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_visible_precipitate_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-0h|visible_precipitate", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "sample_event": "0 h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or vendor inspection report.", - "target_field": "visible_precipitate", - "unit": "bool" - }, - { - "batch": "B4_ZRC_external_osmolality", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 5, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0155", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "ZRCND-A-no_module_static_control-R1-0h|osmolality_final_mOsm_kg", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "sample_event": "0 h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality_final_mOsm_kg", - "unit": "mOsm/kg" - }, - { - "batch": "B4_ZRC_external_osmolality", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 5, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0156", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "ZRCND-A-no_module_static_control-R1-0h|osmolality_initial_mOsm_kg", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "sample_event": "0 h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality_initial_mOsm_kg", - "unit": "mOsm/kg" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0157", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_date_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-no_module_static_control-R1-0h|date", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "sample_event": "0 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV.", - "target_field": "date", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0158", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_medium_lot_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-no_module_static_control-R1-0h|medium_lot", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "sample_event": "0 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Lot CoA, bottle label image, or chain-of-custody record.", - "target_field": "medium_lot", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0159", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_medium_name_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-no_module_static_control-R1-0h|medium_name", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "sample_event": "0 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Medium bottle photo, lot CoA, or chain-of-custody record.", - "target_field": "medium_name", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0160", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-24h|conductivity_final_mS_cm", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "sample_event": "24 h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo.", - "target_field": "conductivity_final_mS_cm", - "unit": "mS/cm" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_conductivity_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0161", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-24h|conductivity_initial_mS_cm", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "sample_event": "24 h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo.", - "target_field": "conductivity_initial_mS_cm", - "unit": "mS/cm" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "bench_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0162", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_exposure_time_h_bench_or_chain_of_custody_record.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-24h|exposure_time_h", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "sample_event": "24 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Incubation start/stop log or vendor report.", - "target_field": "exposure_time_h", - "unit": "h" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "bench_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0163", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-24h|initial_volume_ml", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "sample_event": "24 h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Pipetting worksheet or balance/volume log.", - "target_field": "initial_volume_ml", - "unit": "mL" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0164", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_pH_final_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-24h|pH_final", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "sample_event": "24 h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo.", - "target_field": "pH_final", - "unit": "pH" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "calibrated_pH_meter", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0165", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_pH_initial_pH_meter_export_or_photo.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-24h|pH_initial", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "sample_event": "24 h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo.", - "target_field": "pH_initial", - "unit": "pH" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "temperature_probe_or_incubator_log", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0166", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_temperature_c_temperature_or_incubator_log.csv", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-24h|temperature_c", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "sample_event": "24 h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "target_field": "temperature_c", - "unit": "C" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "imaging_station_or_scoring_sheet", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0167", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_visible_precipitate_image_or_scoring_worksheet.png", - "route": "inhouse_ready", - "row_locator": "ZRCND-A-no_module_static_control-R1-24h|visible_precipitate", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "sample_event": "24 h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Time-stamped image or vendor inspection report.", - "target_field": "visible_precipitate", - "unit": "bool" - }, - { - "batch": "B4_ZRC_external_osmolality", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 5, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0168", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "ZRCND-A-no_module_static_control-R1-24h|osmolality_final_mOsm_kg", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "sample_event": "24 h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality_final_mOsm_kg", - "unit": "mOsm/kg" - }, - { - "batch": "B4_ZRC_external_osmolality", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv", - "instrument_class": "osmometer_or_external_lab", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 5, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id", - "queue_id": "SQ-0169", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "route": "outsourced_preferred", - "row_locator": "ZRCND-A-no_module_static_control-R1-24h|osmolality_initial_mOsm_kg", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "sample_event": "24 h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "target_field": "osmolality_initial_mOsm_kg", - "unit": "mOsm/kg" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0170", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_date_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-no_module_static_control-R1-24h|date", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "sample_event": "24 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV.", - "target_field": "date", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0171", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_medium_lot_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-no_module_static_control-R1-24h|medium_lot", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "sample_event": "24 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Lot CoA, bottle label image, or chain-of-custody record.", - "target_field": "medium_lot", - "unit": "" - }, - { - "batch": "B3_ZRC_parallel_local", - "branch": "ZRC-ND Phase A", - "capture_instruction": "Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons.", - "current_value_status": "awaiting_value", - "entry_file": "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "instrument_class": "record_review", - "post_fill_check": "python3 scripts/run_limina_iteration.py", - "priority": 4, - "provenance_status": "missing_measured_at_or_date+operator_or_agent+source_file", - "queue_id": "SQ-0172", - "recommended_source_file": "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_medium_name_bench_or_chain_of_custody_record.csv", - "route": "supplier_or_build_record", - "row_locator": "ZRCND-A-no_module_static_control-R1-24h|medium_name", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "sample_event": "24 h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Medium bottle photo, lot CoA, or chain-of-custody record.", - "target_field": "medium_name", - "unit": "" - } - ], - "source_manifest": { - "allowed_root_count": 12, - "path": "data/limina_source_file_manifest.json", - "status": "source_file_manifest_ready" - }, - "status": "smoke_execution_queue_ready", - "summary": { - "awaiting_value_rows": 172, - "batch_counts": { - "B0_HA_setup_records": 42, - "B1_HA_local_measurements": 60, - "B2_HA_osmolality_external": 12, - "B3_ZRC_parallel_local": 50, - "B4_ZRC_external_osmolality": 8 - }, - "branch_counts": { - "NHI-PEDOT H-A": 114, - "ZRC-ND Phase A": 58 - }, - "h_a_rows": 114, - "provenance_status_counts": { - "missing_measured_at_or_date+operator_or_agent+source_file": 60, - "missing_measured_at_or_date+operator_or_agent+source_file+instrument_id": 112 - }, - "queue_row_count": 172, - "source_ready_rows": 0, - "value_status_counts": { - "awaiting_value": 172 - }, - "zrc_rows": 58 - } -} \ No newline at end of file diff --git a/data/limina_smoke_raw_csv_extracted_values.csv b/data/limina_smoke_raw_csv_extracted_values.csv deleted file mode 100644 index 8a8d94b..0000000 --- a/data/limina_smoke_raw_csv_extracted_values.csv +++ /dev/null @@ -1 +0,0 @@ -queue_id,run_id,sample_event,target_field,value,measured_at,operator_or_agent,instrument_id,source_file,notes,apply diff --git a/data/limina_smoke_raw_csv_value_extraction.json b/data/limina_smoke_raw_csv_value_extraction.json deleted file mode 100644 index 1e08b04..0000000 --- a/data/limina_smoke_raw_csv_value_extraction.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "boundary": "This extractor reads only existing raw CSV/TSV files in allowed source-file roots. It writes a non-evidence value sidecar for the importer; missing files produce no synthetic rows.", - "generated_artifacts": { - "json": "data/limina_smoke_raw_csv_value_extraction.json", - "report": "reports/limina_smoke_raw_csv_value_extraction.md", - "values_out": "data/limina_smoke_raw_csv_extracted_values.csv" - }, - "inputs": { - "execution_pack": "data/limina_smoke_starter_execution_pack.csv", - "source_manifest": "data/limina_source_file_manifest.json" - }, - "issues": [], - "source_files": [], - "status": "smoke_raw_csv_value_extraction_no_raw_csv", - "summary": { - "ambiguous_rows": 0, - "error_count": 0, - "extracted_rows": 0, - "plan_rows": 19, - "raw_csv_found": 0, - "raw_csv_missing": 9, - "raw_csv_source_files": 0, - "raw_csv_unsupported": 10, - "warning_count": 0 - } -} \ No newline at end of file diff --git a/data/limina_smoke_rehearsal.json b/data/limina_smoke_rehearsal.json deleted file mode 100644 index b66a95d..0000000 --- a/data/limina_smoke_rehearsal.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "boundary": "No smoke merge rehearsal was run because the smoke capture preflight is not ready.", - "commands": [], - "filled_task_count": 0, - "generated_artifacts": {}, - "issue_counts": { - "error": 0, - "warning": 0 - }, - "pending_task_count": 172, - "preflight_ready": false, - "preflight_status": "local_capture_preflight_awaiting_entries", - "status": "smoke_rehearsal_waiting_for_preflight" -} \ No newline at end of file diff --git a/data/limina_smoke_source_drop_plan.csv b/data/limina_smoke_source_drop_plan.csv deleted file mode 100644 index 85ca3ff..0000000 --- a/data/limina_smoke_source_drop_plan.csv +++ /dev/null @@ -1,173 +0,0 @@ -queue_id,branch,batch,run_id,sample_event,target_field,source_class,source_file,source_dir,source_file_exists,value_filled,ready_for_apply,source_file_requirement,capture_instruction -SQ-0001,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,date,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0002,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0003,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0004,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,temperature_c,temperature_or_incubator_log,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,"Incubator log, probe export, or time-stamped photo.","Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0005,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,"Build sheet, sample label, or chain-of-custody record.","Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0006,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,electrode_material,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,"Supplier documentation, build sheet, or sample label record.","Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0007,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0008,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,"SOP identifier, batch record, or chain-of-custody record.","Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0009,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,pH,pH_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0010,NHI-PEDOT H-A,B2_HA_osmolality_external,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,osmolality,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0011,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0012,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,pH,pH_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0013,NHI-PEDOT H-A,B2_HA_osmolality_external,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,osmolality,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0014,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,conductivity,conductivity_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0015,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,Time-stamped image or vendor inspection report.,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0016,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,Time-stamped image or microscopy/stereoscope export.,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0017,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0018,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0019,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,false,false,Image-analysis export or vendor microscopy report.,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0020,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,date,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0021,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0022,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0023,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,temperature_c,temperature_or_incubator_log,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,"Incubator log, probe export, or time-stamped photo.","Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0024,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,"Build sheet, sample label, or chain-of-custody record.","Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0025,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,electrode_material,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,"Supplier documentation, build sheet, or sample label record.","Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0026,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0027,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,"SOP identifier, batch record, or chain-of-custody record.","Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0028,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,pH,pH_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0029,NHI-PEDOT H-A,B2_HA_osmolality_external,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,osmolality,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0030,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0031,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,pH,pH_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0032,NHI-PEDOT H-A,B2_HA_osmolality_external,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,osmolality,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0033,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,conductivity,conductivity_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0034,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,Time-stamped image or vendor inspection report.,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0035,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,Time-stamped image or microscopy/stereoscope export.,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0036,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0037,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0038,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,false,false,Image-analysis export or vendor microscopy report.,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0039,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,date,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0040,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0041,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0042,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,temperature_c,temperature_or_incubator_log,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,"Incubator log, probe export, or time-stamped photo.","Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0043,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,"Build sheet, sample label, or chain-of-custody record.","Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0044,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,electrode_material,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,"Supplier documentation, build sheet, or sample label record.","Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0045,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0046,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,"SOP identifier, batch record, or chain-of-custody record.","Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0047,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,pH,pH_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0048,NHI-PEDOT H-A,B2_HA_osmolality_external,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,osmolality,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0049,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0050,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,pH,pH_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0051,NHI-PEDOT H-A,B2_HA_osmolality_external,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,osmolality,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0052,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,conductivity,conductivity_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0053,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,Time-stamped image or vendor inspection report.,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0054,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,Time-stamped image or microscopy/stereoscope export.,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0055,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0056,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0057,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,false,false,Image-analysis export or vendor microscopy report.,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0058,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,date,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0059,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0060,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0061,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,temperature_c,temperature_or_incubator_log,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,"Incubator log, probe export, or time-stamped photo.","Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0062,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,"Build sheet, sample label, or chain-of-custody record.","Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0063,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,electrode_material,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,"Supplier documentation, build sheet, or sample label record.","Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0064,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0065,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,"SOP identifier, batch record, or chain-of-custody record.","Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0066,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,pH,pH_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0067,NHI-PEDOT H-A,B2_HA_osmolality_external,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,osmolality,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0068,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0069,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,pH,pH_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0070,NHI-PEDOT H-A,B2_HA_osmolality_external,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,osmolality,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0071,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,conductivity,conductivity_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0072,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,Time-stamped image or vendor inspection report.,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0073,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,Time-stamped image or microscopy/stereoscope export.,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0074,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0075,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0076,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,false,false,Image-analysis export or vendor microscopy report.,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0077,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,date,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0078,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0079,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0080,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,temperature_c,temperature_or_incubator_log,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,"Incubator log, probe export, or time-stamped photo.","Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0081,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,"Build sheet, sample label, or chain-of-custody record.","Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0082,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,electrode_material,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,"Supplier documentation, build sheet, or sample label record.","Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0083,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0084,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,"SOP identifier, batch record, or chain-of-custody record.","Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0085,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,pH,pH_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0086,NHI-PEDOT H-A,B2_HA_osmolality_external,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,osmolality,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0087,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0088,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,pH,pH_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0089,NHI-PEDOT H-A,B2_HA_osmolality_external,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,osmolality,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0090,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,conductivity,conductivity_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0091,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,Time-stamped image or vendor inspection report.,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0092,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,Time-stamped image or microscopy/stereoscope export.,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0093,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0094,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0095,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,false,false,Image-analysis export or vendor microscopy report.,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0096,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0097,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0098,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0099,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,temperature_or_incubator_log,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,"Incubator log, probe export, or time-stamped photo.","Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0100,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,"Build sheet, sample label, or chain-of-custody record.","Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0101,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,"Supplier documentation, build sheet, or sample label record.","Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0102,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0103,NHI-PEDOT H-A,B0_HA_setup_records,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,"SOP identifier, batch record, or chain-of-custody record.","Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0104,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,pH_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0105,NHI-PEDOT H-A,B2_HA_osmolality_external,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0106,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0107,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,pH_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0108,NHI-PEDOT H-A,B2_HA_osmolality_external,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0109,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,conductivity_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0110,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,Time-stamped image or vendor inspection report.,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0111,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,Time-stamped image or microscopy/stereoscope export.,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0112,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0113,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0114,NHI-PEDOT H-A,B1_HA_local_measurements,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,false,false,Image-analysis export or vendor microscopy report.,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0115,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,conductivity_final_mS_cm,conductivity_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0116,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,conductivity_initial_mS_cm,conductivity_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0117,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,exposure_time_h,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_exposure_time_h_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,Incubation start/stop log or vendor report.,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0118,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,initial_volume_ml,swelling_dimension_or_mass_worksheet,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,Pipetting worksheet or balance/volume log.,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0119,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,pH_final,pH_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_pH_final_pH_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0120,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,pH_initial,pH_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_pH_initial_pH_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0121,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,temperature_c,temperature_or_incubator_log,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_temperature_c_temperature_or_incubator_log.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,"Incubator log, probe export, or time-stamped photo.",Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0122,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,visible_precipitate,image_or_scoring_worksheet,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,Time-stamped image or vendor inspection report.,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0123,ZRC-ND Phase A,B4_ZRC_external_osmolality,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,osmolality_final_mOsm_kg,osmometer_report_or_export,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0124,ZRC-ND Phase A,B4_ZRC_external_osmolality,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,osmolality_initial_mOsm_kg,osmometer_report_or_export,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0125,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,date,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_date_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.",Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0126,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,medium_lot,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,"Lot CoA, bottle label image, or chain-of-custody record.",Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0127,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,medium_name,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0128,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,membrane_area_cm2,swelling_dimension_or_mass_worksheet,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_membrane_area_cm2_swelling_dimension_or_mass_worksheet.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,"Build drawing, measurement worksheet, or supplier documentation.",Capture membrane_area_cm2 with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0129,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,membrane_lot,supplier_or_build_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_membrane_lot_supplier_or_build_record.pdf,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,"Supplier label, CoA, build sheet, or chain-of-custody record.",Record build/supplier provenance for membrane_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0130,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,prefilter_lot,supplier_or_build_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_prefilter_lot_supplier_or_build_record.pdf,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,false,false,"Supplier label, build sheet, or chain-of-custody record.",Record build/supplier provenance for prefilter_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0131,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,conductivity_final_mS_cm,conductivity_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0132,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,conductivity_initial_mS_cm,conductivity_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0133,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,exposure_time_h,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_exposure_time_h_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,Incubation start/stop log or vendor report.,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0134,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,initial_volume_ml,swelling_dimension_or_mass_worksheet,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,Pipetting worksheet or balance/volume log.,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0135,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,pH_final,pH_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_pH_final_pH_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0136,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,pH_initial,pH_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_pH_initial_pH_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0137,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,temperature_c,temperature_or_incubator_log,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_temperature_c_temperature_or_incubator_log.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,"Incubator log, probe export, or time-stamped photo.",Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0138,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,visible_precipitate,image_or_scoring_worksheet,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,Time-stamped image or vendor inspection report.,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0139,ZRC-ND Phase A,B4_ZRC_external_osmolality,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,osmolality_final_mOsm_kg,osmometer_report_or_export,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0140,ZRC-ND Phase A,B4_ZRC_external_osmolality,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,osmolality_initial_mOsm_kg,osmometer_report_or_export,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0141,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,date,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_date_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.",Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0142,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,medium_lot,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,"Lot CoA, bottle label image, or chain-of-custody record.",Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0143,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,medium_name,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0144,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,membrane_area_cm2,swelling_dimension_or_mass_worksheet,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_membrane_area_cm2_swelling_dimension_or_mass_worksheet.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,"Build drawing, measurement worksheet, or supplier documentation.",Capture membrane_area_cm2 with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0145,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,membrane_lot,supplier_or_build_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_membrane_lot_supplier_or_build_record.pdf,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,"Supplier label, CoA, build sheet, or chain-of-custody record.",Record build/supplier provenance for membrane_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0146,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,prefilter_lot,supplier_or_build_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_prefilter_lot_supplier_or_build_record.pdf,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,false,false,"Supplier label, build sheet, or chain-of-custody record.",Record build/supplier provenance for prefilter_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0147,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-0h,0 h,conductivity_final_mS_cm,conductivity_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,false,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0148,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-0h,0 h,conductivity_initial_mS_cm,conductivity_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,false,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0149,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-0h,0 h,exposure_time_h,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_exposure_time_h_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,false,false,Incubation start/stop log or vendor report.,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0150,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-0h,0 h,initial_volume_ml,swelling_dimension_or_mass_worksheet,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,false,false,Pipetting worksheet or balance/volume log.,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0151,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-0h,0 h,pH_final,pH_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_pH_final_pH_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,false,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0152,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-0h,0 h,pH_initial,pH_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_pH_initial_pH_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,false,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0153,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-0h,0 h,temperature_c,temperature_or_incubator_log,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_temperature_c_temperature_or_incubator_log.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,false,false,"Incubator log, probe export, or time-stamped photo.",Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0154,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-0h,0 h,visible_precipitate,image_or_scoring_worksheet,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,false,false,Time-stamped image or vendor inspection report.,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0155,ZRC-ND Phase A,B4_ZRC_external_osmolality,ZRCND-A-no_module_static_control-R1-0h,0 h,osmolality_final_mOsm_kg,osmometer_report_or_export,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,false,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0156,ZRC-ND Phase A,B4_ZRC_external_osmolality,ZRCND-A-no_module_static_control-R1-0h,0 h,osmolality_initial_mOsm_kg,osmometer_report_or_export,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,false,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0157,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-0h,0 h,date,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_date_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.",Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0158,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-0h,0 h,medium_lot,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,false,false,"Lot CoA, bottle label image, or chain-of-custody record.",Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0159,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-0h,0 h,medium_name,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0160,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-24h,24 h,conductivity_final_mS_cm,conductivity_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,false,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0161,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-24h,24 h,conductivity_initial_mS_cm,conductivity_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,false,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0162,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-24h,24 h,exposure_time_h,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_exposure_time_h_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,false,false,Incubation start/stop log or vendor report.,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0163,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-24h,24 h,initial_volume_ml,swelling_dimension_or_mass_worksheet,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,false,false,Pipetting worksheet or balance/volume log.,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0164,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-24h,24 h,pH_final,pH_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_pH_final_pH_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,false,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0165,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-24h,24 h,pH_initial,pH_meter_export_or_photo,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_pH_initial_pH_meter_export_or_photo.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,false,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0166,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-24h,24 h,temperature_c,temperature_or_incubator_log,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_temperature_c_temperature_or_incubator_log.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,false,false,"Incubator log, probe export, or time-stamped photo.",Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0167,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-24h,24 h,visible_precipitate,image_or_scoring_worksheet,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,false,false,Time-stamped image or vendor inspection report.,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0168,ZRC-ND Phase A,B4_ZRC_external_osmolality,ZRCND-A-no_module_static_control-R1-24h,24 h,osmolality_final_mOsm_kg,osmometer_report_or_export,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,false,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0169,ZRC-ND Phase A,B4_ZRC_external_osmolality,ZRCND-A-no_module_static_control-R1-24h,24 h,osmolality_initial_mOsm_kg,osmometer_report_or_export,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,false,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0170,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-24h,24 h,date,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_date_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.",Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0171,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-24h,24 h,medium_lot,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,false,false,"Lot CoA, bottle label image, or chain-of-custody record.",Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0172,ZRC-ND Phase A,B3_ZRC_parallel_local,ZRCND-A-no_module_static_control-R1-24h,24 h,medium_name,bench_or_chain_of_custody_record,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. diff --git a/data/limina_smoke_source_drop_plan.json b/data/limina_smoke_source_drop_plan.json deleted file mode 100644 index 46529cd..0000000 --- a/data/limina_smoke_source_drop_plan.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "boundary": "This creates directories and a source-file plan only. It does not create raw measurement files or measured evidence.", - "created_source_dirs": [], - "generated_artifacts": { - "csv": "data/limina_smoke_source_drop_plan.csv", - "json": "data/limina_smoke_source_drop_plan.json", - "report": "reports/limina_smoke_source_drop_plan.md" - }, - "inputs": { - "entry_sheet": "data/limina_smoke_entry_sheet.csv" - }, - "source_dirs_missing_files": [ - "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h", - "data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h" - ], - "status": "smoke_source_drop_plan_ready", - "summary": { - "batch_counts": { - "B0_HA_setup_records": 42, - "B1_HA_local_measurements": 60, - "B2_HA_osmolality_external": 12, - "B3_ZRC_parallel_local": 50, - "B4_ZRC_external_osmolality": 8 - }, - "created_source_dir_count": 0, - "existing_source_file_count": 0, - "h_a_rows": 114, - "missing_source_file_count": 172, - "planned_source_file_count": 172, - "ready_for_apply_rows": 0, - "source_dir_count": 10, - "zrc_rows": 58 - } -} \ No newline at end of file diff --git a/data/limina_smoke_source_value_import.json b/data/limina_smoke_source_value_import.json deleted file mode 100644 index 2ac0023..0000000 --- a/data/limina_smoke_source_value_import.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "accepted_sidecar_schema": [ - "queue_id", - "run_id", - "sample_event", - "target_field", - "value", - "measured_at", - "operator_or_agent", - "instrument_id", - "source_file", - "notes", - "apply" - ], - "boundary": "This importer only copies real, source-file-backed values into the smoke entry sheet. It does not create measured evidence; apply, preflight, merge, QC, and claim audit still control the gate.", - "imported_rows": [], - "inputs": { - "entry_sheet": "data/limina_smoke_entry_sheet.csv", - "source_drop_plan": "data/limina_smoke_source_drop_plan.csv", - "source_manifest": "data/limina_source_file_manifest.json", - "value_globs": [ - "data/source_files/smoke/h_a/**/limina_values.csv", - "data/source_files/smoke/zrc_nd_phase_a/**/limina_values.csv" - ] - }, - "issues": [], - "source_value_files": [ - "data/limina_smoke_raw_csv_extracted_values.csv", - "data/limina_smoke_source_values.csv", - "data/limina_smoke_unstructured_review_values.csv" - ], - "status": "smoke_source_value_import_no_importable_rows", - "summary": { - "changed_rows": 0, - "error_count": 0, - "imported_rows": 0, - "invalid_rows": 0, - "skipped_blank_rows": 182, - "source_value_files": 3, - "source_value_rows": 182, - "unchanged_rows": 0, - "warning_count": 0 - } -} \ No newline at end of file diff --git a/data/limina_smoke_source_values.csv b/data/limina_smoke_source_values.csv deleted file mode 100644 index 9370171..0000000 --- a/data/limina_smoke_source_values.csv +++ /dev/null @@ -1,173 +0,0 @@ -queue_id,run_id,sample_event,target_field,value,measured_at,operator_or_agent,instrument_id,source_file,notes,apply,priority,batch,branch,route,unit,instrument_class,instrument_required,source_class,recommended_round,starter_batch,source_dir,source_file_exists,source_file_requirement,capture_instruction -SQ-0001,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,date,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0002,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_name,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0003,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_lot,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,"Lot CoA, bottle label image, or chain-of-custody record.","Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0004,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,temperature_c,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,C,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,"Incubator log, probe export, or time-stamped photo.","Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0005,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,mea_coupon_id,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,"Build sheet, sample label, or chain-of-custody record.","Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0006,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,electrode_material,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,"Supplier documentation, build sheet, or sample label record.","Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0007,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,laminin_or_peptide_density,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,"Recipe record, supplier CoA, coating log, or build sheet.","Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0008,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,"SOP identifier, batch record, or chain-of-custody record.","Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0009,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,pH,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0010,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R2_h_a_osmolality_external,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0011,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,conductivity,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0012,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,pH,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0013,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R2_h_a_osmolality_external,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0014,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,conductivity,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0015,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_precipitate,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,Time-stamped image or vendor inspection report.,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0016,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_shedding,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,Time-stamped image or microscopy/stereoscope export.,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0017,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,swelling_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0018,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,delamination_score,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,Image plus scoring worksheet or vendor image-analysis report.,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0019,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,optical_transparency_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,false,Image-analysis export or vendor microscopy report.,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0020,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,date,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0021,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_name,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0022,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_lot,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,"Lot CoA, bottle label image, or chain-of-custody record.","Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0023,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,temperature_c,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,C,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,"Incubator log, probe export, or time-stamped photo.","Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0024,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,mea_coupon_id,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,"Build sheet, sample label, or chain-of-custody record.","Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0025,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,electrode_material,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,"Supplier documentation, build sheet, or sample label record.","Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0026,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,laminin_or_peptide_density,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,"Recipe record, supplier CoA, coating log, or build sheet.","Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0027,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,"SOP identifier, batch record, or chain-of-custody record.","Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0028,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,pH,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0029,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R2_h_a_osmolality_external,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0030,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,conductivity,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0031,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,pH,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0032,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R2_h_a_osmolality_external,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0033,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,conductivity,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0034,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_precipitate,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,Time-stamped image or vendor inspection report.,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0035,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_shedding,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,Time-stamped image or microscopy/stereoscope export.,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0036,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,swelling_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0037,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,delamination_score,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,Image plus scoring worksheet or vendor image-analysis report.,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0038,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,optical_transparency_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,false,Image-analysis export or vendor microscopy report.,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0039,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,date,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0040,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_name,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0041,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_lot,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,"Lot CoA, bottle label image, or chain-of-custody record.","Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0042,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,temperature_c,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,C,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,"Incubator log, probe export, or time-stamped photo.","Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0043,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,mea_coupon_id,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,"Build sheet, sample label, or chain-of-custody record.","Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0044,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,electrode_material,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,"Supplier documentation, build sheet, or sample label record.","Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0045,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,laminin_or_peptide_density,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,"Recipe record, supplier CoA, coating log, or build sheet.","Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0046,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,"SOP identifier, batch record, or chain-of-custody record.","Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0047,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,pH,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0048,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R2_h_a_osmolality_external,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0049,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,conductivity,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0050,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,pH,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0051,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R2_h_a_osmolality_external,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0052,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,conductivity,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0053,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_precipitate,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,Time-stamped image or vendor inspection report.,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0054,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_shedding,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,Time-stamped image or microscopy/stereoscope export.,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0055,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,swelling_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0056,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,delamination_score,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,Image plus scoring worksheet or vendor image-analysis report.,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0057,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,optical_transparency_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,false,Image-analysis export or vendor microscopy report.,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0058,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,date,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0059,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_name,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0060,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_lot,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,"Lot CoA, bottle label image, or chain-of-custody record.","Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0061,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,temperature_c,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,C,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,"Incubator log, probe export, or time-stamped photo.","Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0062,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,mea_coupon_id,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,"Build sheet, sample label, or chain-of-custody record.","Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0063,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,electrode_material,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,"Supplier documentation, build sheet, or sample label record.","Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0064,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,laminin_or_peptide_density,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,"Recipe record, supplier CoA, coating log, or build sheet.","Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0065,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,"SOP identifier, batch record, or chain-of-custody record.","Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0066,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,pH,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0067,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R2_h_a_osmolality_external,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0068,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,conductivity,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0069,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,pH,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0070,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R2_h_a_osmolality_external,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0071,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,conductivity,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0072,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_precipitate,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,Time-stamped image or vendor inspection report.,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0073,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_shedding,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,Time-stamped image or microscopy/stereoscope export.,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0074,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,swelling_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0075,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,delamination_score,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,Image plus scoring worksheet or vendor image-analysis report.,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0076,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,optical_transparency_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,false,Image-analysis export or vendor microscopy report.,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0077,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,date,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0078,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_name,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0079,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_lot,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,"Lot CoA, bottle label image, or chain-of-custody record.","Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0080,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,temperature_c,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,C,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,"Incubator log, probe export, or time-stamped photo.","Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0081,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,mea_coupon_id,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,"Build sheet, sample label, or chain-of-custody record.","Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0082,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,electrode_material,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,"Supplier documentation, build sheet, or sample label record.","Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0083,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,laminin_or_peptide_density,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,"Recipe record, supplier CoA, coating log, or build sheet.","Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0084,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,"SOP identifier, batch record, or chain-of-custody record.","Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0085,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,pH,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_pH_initial_pH_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0086,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R2_h_a_osmolality_external,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0087,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,conductivity,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0088,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,pH,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_pH_final_pH_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0089,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R2_h_a_osmolality_external,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0090,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,conductivity,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0091,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_precipitate,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,Time-stamped image or vendor inspection report.,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0092,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_shedding,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,Time-stamped image or microscopy/stereoscope export.,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0093,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,swelling_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0094,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,delamination_score,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,Image plus scoring worksheet or vendor image-analysis report.,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0095,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,optical_transparency_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R1_h_a_local_and_records,false,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,false,Image-analysis export or vendor microscopy report.,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0096,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0097,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0098,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Lot CoA, bottle label image, or chain-of-custody record.","Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0099,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,C,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Incubator log, probe export, or time-stamped photo.","Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0100,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Build sheet, sample label, or chain-of-custody record.","Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0101,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Supplier documentation, build sheet, or sample label record.","Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0102,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Recipe record, supplier CoA, coating log, or build sheet.","Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0103,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"SOP identifier, batch record, or chain-of-custody record.","Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0104,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0105,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0106,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0107,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0108,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0109,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0110,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,Time-stamped image or vendor inspection report.,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0111,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,Time-stamped image or microscopy/stereoscope export.,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0112,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0113,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,Image plus scoring worksheet or vendor image-analysis report.,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0114,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,Image-analysis export or vendor microscopy report.,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0115,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,conductivity_final_mS_cm,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0116,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,conductivity_initial_mS_cm,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0117,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,exposure_time_h,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_exposure_time_h_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,h,bench_log,true,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,Incubation start/stop log or vendor report.,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0118,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,initial_volume_ml,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,mL,bench_log,true,swelling_dimension_or_mass_worksheet,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,Pipetting worksheet or balance/volume log.,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0119,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,pH_final,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_pH_final_pH_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0120,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,pH_initial,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_pH_initial_pH_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0121,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,temperature_c,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_temperature_c_temperature_or_incubator_log.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,C,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,"Incubator log, probe export, or time-stamped photo.",Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0122,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,visible_precipitate,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_visible_precipitate_image_or_scoring_worksheet.png,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,Time-stamped image or vendor inspection report.,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0123,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,osmolality_final_mOsm_kg,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R4_zrc_osmolality_external,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0124,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,osmolality_initial_mOsm_kg,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R4_zrc_osmolality_external,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0125,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,date,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_date_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,"Bench sheet, vendor report, or chain-of-custody CSV.",Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0126,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,medium_lot,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_medium_lot_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,"Lot CoA, bottle label image, or chain-of-custody record.",Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0127,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,medium_name,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_medium_name_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0128,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,membrane_area_cm2,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_membrane_area_cm2_swelling_dimension_or_mass_worksheet.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,cm2,record_review,false,swelling_dimension_or_mass_worksheet,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,"Build drawing, measurement worksheet, or supplier documentation.",Capture membrane_area_cm2 with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0129,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,membrane_lot,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_membrane_lot_supplier_or_build_record.pdf,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,"Supplier label, CoA, build sheet, or chain-of-custody record.",Record build/supplier provenance for membrane_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0130,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,0 h,prefilter_lot,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/0_h_prefilter_lot_supplier_or_build_record.pdf,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,false,"Supplier label, build sheet, or chain-of-custody record.",Record build/supplier provenance for prefilter_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0131,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,conductivity_final_mS_cm,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0132,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,conductivity_initial_mS_cm,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0133,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,exposure_time_h,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_exposure_time_h_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,h,bench_log,true,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,Incubation start/stop log or vendor report.,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0134,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,initial_volume_ml,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,mL,bench_log,true,swelling_dimension_or_mass_worksheet,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,Pipetting worksheet or balance/volume log.,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0135,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,pH_final,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_pH_final_pH_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0136,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,pH_initial,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_pH_initial_pH_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0137,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,temperature_c,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_temperature_c_temperature_or_incubator_log.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,C,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,"Incubator log, probe export, or time-stamped photo.",Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0138,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,visible_precipitate,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_visible_precipitate_image_or_scoring_worksheet.png,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,Time-stamped image or vendor inspection report.,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0139,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,osmolality_final_mOsm_kg,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R4_zrc_osmolality_external,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0140,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,osmolality_initial_mOsm_kg,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R4_zrc_osmolality_external,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0141,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,date,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_date_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,"Bench sheet, vendor report, or chain-of-custody CSV.",Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0142,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,medium_lot,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_medium_lot_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,"Lot CoA, bottle label image, or chain-of-custody record.",Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0143,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,medium_name,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_medium_name_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0144,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,membrane_area_cm2,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_membrane_area_cm2_swelling_dimension_or_mass_worksheet.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,cm2,record_review,false,swelling_dimension_or_mass_worksheet,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,"Build drawing, measurement worksheet, or supplier documentation.",Capture membrane_area_cm2 with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0145,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,membrane_lot,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_membrane_lot_supplier_or_build_record.pdf,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,"Supplier label, CoA, build sheet, or chain-of-custody record.",Record build/supplier provenance for membrane_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0146,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,24 h,prefilter_lot,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/24_h_prefilter_lot_supplier_or_build_record.pdf,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,false,"Supplier label, build sheet, or chain-of-custody record.",Record build/supplier provenance for prefilter_lot; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0147,ZRCND-A-no_module_static_control-R1-0h,0 h,conductivity_final_mS_cm,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0148,ZRCND-A-no_module_static_control-R1-0h,0 h,conductivity_initial_mS_cm,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0149,ZRCND-A-no_module_static_control-R1-0h,0 h,exposure_time_h,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_exposure_time_h_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,h,bench_log,true,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,Incubation start/stop log or vendor report.,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0150,ZRCND-A-no_module_static_control-R1-0h,0 h,initial_volume_ml,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,mL,bench_log,true,swelling_dimension_or_mass_worksheet,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,Pipetting worksheet or balance/volume log.,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0151,ZRCND-A-no_module_static_control-R1-0h,0 h,pH_final,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_pH_final_pH_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0152,ZRCND-A-no_module_static_control-R1-0h,0 h,pH_initial,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_pH_initial_pH_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0153,ZRCND-A-no_module_static_control-R1-0h,0 h,temperature_c,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_temperature_c_temperature_or_incubator_log.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,C,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,"Incubator log, probe export, or time-stamped photo.",Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0154,ZRCND-A-no_module_static_control-R1-0h,0 h,visible_precipitate,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_visible_precipitate_image_or_scoring_worksheet.png,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,Time-stamped image or vendor inspection report.,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0155,ZRCND-A-no_module_static_control-R1-0h,0 h,osmolality_final_mOsm_kg,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R4_zrc_osmolality_external,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0156,ZRCND-A-no_module_static_control-R1-0h,0 h,osmolality_initial_mOsm_kg,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R4_zrc_osmolality_external,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0157,ZRCND-A-no_module_static_control-R1-0h,0 h,date,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_date_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,"Bench sheet, vendor report, or chain-of-custody CSV.",Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0158,ZRCND-A-no_module_static_control-R1-0h,0 h,medium_lot,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_medium_lot_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,"Lot CoA, bottle label image, or chain-of-custody record.",Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0159,ZRCND-A-no_module_static_control-R1-0h,0 h,medium_name,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/0_h_medium_name_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0160,ZRCND-A-no_module_static_control-R1-24h,24 h,conductivity_final_mS_cm,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_final_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0161,ZRCND-A-no_module_static_control-R1-24h,24 h,conductivity_initial_mS_cm,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,"Conductivity meter export, calibration log, or display photo.",Capture conductivity_initial_mS_cm with calibrated_conductivity_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0162,ZRCND-A-no_module_static_control-R1-24h,24 h,exposure_time_h,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_exposure_time_h_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,h,bench_log,true,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,Incubation start/stop log or vendor report.,Capture exposure_time_h with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0163,ZRCND-A-no_module_static_control-R1-24h,24 h,initial_volume_ml,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_initial_volume_ml_swelling_dimension_or_mass_worksheet.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,mL,bench_log,true,swelling_dimension_or_mass_worksheet,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,Pipetting worksheet or balance/volume log.,Capture initial_volume_ml with bench_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0164,ZRCND-A-no_module_static_control-R1-24h,24 h,pH_final,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_pH_final_pH_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_final with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0165,ZRCND-A-no_module_static_control-R1-24h,24 h,pH_initial,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_pH_initial_pH_meter_export_or_photo.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,"Meter export, calibration log, or time-stamped display photo.",Capture pH_initial with calibrated_pH_meter; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0166,ZRCND-A-no_module_static_control-R1-24h,24 h,temperature_c,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_temperature_c_temperature_or_incubator_log.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,C,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,"Incubator log, probe export, or time-stamped photo.",Capture temperature_c with temperature_probe_or_incubator_log; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0167,ZRCND-A-no_module_static_control-R1-24h,24 h,visible_precipitate,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_visible_precipitate_image_or_scoring_worksheet.png,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,Time-stamped image or vendor inspection report.,Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0168,ZRCND-A-no_module_static_control-R1-24h,24 h,osmolality_final_mOsm_kg,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R4_zrc_osmolality_external,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_final_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0169,ZRCND-A-no_module_static_control-R1-24h,24 h,osmolality_initial_mOsm_kg,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,5,B4_ZRC_external_osmolality,ZRC-ND Phase A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R4_zrc_osmolality_external,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,Osmometer report/export reconciled to run_id.,Obtain external report/export for osmolality_initial_mOsm_kg; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0170,ZRCND-A-no_module_static_control-R1-24h,24 h,date,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_date_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,"Bench sheet, vendor report, or chain-of-custody CSV.",Capture date with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0171,ZRCND-A-no_module_static_control-R1-24h,24 h,medium_lot,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_medium_lot_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,"Lot CoA, bottle label image, or chain-of-custody record.",Capture medium_lot with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. -SQ-0172,ZRCND-A-no_module_static_control-R1-24h,24 h,medium_name,,,,,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/24_h_medium_name_bench_or_chain_of_custody_record.csv,,,4,B3_ZRC_parallel_local,ZRC-ND Phase A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R3_zrc_local_and_records,false,data/source_files/smoke/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",Capture medium_name with record_review; Fill the target wide-field value on the run_id row; append all supporting files to the row-level source_file field separated by semicolons. diff --git a/data/limina_smoke_source_values_sheet.json b/data/limina_smoke_source_values_sheet.json deleted file mode 100644 index 684a82b..0000000 --- a/data/limina_smoke_source_values_sheet.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "boundary": "This is a fillable intake sheet for source-backed values only. It is not a raw source file and does not count as measured evidence.", - "generated_artifacts": { - "json": "data/limina_smoke_source_values_sheet.json", - "report": "reports/limina_smoke_source_values_sheet.md", - "sheet": "data/limina_smoke_source_values.csv", - "starter_batch": "data/limina_smoke_source_values_starter_batch.csv" - }, - "inputs": { - "entry_sheet": "data/limina_smoke_entry_sheet.csv", - "source_drop_plan": "data/limina_smoke_source_drop_plan.csv" - }, - "status": "smoke_source_values_sheet_ready", - "summary": { - "batch_counts": { - "B0_HA_setup_records": 42, - "B1_HA_local_measurements": 60, - "B2_HA_osmolality_external": 12, - "B3_ZRC_parallel_local": 50, - "B4_ZRC_external_osmolality": 8 - }, - "filled_value_rows": 0, - "import_ready_rows": 0, - "recommended_round_counts": { - "R0_pipeline_debug_single_h_a_lead_24h": 19, - "R1_h_a_local_and_records": 85, - "R2_h_a_osmolality_external": 10, - "R3_zrc_local_and_records": 50, - "R4_zrc_osmolality_external": 8 - }, - "source_file_exists_rows": 0, - "source_value_rows": 172, - "starter_batch_rows": 19 - } -} \ No newline at end of file diff --git a/data/limina_smoke_source_values_starter_batch.csv b/data/limina_smoke_source_values_starter_batch.csv deleted file mode 100644 index 586aad1..0000000 --- a/data/limina_smoke_source_values_starter_batch.csv +++ /dev/null @@ -1,20 +0,0 @@ -queue_id,run_id,sample_event,target_field,value,measured_at,operator_or_agent,instrument_id,source_file,notes,apply,priority,batch,branch,route,unit,instrument_class,instrument_required,source_class,recommended_round,starter_batch,source_dir,source_file_exists,source_file_requirement,capture_instruction -SQ-0096,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0097,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0098,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,bench_or_chain_of_custody_record,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Lot CoA, bottle label image, or chain-of-custody record.","Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0099,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,C,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Incubator log, probe export, or time-stamped photo.","Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0100,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Build sheet, sample label, or chain-of-custody record.","Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0101,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Supplier documentation, build sheet, or sample label record.","Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0102,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Recipe record, supplier CoA, coating log, or build sheet.","Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0103,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,1,B0_HA_setup_records,NHI-PEDOT H-A,supplier_or_build_record,,record_review,false,supplier_or_build_record,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"SOP identifier, batch record, or chain-of-custody record.","Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0104,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0105,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0106,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0107,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,pH,calibrated_pH_meter,true,pH_meter_export_or_photo,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0108,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,3,B2_HA_osmolality_external,NHI-PEDOT H-A,outsourced_preferred,mOsm/kg,osmometer_or_external_lab,true,osmometer_report_or_export,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0109,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,mS/cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0110,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,Time-stamped image or vendor inspection report.,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0111,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,bool,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,Time-stamped image or microscopy/stereoscope export.,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0112,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0113,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,Image plus scoring worksheet or vendor image-analysis report.,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0114,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,2,B1_HA_local_measurements,NHI-PEDOT H-A,inhouse_ready,fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,R0_pipeline_debug_single_h_a_lead_24h,true,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,Image-analysis export or vendor microscopy report.,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." diff --git a/data/limina_smoke_starter_batch_readiness.csv b/data/limina_smoke_starter_batch_readiness.csv deleted file mode 100644 index 3a2c41a..0000000 --- a/data/limina_smoke_starter_batch_readiness.csv +++ /dev/null @@ -1,20 +0,0 @@ -queue_id,run_id,sample_event,target_field,branch,batch,instrument_required,value_status,metadata_status,source_status,ready_for_import,missing_items,source_file,source_file_requirement,capture_instruction -SQ-0096,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,NHI-PEDOT H-A,B0_HA_setup_records,false,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,"Bench sheet, vendor report, or chain-of-custody CSV.","Capture date with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0097,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,NHI-PEDOT H-A,B0_HA_setup_records,false,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.","Capture medium_name with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0098,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,NHI-PEDOT H-A,B0_HA_setup_records,false,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Lot CoA, bottle label image, or chain-of-custody record.","Capture medium_lot with record_review; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0099,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,NHI-PEDOT H-A,B1_HA_local_measurements,true,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,"Incubator log, probe export, or time-stamped photo.","Capture temperature_c with temperature_probe_or_incubator_log; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0100,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,NHI-PEDOT H-A,B0_HA_setup_records,false,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Build sheet, sample label, or chain-of-custody record.","Record build/supplier provenance for mea_coupon_id; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0101,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,NHI-PEDOT H-A,B0_HA_setup_records,false,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,"Supplier documentation, build sheet, or sample label record.","Record build/supplier provenance for electrode_material; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0102,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,NHI-PEDOT H-A,B0_HA_setup_records,false,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Recipe record, supplier CoA, coating log, or build sheet.","Record build/supplier provenance for laminin_or_peptide_density; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0103,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,NHI-PEDOT H-A,B0_HA_setup_records,false,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"SOP identifier, batch record, or chain-of-custody record.","Record build/supplier provenance for sterilization_or_aseptic_protocol; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0104,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,NHI-PEDOT H-A,B1_HA_local_measurements,true,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0105,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,NHI-PEDOT H-A,B2_HA_osmolality_external,true,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0106,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,NHI-PEDOT H-A,B1_HA_local_measurements,true,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0107,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,NHI-PEDOT H-A,B1_HA_local_measurements,true,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Capture pH with calibrated_pH_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0108,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,NHI-PEDOT H-A,B2_HA_osmolality_external,true,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,"Obtain external report/export for osmolality; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0109,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,NHI-PEDOT H-A,B1_HA_local_measurements,true,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Capture conductivity with calibrated_conductivity_meter; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0110,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,NHI-PEDOT H-A,B1_HA_local_measurements,true,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,Time-stamped image or vendor inspection report.,"Capture visible_precipitate with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0111,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,NHI-PEDOT H-A,B1_HA_local_measurements,true,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,Time-stamped image or microscopy/stereoscope export.,"Capture visible_shedding with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0112,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,NHI-PEDOT H-A,B1_HA_local_measurements,true,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Image analysis export, caliper log, or mass/dimension worksheet.","Capture swelling_fraction with caliper_balance_or_image_analysis; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0113,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,NHI-PEDOT H-A,B1_HA_local_measurements,true,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,Image plus scoring worksheet or vendor image-analysis report.,"Capture delamination_score with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." -SQ-0114,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,NHI-PEDOT H-A,B1_HA_local_measurements,true,missing_or_rejected,missing_or_rejected,missing_or_rejected,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,Image-analysis export or vendor microscopy report.,"Capture optical_transparency_fraction with imaging_station_or_scoring_sheet; Fill the matching long-form row value plus measured_at, operator_or_agent, instrument_id when measured, and source_file." diff --git a/data/limina_smoke_starter_batch_readiness.json b/data/limina_smoke_starter_batch_readiness.json deleted file mode 100644 index 6df5588..0000000 --- a/data/limina_smoke_starter_batch_readiness.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "boundary": "Starter readiness only checks whether rows can be imported. It is not measured evidence and cannot satisfy any material suitability claim.", - "generated_artifacts": { - "csv": "data/limina_smoke_starter_batch_readiness.csv", - "json": "data/limina_smoke_starter_batch_readiness.json", - "report": "reports/limina_smoke_starter_batch_readiness.md" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/limina_smoke_source_values.csv", - "starter_round": "R0_pipeline_debug_single_h_a_lead_24h" - }, - "post_ready_command": "python3 scripts/run_limina_iteration.py", - "status": "smoke_starter_batch_awaiting_values", - "summary": { - "blocked_rows": 19, - "filled_value_rows": 0, - "missing_item_counts": { - "instrument_id": 12, - "measured_at": 19, - "operator_or_agent": 19, - "source_file_missing": 19, - "value": 19 - }, - "ready_for_import_rows": 0, - "source_file_exists_rows": 0, - "starter_rows": 19 - } -} \ No newline at end of file diff --git a/data/limina_smoke_starter_execution_pack.csv b/data/limina_smoke_starter_execution_pack.csv deleted file mode 100644 index c095311..0000000 --- a/data/limina_smoke_starter_execution_pack.csv +++ /dev/null @@ -1,20 +0,0 @@ -sequence,queue_id,run_id,sample_event,target_field,unit,source_class,source_file,source_dir,source_file_exists,accepted_extensions,required_source_metadata,value_entry_hint,instrument_required,instrument_class,ready_for_import,missing_items,operator_action -1,SQ-0096,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,"run_id or sample_id, operator, date, transfer or exposure event",Record the actual measurement or exposure date in ISO format.,false,record_review,false,measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv`, verify it includes run_id or sample_id, operator, date, transfer or exposure event, then fill queue_id `SQ-0096` in data/limina_smoke_source_values.csv." -2,SQ-0097,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,"run_id or sample_id, operator, date, transfer or exposure event","Record the exact medium name from the bottle, CoA, or chain-of-custody record.",false,record_review,false,measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv`, verify it includes run_id or sample_id, operator, date, transfer or exposure event, then fill queue_id `SQ-0097` in data/limina_smoke_source_values.csv." -3,SQ-0098,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,,bench_or_chain_of_custody_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,"run_id or sample_id, operator, date, transfer or exposure event",Record the exact lot identifier from source documentation.,false,record_review,false,measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv`, verify it includes run_id or sample_id, operator, date, transfer or exposure event, then fill queue_id `SQ-0098` in data/limina_smoke_source_values.csv." -4,SQ-0099,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,C,temperature_or_incubator_log,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id or batch window, date/time, temperature source",Record the measured temperature in Celsius.,true,temperature_probe_or_incubator_log,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv`, verify it includes run_id or batch window, date/time, temperature source, then fill queue_id `SQ-0099` in data/limina_smoke_source_values.csv." -5,SQ-0100,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,"lot, recipe, CoA, label, or build identifier",Record the exact MEA/coupon/sample identifier.,false,record_review,false,measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf`, verify it includes lot, recipe, CoA, label, or build identifier, then fill queue_id `SQ-0100` in data/limina_smoke_source_values.csv." -6,SQ-0101,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,"lot, recipe, CoA, label, or build identifier",Record the exact electrode material from the build or supplier record.,false,record_review,false,measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf`, verify it includes lot, recipe, CoA, label, or build identifier, then fill queue_id `SQ-0101` in data/limina_smoke_source_values.csv." -7,SQ-0102,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,"lot, recipe, CoA, label, or build identifier",Record the actual coating density or recipe identifier.,false,record_review,false,measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf`, verify it includes lot, recipe, CoA, label, or build identifier, then fill queue_id `SQ-0102` in data/limina_smoke_source_values.csv." -8,SQ-0103,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,"lot, recipe, CoA, label, or build identifier","Record the exact SOP, batch, or protocol identifier.",false,record_review,false,measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf`, verify it includes lot, recipe, CoA, label, or build identifier, then fill queue_id `SQ-0103` in data/limina_smoke_source_values.csv." -9,SQ-0104,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,pH,pH_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id, measurement date, instrument_id or calibration record",Record the measured pH value from a calibrated meter or reconciled display photo.,true,calibrated_pH_meter,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv`, verify it includes run_id, measurement date, instrument_id or calibration record, then fill queue_id `SQ-0104` in data/limina_smoke_source_values.csv." -10,SQ-0105,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,mOsm/kg,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,"run_id, mOsm/kg value, vendor or osmometer identifier",Record the measured osmolality in mOsm/kg from the osmometer report.,true,osmometer_or_external_lab,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf`, verify it includes run_id, mOsm/kg value, vendor or osmometer identifier, then fill queue_id `SQ-0105` in data/limina_smoke_source_values.csv." -11,SQ-0106,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,mS/cm,conductivity_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id, measurement date, instrument_id or standard-check record",Record the measured conductivity in mS/cm.,true,calibrated_conductivity_meter,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv`, verify it includes run_id, measurement date, instrument_id or standard-check record, then fill queue_id `SQ-0106` in data/limina_smoke_source_values.csv." -12,SQ-0107,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,pH,pH_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id, measurement date, instrument_id or calibration record",Record the measured pH value from a calibrated meter or reconciled display photo.,true,calibrated_pH_meter,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_final_pH_meter_export_or_photo.csv`, verify it includes run_id, measurement date, instrument_id or calibration record, then fill queue_id `SQ-0107` in data/limina_smoke_source_values.csv." -13,SQ-0108,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,mOsm/kg,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,"run_id, mOsm/kg value, vendor or osmometer identifier",Record the measured osmolality in mOsm/kg from the osmometer report.,true,osmometer_or_external_lab,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf`, verify it includes run_id, mOsm/kg value, vendor or osmometer identifier, then fill queue_id `SQ-0108` in data/limina_smoke_source_values.csv." -14,SQ-0109,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,mS/cm,conductivity_meter_export_or_photo,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id, measurement date, instrument_id or standard-check record",Record the measured conductivity in mS/cm.,true,calibrated_conductivity_meter,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv`, verify it includes run_id, measurement date, instrument_id or standard-check record, then fill queue_id `SQ-0109` in data/limina_smoke_source_values.csv." -15,SQ-0110,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,bool,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic;.tif;.tiff,"run_id, imaging/scoring method, operator or vendor",Record the actual scored boolean from the image or worksheet.,true,imaging_station_or_scoring_sheet,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png`, verify it includes run_id, imaging/scoring method, operator or vendor, then fill queue_id `SQ-0110` in data/limina_smoke_source_values.csv." -16,SQ-0111,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,bool,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic;.tif;.tiff,"run_id, imaging/scoring method, operator or vendor",Record the actual scored boolean from the image or worksheet.,true,imaging_station_or_scoring_sheet,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png`, verify it includes run_id, imaging/scoring method, operator or vendor, then fill queue_id `SQ-0111` in data/limina_smoke_source_values.csv." -17,SQ-0112,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,fraction,swelling_dimension_or_mass_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,"run_id, pre/post measurement basis, method, operator",Record the calculated swelling fraction from raw dimensions or mass.,true,caliper_balance_or_image_analysis,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv`, verify it includes run_id, pre/post measurement basis, method, operator, then fill queue_id `SQ-0112` in data/limina_smoke_source_values.csv." -18,SQ-0113,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,score,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic;.tif;.tiff,"run_id, imaging/scoring method, operator or vendor",Record the actual score from the image/scoring worksheet.,true,imaging_station_or_scoring_sheet,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png`, verify it includes run_id, imaging/scoring method, operator or vendor, then fill queue_id `SQ-0113` in data/limina_smoke_source_values.csv." -19,SQ-0114,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,fraction,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,false,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic;.tif;.tiff,"run_id, imaging/scoring method, operator or vendor",Record the calculated transparency fraction from image analysis.,true,imaging_station_or_scoring_sheet,false,instrument_id;measured_at;operator_or_agent;source_file_missing;value,"Place the real source file at `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png`, verify it includes run_id, imaging/scoring method, operator or vendor, then fill queue_id `SQ-0114` in data/limina_smoke_source_values.csv." diff --git a/data/limina_smoke_starter_execution_pack.json b/data/limina_smoke_starter_execution_pack.json deleted file mode 100644 index 589b000..0000000 --- a/data/limina_smoke_starter_execution_pack.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "boundary": "This execution pack is an operational checklist only. It does not create raw files, measured rows, or material-suitability evidence.", - "generated_artifacts": { - "csv": "data/limina_smoke_starter_execution_pack.csv", - "json": "data/limina_smoke_starter_execution_pack.json", - "report": "reports/limina_smoke_starter_execution_pack.md" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/limina_smoke_source_values.csv", - "starter_readiness": "data/limina_smoke_starter_batch_readiness.csv" - }, - "post_fill_commands": [ - "python3 scripts/audit_limina_smoke_starter_batch_readiness.py", - "python3 scripts/run_limina_iteration.py" - ], - "status": "smoke_starter_execution_pack_ready", - "summary": { - "blocked_rows": 19, - "ready_for_import_rows": 0, - "source_class_counts": { - "bench_or_chain_of_custody_record": 3, - "conductivity_meter_export_or_photo": 2, - "image_or_scoring_worksheet": 4, - "osmometer_report_or_export": 2, - "pH_meter_export_or_photo": 2, - "supplier_or_build_record": 4, - "swelling_dimension_or_mass_worksheet": 1, - "temperature_or_incubator_log": 1 - }, - "source_dir_count": 1, - "source_file_exists_rows": 0, - "starter_rows": 19 - } -} \ No newline at end of file diff --git a/data/limina_smoke_starter_raw_file_template_manifest.csv b/data/limina_smoke_starter_raw_file_template_manifest.csv deleted file mode 100644 index 2a74091..0000000 --- a/data/limina_smoke_starter_raw_file_template_manifest.csv +++ /dev/null @@ -1,9 +0,0 @@ -source_class,template_file,starter_row_count,target_source_files,accepted_extensions,required_source_metadata,template_columns,boundary -bench_or_chain_of_custody_record,data/limina_smoke_starter_raw_file_templates/source_class_templates/bench_or_chain_of_custody_record.csv,3,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv;data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv;data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,"run_id or sample_id, operator, date, transfer or exposure event",queue_id;run_id;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;method_or_record_id;notes;record_type;record_id;sample_id;medium_name;medium_lot;transfer_or_exposure_event,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -conductivity_meter_export_or_photo,data/limina_smoke_starter_raw_file_templates/source_class_templates/conductivity_meter_export_or_photo.csv,2,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id, measurement date, instrument_id or standard-check record",queue_id;run_id;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;method_or_record_id;notes;conductivity_mS_cm;conductivity_meter_id;standard_check_record_id;temperature_c,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -image_or_scoring_worksheet,data/limina_smoke_starter_raw_file_templates/source_class_templates/image_or_scoring_worksheet.csv,4,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png;data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png;data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png;data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic;.tif;.tiff,"run_id, imaging/scoring method, operator or vendor",queue_id;run_id;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;method_or_record_id;notes;image_file_name;imaging_method;scoring_method;score_or_boolean;reviewer,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -osmometer_report_or_export,data/limina_smoke_starter_raw_file_templates/source_class_templates/osmometer_report_or_export.csv,2,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,"run_id, mOsm/kg value, vendor or osmometer identifier",queue_id;run_id;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;method_or_record_id;notes;osmolality_mOsm_kg;osmometer_id;report_id;vendor_or_lab,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -pH_meter_export_or_photo,data/limina_smoke_starter_raw_file_templates/source_class_templates/pH_meter_export_or_photo.csv,2,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv;data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id, measurement date, instrument_id or calibration record",queue_id;run_id;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;method_or_record_id;notes;pH_value;pH_meter_id;calibration_record_id;temperature_c,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -supplier_or_build_record,data/limina_smoke_starter_raw_file_templates/source_class_templates/supplier_or_build_record.csv,4,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf;data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf;data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf;data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,"lot, recipe, CoA, label, or build identifier",queue_id;run_id;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;method_or_record_id;notes;supplier_or_builder;lot;recipe_or_coa_id;batch_id;label_or_build_record_id,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -swelling_dimension_or_mass_worksheet,data/limina_smoke_starter_raw_file_templates/source_class_templates/swelling_dimension_or_mass_worksheet.csv,1,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,"run_id, pre/post measurement basis, method, operator",queue_id;run_id;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;method_or_record_id;notes;pre_measurement;post_measurement;measurement_basis;calculation;swelling_fraction,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -temperature_or_incubator_log,data/limina_smoke_starter_raw_file_templates/source_class_templates/temperature_or_incubator_log.csv,1,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id or batch window, date/time, temperature source",queue_id;run_id;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;method_or_record_id;notes;temperature_c;temperature_source;covered_window_start;covered_window_end;probe_or_incubator_id,Template only; copy or export real instrument/report/worksheet data to the target source_file path. diff --git a/data/limina_smoke_starter_raw_file_template_pack.json b/data/limina_smoke_starter_raw_file_template_pack.json deleted file mode 100644 index bf76b77..0000000 --- a/data/limina_smoke_starter_raw_file_template_pack.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "boundary": "Templates are outside allowed source-file roots and are never measured evidence. Only real files placed at the target source_file paths can support a measured row.", - "generated_artifacts": { - "csv": "data/limina_smoke_starter_raw_file_template_manifest.csv", - "json": "data/limina_smoke_starter_raw_file_template_pack.json", - "report": "reports/limina_smoke_starter_raw_file_template_pack.md", - "template_dir": "data/limina_smoke_starter_raw_file_templates" - }, - "inputs": { - "execution_pack": "data/limina_smoke_starter_execution_pack.csv" - }, - "status": "smoke_starter_raw_file_template_pack_ready", - "summary": { - "generated_template_files": 8, - "source_class_template_count": 8, - "starter_rows": 19, - "target_extension_counts": { - ".csv": 9, - ".pdf": 6, - ".png": 4 - }, - "template_manifest_rows": 8 - }, - "templates": [ - "data/limina_smoke_starter_raw_file_templates/source_class_templates/bench_or_chain_of_custody_record.csv", - "data/limina_smoke_starter_raw_file_templates/source_class_templates/conductivity_meter_export_or_photo.csv", - "data/limina_smoke_starter_raw_file_templates/source_class_templates/image_or_scoring_worksheet.csv", - "data/limina_smoke_starter_raw_file_templates/source_class_templates/osmometer_report_or_export.csv", - "data/limina_smoke_starter_raw_file_templates/source_class_templates/pH_meter_export_or_photo.csv", - "data/limina_smoke_starter_raw_file_templates/source_class_templates/supplier_or_build_record.csv", - "data/limina_smoke_starter_raw_file_templates/source_class_templates/swelling_dimension_or_mass_worksheet.csv", - "data/limina_smoke_starter_raw_file_templates/source_class_templates/temperature_or_incubator_log.csv" - ] -} \ No newline at end of file diff --git a/data/limina_smoke_starter_raw_file_templates/source_class_templates/bench_or_chain_of_custody_record.csv b/data/limina_smoke_starter_raw_file_templates/source_class_templates/bench_or_chain_of_custody_record.csv deleted file mode 100644 index 8607220..0000000 --- a/data/limina_smoke_starter_raw_file_templates/source_class_templates/bench_or_chain_of_custody_record.csv +++ /dev/null @@ -1,4 +0,0 @@ -queue_id,run_id,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,method_or_record_id,notes,record_type,record_id,sample_id,medium_name,medium_lot,transfer_or_exposure_event -SQ-0096,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,,,,,,, -SQ-0097,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,,,,,,, -SQ-0098,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,, diff --git a/data/limina_smoke_starter_raw_file_templates/source_class_templates/conductivity_meter_export_or_photo.csv b/data/limina_smoke_starter_raw_file_templates/source_class_templates/conductivity_meter_export_or_photo.csv deleted file mode 100644 index 73babb0..0000000 --- a/data/limina_smoke_starter_raw_file_templates/source_class_templates/conductivity_meter_export_or_photo.csv +++ /dev/null @@ -1,3 +0,0 @@ -queue_id,run_id,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,method_or_record_id,notes,conductivity_mS_cm,conductivity_meter_id,standard_check_record_id,temperature_c -SQ-0106,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,,,,,mS/cm,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,,, -SQ-0109,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,,,,,mS/cm,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,,, diff --git a/data/limina_smoke_starter_raw_file_templates/source_class_templates/image_or_scoring_worksheet.csv b/data/limina_smoke_starter_raw_file_templates/source_class_templates/image_or_scoring_worksheet.csv deleted file mode 100644 index 1faaca7..0000000 --- a/data/limina_smoke_starter_raw_file_templates/source_class_templates/image_or_scoring_worksheet.csv +++ /dev/null @@ -1,5 +0,0 @@ -queue_id,run_id,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,method_or_record_id,notes,image_file_name,imaging_method,scoring_method,score_or_boolean,reviewer -SQ-0110,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,,,,,bool,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,,,,, -SQ-0111,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,,,,,bool,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,,,,, -SQ-0113,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,,,,,score,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,,,,, -SQ-0114,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,,,,,fraction,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,, diff --git a/data/limina_smoke_starter_raw_file_templates/source_class_templates/osmometer_report_or_export.csv b/data/limina_smoke_starter_raw_file_templates/source_class_templates/osmometer_report_or_export.csv deleted file mode 100644 index d343eda..0000000 --- a/data/limina_smoke_starter_raw_file_templates/source_class_templates/osmometer_report_or_export.csv +++ /dev/null @@ -1,3 +0,0 @@ -queue_id,run_id,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,method_or_record_id,notes,osmolality_mOsm_kg,osmometer_id,report_id,vendor_or_lab -SQ-0105,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,,,,,mOsm/kg,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,,, -SQ-0108,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,,,,,mOsm/kg,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,,, diff --git a/data/limina_smoke_starter_raw_file_templates/source_class_templates/pH_meter_export_or_photo.csv b/data/limina_smoke_starter_raw_file_templates/source_class_templates/pH_meter_export_or_photo.csv deleted file mode 100644 index 1666601..0000000 --- a/data/limina_smoke_starter_raw_file_templates/source_class_templates/pH_meter_export_or_photo.csv +++ /dev/null @@ -1,3 +0,0 @@ -queue_id,run_id,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,method_or_record_id,notes,pH_value,pH_meter_id,calibration_record_id,temperature_c -SQ-0104,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,,,,,pH,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_initial_pH_meter_export_or_photo.csv,,,,,, -SQ-0107,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,,,,,pH,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_final_pH_meter_export_or_photo.csv,,,,,, diff --git a/data/limina_smoke_starter_raw_file_templates/source_class_templates/supplier_or_build_record.csv b/data/limina_smoke_starter_raw_file_templates/source_class_templates/supplier_or_build_record.csv deleted file mode 100644 index 7682271..0000000 --- a/data/limina_smoke_starter_raw_file_templates/source_class_templates/supplier_or_build_record.csv +++ /dev/null @@ -1,5 +0,0 @@ -queue_id,run_id,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,method_or_record_id,notes,supplier_or_builder,lot,recipe_or_coa_id,batch_id,label_or_build_record_id -SQ-0100,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,,,,, -SQ-0101,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,,,,,, -SQ-0102,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,,,,, -SQ-0103,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,,,,, diff --git a/data/limina_smoke_starter_raw_file_templates/source_class_templates/swelling_dimension_or_mass_worksheet.csv b/data/limina_smoke_starter_raw_file_templates/source_class_templates/swelling_dimension_or_mass_worksheet.csv deleted file mode 100644 index 3d219b6..0000000 --- a/data/limina_smoke_starter_raw_file_templates/source_class_templates/swelling_dimension_or_mass_worksheet.csv +++ /dev/null @@ -1,2 +0,0 @@ -queue_id,run_id,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,method_or_record_id,notes,pre_measurement,post_measurement,measurement_basis,calculation,swelling_fraction -SQ-0112,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,,,,,fraction,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,, diff --git a/data/limina_smoke_starter_raw_file_templates/source_class_templates/temperature_or_incubator_log.csv b/data/limina_smoke_starter_raw_file_templates/source_class_templates/temperature_or_incubator_log.csv deleted file mode 100644 index 36de3b7..0000000 --- a/data/limina_smoke_starter_raw_file_templates/source_class_templates/temperature_or_incubator_log.csv +++ /dev/null @@ -1,2 +0,0 @@ -queue_id,run_id,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,method_or_record_id,notes,temperature_c,temperature_source,covered_window_start,covered_window_end,probe_or_incubator_id -SQ-0099,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,,,,,C,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,,,,,, diff --git a/data/limina_smoke_unstructured_review_values.csv b/data/limina_smoke_unstructured_review_values.csv deleted file mode 100644 index 6707250..0000000 --- a/data/limina_smoke_unstructured_review_values.csv +++ /dev/null @@ -1,11 +0,0 @@ -queue_id,run_id,sample_event,target_field,value,measured_at,operator_or_agent,instrument_id,source_file,notes,apply,source_class,instrument_required,instrument_class,source_status,source_ready,source_validation,source_size_bytes,source_sha256,image_width,image_height,extraction_mode,value_to_extract,required_metadata,review_status,missing_items,review_instruction -SQ-0100,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,,supplier_or_build_record,false,record_review,missing_source_file,false,not_run_missing_file,,,,,manual_pdf_or_ocr_to_source_value_sidecar,MEA/coupon/sample identifier,"lot, recipe, CoA, label, or build identifier",awaiting_source_file,measured_at;operator_or_agent;source_missing_source_file;value,"Read or OCR `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf` and enter the actual MEA/coupon/sample identifier; include measured_at, operator_or_agent, notes, and apply=yes. Do not cite this review sheet as source_file." -SQ-0101,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,,supplier_or_build_record,false,record_review,missing_source_file,false,not_run_missing_file,,,,,manual_pdf_or_ocr_to_source_value_sidecar,electrode material,"lot, recipe, CoA, label, or build identifier",awaiting_source_file,measured_at;operator_or_agent;source_missing_source_file;value,"Read or OCR `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf` and enter the actual electrode material; include measured_at, operator_or_agent, notes, and apply=yes. Do not cite this review sheet as source_file." -SQ-0102,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,,supplier_or_build_record,false,record_review,missing_source_file,false,not_run_missing_file,,,,,manual_pdf_or_ocr_to_source_value_sidecar,coating density or recipe identifier,"lot, recipe, CoA, label, or build identifier",awaiting_source_file,measured_at;operator_or_agent;source_missing_source_file;value,"Read or OCR `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf` and enter the actual coating density or recipe identifier; include measured_at, operator_or_agent, notes, and apply=yes. Do not cite this review sheet as source_file." -SQ-0103,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,,supplier_or_build_record,false,record_review,missing_source_file,false,not_run_missing_file,,,,,manual_pdf_or_ocr_to_source_value_sidecar,"SOP, batch, or protocol identifier","lot, recipe, CoA, label, or build identifier",awaiting_source_file,measured_at;operator_or_agent;source_missing_source_file;value,"Read or OCR `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf` and enter the actual SOP, batch, or protocol identifier; include measured_at, operator_or_agent, notes, and apply=yes. Do not cite this review sheet as source_file." -SQ-0105,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,osmometer_report_or_export,true,osmometer_or_external_lab,missing_source_file,false,not_run_missing_file,,,,,manual_pdf_or_ocr_to_source_value_sidecar,mOsm/kg value plus report/lab identifier,"run_id, mOsm/kg value, vendor or osmometer identifier",awaiting_source_file,instrument_id;measured_at;operator_or_agent;source_missing_source_file;value,"Read or OCR `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf` and enter the actual mOsm/kg value plus report/lab identifier; include measured_at, operator_or_agent, notes, and apply=yes. Fill instrument_id because this row requires an instrument. Do not cite this review sheet as source_file." -SQ-0108,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,osmometer_report_or_export,true,osmometer_or_external_lab,missing_source_file,false,not_run_missing_file,,,,,manual_pdf_or_ocr_to_source_value_sidecar,mOsm/kg value plus report/lab identifier,"run_id, mOsm/kg value, vendor or osmometer identifier",awaiting_source_file,instrument_id;measured_at;operator_or_agent;source_missing_source_file;value,"Read or OCR `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf` and enter the actual mOsm/kg value plus report/lab identifier; include measured_at, operator_or_agent, notes, and apply=yes. Fill instrument_id because this row requires an instrument. Do not cite this review sheet as source_file." -SQ-0110,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,,image_or_scoring_worksheet,true,imaging_station_or_scoring_sheet,missing_source_file,false,not_run_missing_file,,,,,manual_image_scoring_to_source_value_sidecar,scored boolean,"run_id, imaging/scoring method, operator or vendor",awaiting_source_file,instrument_id;measured_at;operator_or_agent;source_missing_source_file;value,"Read or OCR `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png` and enter the actual scored boolean; include measured_at, operator_or_agent, notes, and apply=yes. Fill instrument_id because this row requires an instrument. Do not cite this review sheet as source_file." -SQ-0111,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,,image_or_scoring_worksheet,true,imaging_station_or_scoring_sheet,missing_source_file,false,not_run_missing_file,,,,,manual_image_scoring_to_source_value_sidecar,scored boolean,"run_id, imaging/scoring method, operator or vendor",awaiting_source_file,instrument_id;measured_at;operator_or_agent;source_missing_source_file;value,"Read or OCR `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png` and enter the actual scored boolean; include measured_at, operator_or_agent, notes, and apply=yes. Fill instrument_id because this row requires an instrument. Do not cite this review sheet as source_file." -SQ-0113,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,,image_or_scoring_worksheet,true,imaging_station_or_scoring_sheet,missing_source_file,false,not_run_missing_file,,,,,manual_image_scoring_to_source_value_sidecar,numeric or ordinal score,"run_id, imaging/scoring method, operator or vendor",awaiting_source_file,instrument_id;measured_at;operator_or_agent;source_missing_source_file;value,"Read or OCR `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png` and enter the actual numeric or ordinal score; include measured_at, operator_or_agent, notes, and apply=yes. Fill instrument_id because this row requires an instrument. Do not cite this review sheet as source_file." -SQ-0114,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,,,,,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,,image_or_scoring_worksheet,true,imaging_station_or_scoring_sheet,missing_source_file,false,not_run_missing_file,,,,,manual_image_scoring_to_source_value_sidecar,calculated transparency fraction,"run_id, imaging/scoring method, operator or vendor",awaiting_source_file,instrument_id;measured_at;operator_or_agent;source_missing_source_file;value,"Read or OCR `data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png` and enter the actual calculated transparency fraction; include measured_at, operator_or_agent, notes, and apply=yes. Fill instrument_id because this row requires an instrument. Do not cite this review sheet as source_file." diff --git a/data/limina_smoke_unstructured_review_values.json b/data/limina_smoke_unstructured_review_values.json deleted file mode 100644 index a9d33d2..0000000 --- a/data/limina_smoke_unstructured_review_values.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "accepted_import_schema": [ - "queue_id", - "run_id", - "sample_event", - "target_field", - "value", - "measured_at", - "operator_or_agent", - "instrument_id", - "source_file", - "notes", - "apply" - ], - "boundary": "This review-values sheet is a fillable sidecar for manually extracted values from existing PDF/image/other unstructured source files. It is not measured evidence and cannot support a claim unless the cited raw source file and filled values pass the importer, preflight, merge/QC, gate evaluation, and claim audit.", - "generated_artifacts": { - "csv": "data/limina_smoke_unstructured_review_values.csv", - "json": "data/limina_smoke_unstructured_review_values.json", - "report": "reports/limina_smoke_unstructured_review_values.md" - }, - "inputs": { - "execution_pack": "data/limina_smoke_starter_execution_pack.csv", - "intake": "data/limina_smoke_unstructured_source_intake.csv", - "source_manifest": "data/limina_source_file_manifest.json" - }, - "status": "smoke_unstructured_review_values_waiting_for_source_files", - "summary": { - "filled_value_rows": 0, - "import_ready_rows": 0, - "invalid_source_rows": 0, - "missing_item_counts": { - "instrument_id": 6, - "measured_at": 10, - "operator_or_agent": 10, - "source_missing_source_file": 10, - "value": 10 - }, - "missing_source_rows": 10, - "ready_source_rows": 0, - "review_rows": 10, - "review_status_counts": { - "awaiting_source_file": 10 - }, - "source_status_counts": { - "missing_source_file": 10 - } - } -} \ No newline at end of file diff --git a/data/limina_smoke_unstructured_source_intake.csv b/data/limina_smoke_unstructured_source_intake.csv deleted file mode 100644 index 1195096..0000000 --- a/data/limina_smoke_unstructured_source_intake.csv +++ /dev/null @@ -1,11 +0,0 @@ -queue_id,run_id,sample_event,target_field,source_class,source_file,extension,status,exists,size_bytes,sha256,validation,image_width,image_height,extraction_mode,value_to_extract,required_metadata,sidecar_hint,issue -SQ-0100,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,.pdf,missing_source_file,false,,,not_run_missing_file,,,manual_pdf_or_ocr_to_source_value_sidecar,MEA/coupon/sample identifier,"lot, recipe, CoA, label, or build identifier","Append a row to data/limina_smoke_source_values.csv or a run-local limina_values.csv with queue_id=SQ-0100, value, measured_at, operator_or_agent, instrument_id when required, source_file, notes, apply=yes.", -SQ-0101,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,.pdf,missing_source_file,false,,,not_run_missing_file,,,manual_pdf_or_ocr_to_source_value_sidecar,electrode material,"lot, recipe, CoA, label, or build identifier","Append a row to data/limina_smoke_source_values.csv or a run-local limina_values.csv with queue_id=SQ-0101, value, measured_at, operator_or_agent, instrument_id when required, source_file, notes, apply=yes.", -SQ-0102,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,.pdf,missing_source_file,false,,,not_run_missing_file,,,manual_pdf_or_ocr_to_source_value_sidecar,coating density or recipe identifier,"lot, recipe, CoA, label, or build identifier","Append a row to data/limina_smoke_source_values.csv or a run-local limina_values.csv with queue_id=SQ-0102, value, measured_at, operator_or_agent, instrument_id when required, source_file, notes, apply=yes.", -SQ-0103,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,.pdf,missing_source_file,false,,,not_run_missing_file,,,manual_pdf_or_ocr_to_source_value_sidecar,"SOP, batch, or protocol identifier","lot, recipe, CoA, label, or build identifier","Append a row to data/limina_smoke_source_values.csv or a run-local limina_values.csv with queue_id=SQ-0103, value, measured_at, operator_or_agent, instrument_id when required, source_file, notes, apply=yes.", -SQ-0105,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,.pdf,missing_source_file,false,,,not_run_missing_file,,,manual_pdf_or_ocr_to_source_value_sidecar,mOsm/kg value plus report/lab identifier,"run_id, mOsm/kg value, vendor or osmometer identifier","Append a row to data/limina_smoke_source_values.csv or a run-local limina_values.csv with queue_id=SQ-0105, value, measured_at, operator_or_agent, instrument_id when required, source_file, notes, apply=yes.", -SQ-0108,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,osmometer_report_or_export,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,.pdf,missing_source_file,false,,,not_run_missing_file,,,manual_pdf_or_ocr_to_source_value_sidecar,mOsm/kg value plus report/lab identifier,"run_id, mOsm/kg value, vendor or osmometer identifier","Append a row to data/limina_smoke_source_values.csv or a run-local limina_values.csv with queue_id=SQ-0108, value, measured_at, operator_or_agent, instrument_id when required, source_file, notes, apply=yes.", -SQ-0110,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,.png,missing_source_file,false,,,not_run_missing_file,,,manual_image_scoring_to_source_value_sidecar,scored boolean,"run_id, imaging/scoring method, operator or vendor","Append a row to data/limina_smoke_source_values.csv or a run-local limina_values.csv with queue_id=SQ-0110, value, measured_at, operator_or_agent, instrument_id when required, source_file, notes, apply=yes.", -SQ-0111,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,.png,missing_source_file,false,,,not_run_missing_file,,,manual_image_scoring_to_source_value_sidecar,scored boolean,"run_id, imaging/scoring method, operator or vendor","Append a row to data/limina_smoke_source_values.csv or a run-local limina_values.csv with queue_id=SQ-0111, value, measured_at, operator_or_agent, instrument_id when required, source_file, notes, apply=yes.", -SQ-0113,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,.png,missing_source_file,false,,,not_run_missing_file,,,manual_image_scoring_to_source_value_sidecar,numeric or ordinal score,"run_id, imaging/scoring method, operator or vendor","Append a row to data/limina_smoke_source_values.csv or a run-local limina_values.csv with queue_id=SQ-0113, value, measured_at, operator_or_agent, instrument_id when required, source_file, notes, apply=yes.", -SQ-0114,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/smoke/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,.png,missing_source_file,false,,,not_run_missing_file,,,manual_image_scoring_to_source_value_sidecar,calculated transparency fraction,"run_id, imaging/scoring method, operator or vendor","Append a row to data/limina_smoke_source_values.csv or a run-local limina_values.csv with queue_id=SQ-0114, value, measured_at, operator_or_agent, instrument_id when required, source_file, notes, apply=yes.", diff --git a/data/limina_smoke_unstructured_source_intake.json b/data/limina_smoke_unstructured_source_intake.json deleted file mode 100644 index e88b910..0000000 --- a/data/limina_smoke_unstructured_source_intake.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "boundary": "This intake hashes and routes unstructured source files only. It does not extract or create measured values; value rows must still pass the source-value importer, preflight, merge/QC, gate evaluation, and claim audit.", - "generated_artifacts": { - "csv": "data/limina_smoke_unstructured_source_intake.csv", - "json": "data/limina_smoke_unstructured_source_intake.json", - "report": "reports/limina_smoke_unstructured_source_intake.md" - }, - "inputs": { - "execution_pack": "data/limina_smoke_starter_execution_pack.csv", - "source_manifest": "data/limina_source_file_manifest.json" - }, - "status": "smoke_unstructured_source_intake_waiting_for_files", - "summary": { - "existing_unstructured_files": 0, - "invalid_source_files": 0, - "missing_source_files": 10, - "ready_for_value_extraction": 0, - "status_counts": { - "missing_source_file": 10 - }, - "unstructured_plan_rows": 10, - "validation_counts": { - "not_run_missing_file": 10 - } - } -} \ No newline at end of file diff --git a/data/limina_source_file_claim_guard_regression.json b/data/limina_source_file_claim_guard_regression.json deleted file mode 100644 index 73e0e60..0000000 --- a/data/limina_source_file_claim_guard_regression.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "assertions": [ - { - "detail": "claimable=False", - "name": "missing_source_not_claimable", - "passed": true - }, - { - "detail": "placeholder_markers=['source_file=missing']", - "name": "blank_source_file_is_placeholder", - "passed": true - }, - { - "detail": "source_file_issue_count=1", - "name": "missing_source_file_is_issue", - "passed": true - }, - { - "detail": "claimable=True; measured=1", - "name": "existing_allowed_source_can_be_claimable", - "passed": true - } - ], - "missing_source": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_source_file_guard_6lj7vtcu/missing_source.csv", - "path_fixture_marker": false, - "placeholder_examples": [ - { - "markers": [ - "source_file=missing" - ], - "row_number": 1, - "run_id": "measured_like_missing_source" - } - ], - "placeholder_row_count": 1, - "row_count": 2, - "source_file_issue_count": 1, - "source_file_issue_examples": [ - { - "issues": [ - "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_source_file_guard_6lj7vtcu/allowed_sources/missing_export.csv: source file does not exist" - ], - "row_number": 2, - "run_id": "measured_like_missing_file" - } - ], - "synthetic_examples": [], - "synthetic_row_count": 0 - }, - "positive_source": { - "claimable_measurement_source": true, - "exists": true, - "measured_row_count": 1, - "path": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_source_file_guard_6lj7vtcu/positive_source.csv", - "path_fixture_marker": false, - "placeholder_examples": [], - "placeholder_row_count": 0, - "row_count": 1, - "source_file_issue_count": 0, - "source_file_issue_examples": [], - "synthetic_examples": [], - "synthetic_row_count": 0 - }, - "status": "pass" -} \ No newline at end of file diff --git a/data/limina_source_file_inventory.csv b/data/limina_source_file_inventory.csv deleted file mode 100644 index 4792efc..0000000 --- a/data/limina_source_file_inventory.csv +++ /dev/null @@ -1 +0,0 @@ -path,root_id,size_bytes,sha256,extension,referenced_by_count diff --git a/data/limina_source_file_inventory.json b/data/limina_source_file_inventory.json deleted file mode 100644 index 3023d26..0000000 --- a/data/limina_source_file_inventory.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "boundary": "This inventory records files and hashes only. A file becomes measured evidence only when a filled row passes preflight, merge/QC, gate evaluation, and claim audit.", - "inputs": { - "capture_files": [ - "data/nhi_pedot_h_a_local_capture_template.csv", - "data/nhi_pedot_h_a_osmolality_outsource_template.csv", - "data/zrc_nd_phase_a_local_capture_template.csv", - "data/zrc_nd_phase_a_osmolality_outsource_template.csv", - "data/nhi_pedot_h_a_smoke_local_capture_template.csv", - "data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv", - "data/zrc_nd_phase_a_smoke_local_capture_template.csv", - "data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv" - ], - "manifest": "data/limina_source_file_manifest.json", - "source_value_files": [ - "data/nhi_pedot_h_a_source_values.csv", - "data/nhi_pedot_forward_source_values.csv", - "data/nhi_pedot_long_source_values.csv", - "data/zrc_nd_phase_a_source_values.csv", - "data/limina_smoke_source_values.csv", - "data/limina_smoke_unstructured_review_values.csv" - ] - }, - "manifest_status": "source_file_manifest_ready", - "missing_references": [], - "source_files": [], - "status": "source_file_inventory_empty", - "summary": { - "allowed_root_count": 12, - "capture_template_reference_count": 0, - "file_count": 0, - "filled_source_value_reference_count": 0, - "missing_reference_count": 0, - "source_reference_count": 0, - "unreferenced_file_count": 0 - }, - "unreferenced_files": [] -} \ No newline at end of file diff --git a/data/limina_source_file_manifest.csv b/data/limina_source_file_manifest.csv deleted file mode 100644 index 76615fd..0000000 --- a/data/limina_source_file_manifest.csv +++ /dev/null @@ -1,25 +0,0 @@ -record_type,id,path_or_class,scope,purpose_or_metadata,accepted_extensions,recommended_roots,notes -allowed_root,local_h_a_full,data/source_files/full/h_a,NHI-PEDOT H-A full local capture,"Local instrument exports, photos, worksheets, calibration logs, and bench records for the full H-A matrix.",,, -allowed_root,local_zrc_full,data/source_files/full/zrc_nd_phase_a,ZRC-ND Phase A full local capture,Local records and instrument outputs for the full ZRC-ND Phase A matrix.,,, -allowed_root,local_nhi_forward_full,data/source_files/full/nhi_pedot_forward,NHI-PEDOT H-B/H-C full local capture,"Local instrument exports, images, worksheets, and biological assay records for NHI-PEDOT H-B/H-C coupon gates.",,, -allowed_root,local_nhi_long_full,data/source_files/full/nhi_pedot_long,NHI-PEDOT long-duration full local capture,"Long-duration MEA, neural health, stimulus-recovery, imaging, and material-integrity records for NHI-PEDOT.",,, -allowed_root,local_zrc_bio_full,data/source_files/full/zrc_nd_bio,ZRC-ND biological follow-up full local capture,"Biological assay records, imaging, MEA outputs, and worksheets for ZRC-ND conditioned-medium follow-up gates.",,, -allowed_root,smoke_h_a,data/source_files/smoke/h_a,NHI-PEDOT H-A smoke capture,Minimal source files for the smoke-tranche H-A pipeline rehearsal.,,, -allowed_root,smoke_zrc,data/source_files/smoke/zrc_nd_phase_a,ZRC-ND Phase A smoke capture,Minimal source files for the smoke-tranche ZRC-ND pipeline rehearsal.,,, -allowed_root,calibration_logs,data/source_files/calibration_logs,shared measurement provenance,"Calibration or standard-check files referenced by pH, conductivity, temperature, osmometer, image, mass, or dimension records.",,, -allowed_root,bench_records,data/source_files/bench_records,shared local capture,"Bench logs, pipetting worksheets, chain-of-custody exports, and operator worksheets.",,, -allowed_root,build_records,data/source_files/build_records,supplier/build provenance,"Recipe records, supplier CoAs, sample labels, coating logs, and build sheets.",,, -allowed_root,h_a_vendor_exports,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports,NHI-PEDOT H-A vendor/cooperator returns,"Original external lab exports, reports, images, and worksheets referenced by returned H-A rows.",,, -allowed_root,zrc_vendor_exports,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports,ZRC-ND Phase A vendor/cooperator returns,"Original external lab exports, reports, images, and worksheets referenced by returned ZRC-ND rows.",,, -source_class,pH_meter_export_or_photo,"pH,pH_initial,pH_final",filled capture row source_file,"run_id, measurement date, instrument_id or calibration record",.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,local_h_a_full;local_nhi_forward_full;local_nhi_long_full;smoke_h_a;calibration_logs;h_a_vendor_exports;zrc_vendor_exports,Raw meter export is preferred; display photo must be time-stamped or paired with a worksheet. -source_class,conductivity_meter_export_or_photo,"conductivity,conductivity_initial_mS_cm,conductivity_final_mS_cm",filled capture row source_file,"run_id, measurement date, instrument_id or standard-check record",.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,local_h_a_full;local_nhi_forward_full;local_nhi_long_full;smoke_h_a;calibration_logs;h_a_vendor_exports;zrc_vendor_exports,Include calibration or standard-check evidence for media-range measurements. -source_class,osmometer_report_or_export,"osmolality,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg",filled capture row source_file,"run_id, mOsm/kg value, vendor or osmometer identifier",.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,h_a_vendor_exports;zrc_vendor_exports;local_h_a_full;local_nhi_forward_full;local_nhi_long_full;smoke_h_a;smoke_zrc;calibration_logs,External lab report/export must reconcile each returned value to a run_id. -source_class,temperature_or_incubator_log,temperature_c,filled capture row source_file,"run_id or batch window, date/time, temperature source",.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,local_h_a_full;local_nhi_forward_full;local_nhi_long_full;local_zrc_bio_full;smoke_h_a;bench_records;h_a_vendor_exports;zrc_vendor_exports,A single incubator log can support multiple run_ids if the covered time window is explicit. -source_class,image_or_scoring_worksheet,"visible_precipitate,visible_shedding,delamination_score,optical_transparency_fraction",filled capture row source_file,"run_id, imaging/scoring method, operator or vendor",.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic;.tif;.tiff,local_h_a_full;local_nhi_forward_full;local_nhi_long_full;local_zrc_bio_full;smoke_h_a;smoke_zrc;bench_records;h_a_vendor_exports;zrc_vendor_exports,Keep raw images plus the scoring worksheet or vendor image-analysis report. -source_class,swelling_dimension_or_mass_worksheet,"swelling_fraction,membrane_area_cm2,initial_volume_ml",filled capture row source_file,"run_id, pre/post measurement basis, method, operator",.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,local_h_a_full;local_nhi_forward_full;local_nhi_long_full;smoke_h_a;smoke_zrc;bench_records;h_a_vendor_exports;zrc_vendor_exports,"Worksheet must show enough raw dimensions, area, volume, or mass to reproduce the reported value." -source_class,bench_or_chain_of_custody_record,"date,medium_name,medium_lot,operator_or_agent,exposure_time_h",filled capture row source_file,"run_id or sample_id, operator, date, transfer or exposure event",.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,bench_records;build_records;local_h_a_full;local_nhi_forward_full;local_nhi_long_full;local_zrc_bio_full;smoke_h_a;smoke_zrc;h_a_vendor_exports;zrc_vendor_exports,Used for setup metadata and transfer provenance; not a substitute for instrument output when a measured value is present. -source_class,supplier_or_build_record,"membrane_lot,prefilter_lot,electrode_material,laminin_or_peptide_density,sterilization_or_aseptic_protocol",filled capture row source_file,"lot, recipe, CoA, label, or build identifier",.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,build_records;bench_records;local_zrc_full;local_nhi_forward_full;local_nhi_long_full;local_zrc_bio_full;smoke_zrc;h_a_vendor_exports;zrc_vendor_exports,Supplier/build records are provenance only; they do not become performance evidence by themselves. -source_class,electrochemical_or_mea_export,"eis_1khz,charge_storage_capacity,spike_rate,burst_rate,synchrony,electrode_yield,baseline_noise,post_stim",filled capture row source_file,"run_id, measurement date, instrument_id, channel/electrode mapping, and analysis method",.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,local_nhi_forward_full;local_nhi_long_full;local_zrc_bio_full;calibration_logs,Keep raw MEA/electrochemical export plus the analysis worksheet when values are derived. -source_class,biological_assay_or_imaging_export,"viability,ldh,neurite,morphology,cell_body_count,cell_model,seeding_density",filled capture row source_file,"run_id, culture model, assay date, operator or vendor, instrument_id or imaging/export method",.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.tif;.tiff,local_nhi_forward_full;local_nhi_long_full;local_zrc_bio_full;bench_records,"Assay summaries must cite raw plate-reader, imaging, or MEA-derived files, not transcribed notes alone." -source_class,biochemical_or_plate_reader_export,"lactate,ammonia,bdnf,ngf,albumin,transferrin,total_protein",filled capture row source_file,"run_id, analyte, assay date, instrument_id or vendor report id, calibration/standard curve record",.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,local_zrc_full;local_zrc_bio_full;zrc_vendor_exports;calibration_logs,"Keep raw analyzer, plate-reader, ELISA, or vendor chemistry export with enough metadata to reconcile each analyte to run_id." -source_class,pressure_flow_or_resistance_export,"flow_resistance,flow_rate,bubble_events",filled capture row source_file,"run_id, flow/pressure method, instrument_id, time window, calculation method",.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,local_zrc_full;zrc_vendor_exports;bench_records,"Flow resistance and bubble-event records must preserve raw pressure/flow or imaging/inspection evidence, not only pass/fail transcription." diff --git a/data/limina_source_file_manifest.json b/data/limina_source_file_manifest.json deleted file mode 100644 index 6ba8be1..0000000 --- a/data/limina_source_file_manifest.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "allowed_roots": [ - { - "path": "data/source_files/full/h_a", - "purpose": "Local instrument exports, photos, worksheets, calibration logs, and bench records for the full H-A matrix.", - "root_id": "local_h_a_full", - "scope": "NHI-PEDOT H-A full local capture" - }, - { - "path": "data/source_files/full/zrc_nd_phase_a", - "purpose": "Local records and instrument outputs for the full ZRC-ND Phase A matrix.", - "root_id": "local_zrc_full", - "scope": "ZRC-ND Phase A full local capture" - }, - { - "path": "data/source_files/full/nhi_pedot_forward", - "purpose": "Local instrument exports, images, worksheets, and biological assay records for NHI-PEDOT H-B/H-C coupon gates.", - "root_id": "local_nhi_forward_full", - "scope": "NHI-PEDOT H-B/H-C full local capture" - }, - { - "path": "data/source_files/full/nhi_pedot_long", - "purpose": "Long-duration MEA, neural health, stimulus-recovery, imaging, and material-integrity records for NHI-PEDOT.", - "root_id": "local_nhi_long_full", - "scope": "NHI-PEDOT long-duration full local capture" - }, - { - "path": "data/source_files/full/zrc_nd_bio", - "purpose": "Biological assay records, imaging, MEA outputs, and worksheets for ZRC-ND conditioned-medium follow-up gates.", - "root_id": "local_zrc_bio_full", - "scope": "ZRC-ND biological follow-up full local capture" - }, - { - "path": "data/source_files/smoke/h_a", - "purpose": "Minimal source files for the smoke-tranche H-A pipeline rehearsal.", - "root_id": "smoke_h_a", - "scope": "NHI-PEDOT H-A smoke capture" - }, - { - "path": "data/source_files/smoke/zrc_nd_phase_a", - "purpose": "Minimal source files for the smoke-tranche ZRC-ND pipeline rehearsal.", - "root_id": "smoke_zrc", - "scope": "ZRC-ND Phase A smoke capture" - }, - { - "path": "data/source_files/calibration_logs", - "purpose": "Calibration or standard-check files referenced by pH, conductivity, temperature, osmometer, image, mass, or dimension records.", - "root_id": "calibration_logs", - "scope": "shared measurement provenance" - }, - { - "path": "data/source_files/bench_records", - "purpose": "Bench logs, pipetting worksheets, chain-of-custody exports, and operator worksheets.", - "root_id": "bench_records", - "scope": "shared local capture" - }, - { - "path": "data/source_files/build_records", - "purpose": "Recipe records, supplier CoAs, sample labels, coating logs, and build sheets.", - "root_id": "build_records", - "scope": "supplier/build provenance" - }, - { - "path": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports", - "purpose": "Original external lab exports, reports, images, and worksheets referenced by returned H-A rows.", - "root_id": "h_a_vendor_exports", - "scope": "NHI-PEDOT H-A vendor/cooperator returns" - }, - { - "path": "data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports", - "purpose": "Original external lab exports, reports, images, and worksheets referenced by returned ZRC-ND rows.", - "root_id": "zrc_vendor_exports", - "scope": "ZRC-ND Phase A vendor/cooperator returns" - } - ], - "boundary": "This manifest is a provenance guardrail. It creates drop locations and policy only; it does not create measured evidence.", - "expected_source_classes": [ - { - "accepted_extensions": ".csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic", - "notes": "Raw meter export is preferred; display photo must be time-stamped or paired with a worksheet.", - "recommended_roots": "local_h_a_full;local_nhi_forward_full;local_nhi_long_full;smoke_h_a;calibration_logs;h_a_vendor_exports;zrc_vendor_exports", - "required_metadata": "run_id, measurement date, instrument_id or calibration record", - "source_class": "pH_meter_export_or_photo", - "task_signals": "pH,pH_initial,pH_final" - }, - { - "accepted_extensions": ".csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic", - "notes": "Include calibration or standard-check evidence for media-range measurements.", - "recommended_roots": "local_h_a_full;local_nhi_forward_full;local_nhi_long_full;smoke_h_a;calibration_logs;h_a_vendor_exports;zrc_vendor_exports", - "required_metadata": "run_id, measurement date, instrument_id or standard-check record", - "source_class": "conductivity_meter_export_or_photo", - "task_signals": "conductivity,conductivity_initial_mS_cm,conductivity_final_mS_cm" - }, - { - "accepted_extensions": ".csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg", - "notes": "External lab report/export must reconcile each returned value to a run_id.", - "recommended_roots": "h_a_vendor_exports;zrc_vendor_exports;local_h_a_full;local_nhi_forward_full;local_nhi_long_full;smoke_h_a;smoke_zrc;calibration_logs", - "required_metadata": "run_id, mOsm/kg value, vendor or osmometer identifier", - "source_class": "osmometer_report_or_export", - "task_signals": "osmolality,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg" - }, - { - "accepted_extensions": ".csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic", - "notes": "A single incubator log can support multiple run_ids if the covered time window is explicit.", - "recommended_roots": "local_h_a_full;local_nhi_forward_full;local_nhi_long_full;local_zrc_bio_full;smoke_h_a;bench_records;h_a_vendor_exports;zrc_vendor_exports", - "required_metadata": "run_id or batch window, date/time, temperature source", - "source_class": "temperature_or_incubator_log", - "task_signals": "temperature_c" - }, - { - "accepted_extensions": ".csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic;.tif;.tiff", - "notes": "Keep raw images plus the scoring worksheet or vendor image-analysis report.", - "recommended_roots": "local_h_a_full;local_nhi_forward_full;local_nhi_long_full;local_zrc_bio_full;smoke_h_a;smoke_zrc;bench_records;h_a_vendor_exports;zrc_vendor_exports", - "required_metadata": "run_id, imaging/scoring method, operator or vendor", - "source_class": "image_or_scoring_worksheet", - "task_signals": "visible_precipitate,visible_shedding,delamination_score,optical_transparency_fraction" - }, - { - "accepted_extensions": ".csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg", - "notes": "Worksheet must show enough raw dimensions, area, volume, or mass to reproduce the reported value.", - "recommended_roots": "local_h_a_full;local_nhi_forward_full;local_nhi_long_full;smoke_h_a;smoke_zrc;bench_records;h_a_vendor_exports;zrc_vendor_exports", - "required_metadata": "run_id, pre/post measurement basis, method, operator", - "source_class": "swelling_dimension_or_mass_worksheet", - "task_signals": "swelling_fraction,membrane_area_cm2,initial_volume_ml" - }, - { - "accepted_extensions": ".csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg", - "notes": "Used for setup metadata and transfer provenance; not a substitute for instrument output when a measured value is present.", - "recommended_roots": "bench_records;build_records;local_h_a_full;local_nhi_forward_full;local_nhi_long_full;local_zrc_bio_full;smoke_h_a;smoke_zrc;h_a_vendor_exports;zrc_vendor_exports", - "required_metadata": "run_id or sample_id, operator, date, transfer or exposure event", - "source_class": "bench_or_chain_of_custody_record", - "task_signals": "date,medium_name,medium_lot,operator_or_agent,exposure_time_h" - }, - { - "accepted_extensions": ".csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg", - "notes": "Supplier/build records are provenance only; they do not become performance evidence by themselves.", - "recommended_roots": "build_records;bench_records;local_zrc_full;local_nhi_forward_full;local_nhi_long_full;local_zrc_bio_full;smoke_zrc;h_a_vendor_exports;zrc_vendor_exports", - "required_metadata": "lot, recipe, CoA, label, or build identifier", - "source_class": "supplier_or_build_record", - "task_signals": "membrane_lot,prefilter_lot,electrode_material,laminin_or_peptide_density,sterilization_or_aseptic_protocol" - }, - { - "accepted_extensions": ".csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg", - "notes": "Keep raw MEA/electrochemical export plus the analysis worksheet when values are derived.", - "recommended_roots": "local_nhi_forward_full;local_nhi_long_full;local_zrc_bio_full;calibration_logs", - "required_metadata": "run_id, measurement date, instrument_id, channel/electrode mapping, and analysis method", - "source_class": "electrochemical_or_mea_export", - "task_signals": "eis_1khz,charge_storage_capacity,spike_rate,burst_rate,synchrony,electrode_yield,baseline_noise,post_stim" - }, - { - "accepted_extensions": ".csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.tif;.tiff", - "notes": "Assay summaries must cite raw plate-reader, imaging, or MEA-derived files, not transcribed notes alone.", - "recommended_roots": "local_nhi_forward_full;local_nhi_long_full;local_zrc_bio_full;bench_records", - "required_metadata": "run_id, culture model, assay date, operator or vendor, instrument_id or imaging/export method", - "source_class": "biological_assay_or_imaging_export", - "task_signals": "viability,ldh,neurite,morphology,cell_body_count,cell_model,seeding_density" - }, - { - "accepted_extensions": ".csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg", - "notes": "Keep raw analyzer, plate-reader, ELISA, or vendor chemistry export with enough metadata to reconcile each analyte to run_id.", - "recommended_roots": "local_zrc_full;local_zrc_bio_full;zrc_vendor_exports;calibration_logs", - "required_metadata": "run_id, analyte, assay date, instrument_id or vendor report id, calibration/standard curve record", - "source_class": "biochemical_or_plate_reader_export", - "task_signals": "lactate,ammonia,bdnf,ngf,albumin,transferrin,total_protein" - }, - { - "accepted_extensions": ".csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg", - "notes": "Flow resistance and bubble-event records must preserve raw pressure/flow or imaging/inspection evidence, not only pass/fail transcription.", - "recommended_roots": "local_zrc_full;zrc_vendor_exports;bench_records", - "required_metadata": "run_id, flow/pressure method, instrument_id, time window, calculation method", - "source_class": "pressure_flow_or_resistance_export", - "task_signals": "flow_resistance,flow_rate,bubble_events" - } - ], - "generated_artifacts": { - "csv": "data/limina_source_file_manifest.csv", - "json": "data/limina_source_file_manifest.json", - "readme": "data/source_files/README.md", - "report": "reports/limina_source_file_manifest.md" - }, - "policy": { - "multi_file_separator": "semicolon, pipe, or newline", - "must_be_file": true, - "must_be_inside_allowed_root": true, - "must_exist": true, - "not_evidence": "Emails, quotes, verbal notes, vendor capability replies, fixtures, synthetic data, and placeholders are never measured evidence.", - "relative_paths_resolve_from": "." - }, - "rejected_source_markers": [ - "email", - "quote", - "verbal", - "capability", - "phone_call", - "synthetic", - "fixture", - "placeholder" - ], - "status": "source_file_manifest_ready" -} \ No newline at end of file diff --git a/data/limina_source_file_templates/h_a/source_class_templates/bench_or_chain_of_custody_record.csv b/data/limina_source_file_templates/h_a/source_class_templates/bench_or_chain_of_custody_record.csv deleted file mode 100644 index 5239d01..0000000 --- a/data/limina_source_file_templates/h_a/source_class_templates/bench_or_chain_of_custody_record.csv +++ /dev/null @@ -1,37 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,record_type,record_id,sample_id,medium_name,medium_lot,transfer_or_exposure_event -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Lot CoA, bottle label image, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Lot CoA, bottle label image, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Lot CoA, bottle label image, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Lot CoA, bottle label image, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Lot CoA, bottle label image, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Lot CoA, bottle label image, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Lot CoA, bottle label image, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Lot CoA, bottle label image, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Lot CoA, bottle label image, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Lot CoA, bottle label image, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Lot CoA, bottle label image, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,"Bench sheet, vendor report, or chain-of-custody CSV.",,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,"Medium bottle photo, lot CoA, or chain-of-custody record.",,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,"Lot CoA, bottle label image, or chain-of-custody record.",,,,,,,, diff --git a/data/limina_source_file_templates/h_a/source_class_templates/conductivity_meter_export_or_photo.csv b/data/limina_source_file_templates/h_a/source_class_templates/conductivity_meter_export_or_photo.csv deleted file mode 100644 index 09d249d..0000000 --- a/data/limina_source_file_templates/h_a/source_class_templates/conductivity_meter_export_or_photo.csv +++ /dev/null @@ -1,25 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,conductivity_mS_cm,conductivity_meter_id,standard_check_record_id,temperature_c -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,initial,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,final,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,initial,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,final,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,initial,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,final,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,initial,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,final,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,initial,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,final,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,initial,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,final,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,initial,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,final,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,initial,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,final,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,initial,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,final,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,initial,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,final,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,initial,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,final,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,initial,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,final,conductivity,,,,,mS/cm,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",,,,,, diff --git a/data/limina_source_file_templates/h_a/source_class_templates/image_or_scoring_worksheet.csv b/data/limina_source_file_templates/h_a/source_class_templates/image_or_scoring_worksheet.csv deleted file mode 100644 index 56a6ab5..0000000 --- a/data/limina_source_file_templates/h_a/source_class_templates/image_or_scoring_worksheet.csv +++ /dev/null @@ -1,49 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,image_file_name,imaging_method,scoring_method,score_or_boolean,reviewer -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,physical_inspection,visible_precipitate,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,Time-stamped image or vendor inspection report.,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,physical_inspection,visible_shedding,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,Time-stamped image or microscopy/stereoscope export.,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,physical_inspection,delamination_score,,,,,score,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,Image plus scoring worksheet or vendor image-analysis report.,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,physical_inspection,optical_transparency_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,Image-analysis export or vendor microscopy report.,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,physical_inspection,visible_precipitate,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,Time-stamped image or vendor inspection report.,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,physical_inspection,visible_shedding,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,Time-stamped image or microscopy/stereoscope export.,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,physical_inspection,delamination_score,,,,,score,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,Image plus scoring worksheet or vendor image-analysis report.,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,physical_inspection,optical_transparency_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,Image-analysis export or vendor microscopy report.,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,physical_inspection,visible_precipitate,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,Time-stamped image or vendor inspection report.,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,physical_inspection,visible_shedding,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,Time-stamped image or microscopy/stereoscope export.,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,physical_inspection,delamination_score,,,,,score,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,Image plus scoring worksheet or vendor image-analysis report.,,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,physical_inspection,optical_transparency_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,Image-analysis export or vendor microscopy report.,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,physical_inspection,visible_precipitate,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,Time-stamped image or vendor inspection report.,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,physical_inspection,visible_shedding,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,Time-stamped image or microscopy/stereoscope export.,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,physical_inspection,delamination_score,,,,,score,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,Image plus scoring worksheet or vendor image-analysis report.,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,physical_inspection,optical_transparency_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,Image-analysis export or vendor microscopy report.,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,physical_inspection,visible_precipitate,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,Time-stamped image or vendor inspection report.,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,physical_inspection,visible_shedding,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,Time-stamped image or microscopy/stereoscope export.,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,physical_inspection,delamination_score,,,,,score,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,Image plus scoring worksheet or vendor image-analysis report.,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,physical_inspection,optical_transparency_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,Image-analysis export or vendor microscopy report.,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,physical_inspection,visible_precipitate,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,Time-stamped image or vendor inspection report.,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,physical_inspection,visible_shedding,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,Time-stamped image or microscopy/stereoscope export.,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,physical_inspection,delamination_score,,,,,score,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,Image plus scoring worksheet or vendor image-analysis report.,,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,physical_inspection,optical_transparency_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,Image-analysis export or vendor microscopy report.,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,physical_inspection,visible_precipitate,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,Time-stamped image or vendor inspection report.,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,physical_inspection,visible_shedding,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,Time-stamped image or microscopy/stereoscope export.,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,physical_inspection,delamination_score,,,,,score,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,Image plus scoring worksheet or vendor image-analysis report.,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,physical_inspection,optical_transparency_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,Image-analysis export or vendor microscopy report.,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,physical_inspection,visible_precipitate,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,Time-stamped image or vendor inspection report.,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,physical_inspection,visible_shedding,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,Time-stamped image or microscopy/stereoscope export.,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,physical_inspection,delamination_score,,,,,score,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,Image plus scoring worksheet or vendor image-analysis report.,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,physical_inspection,optical_transparency_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,Image-analysis export or vendor microscopy report.,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,physical_inspection,visible_precipitate,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,Time-stamped image or vendor inspection report.,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,physical_inspection,visible_shedding,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,Time-stamped image or microscopy/stereoscope export.,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,physical_inspection,delamination_score,,,,,score,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,Image plus scoring worksheet or vendor image-analysis report.,,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,physical_inspection,optical_transparency_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,Image-analysis export or vendor microscopy report.,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,physical_inspection,visible_precipitate,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,Time-stamped image or vendor inspection report.,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,physical_inspection,visible_shedding,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,Time-stamped image or microscopy/stereoscope export.,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,physical_inspection,delamination_score,,,,,score,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,Image plus scoring worksheet or vendor image-analysis report.,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,physical_inspection,optical_transparency_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,Image-analysis export or vendor microscopy report.,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,physical_inspection,visible_precipitate,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,Time-stamped image or vendor inspection report.,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,physical_inspection,visible_shedding,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,Time-stamped image or microscopy/stereoscope export.,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,physical_inspection,delamination_score,,,,,score,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,Image plus scoring worksheet or vendor image-analysis report.,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,physical_inspection,optical_transparency_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,Image-analysis export or vendor microscopy report.,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,physical_inspection,visible_precipitate,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,Time-stamped image or vendor inspection report.,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,physical_inspection,visible_shedding,,,,,bool,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,Time-stamped image or microscopy/stereoscope export.,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,physical_inspection,delamination_score,,,,,score,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,Image plus scoring worksheet or vendor image-analysis report.,,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,physical_inspection,optical_transparency_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,Image-analysis export or vendor microscopy report.,,,,,,, diff --git a/data/limina_source_file_templates/h_a/source_class_templates/osmometer_report_or_export.csv b/data/limina_source_file_templates/h_a/source_class_templates/osmometer_report_or_export.csv deleted file mode 100644 index f756b5a..0000000 --- a/data/limina_source_file_templates/h_a/source_class_templates/osmometer_report_or_export.csv +++ /dev/null @@ -1,25 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,osmolality_mOsm_kg,osmometer_id,report_id,vendor_or_lab -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,initial,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,final,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,initial,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,final,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,initial,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,final,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,initial,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,final,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,initial,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,final,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,initial,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,final,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,initial,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,final,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,initial,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,final,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,initial,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,final,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,initial,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,final,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,initial,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,final,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,initial,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,final,osmolality,,,,,mOsm/kg,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf,Osmometer report/export reconciled to run_id.,,,,,, diff --git a/data/limina_source_file_templates/h_a/source_class_templates/pH_meter_export_or_photo.csv b/data/limina_source_file_templates/h_a/source_class_templates/pH_meter_export_or_photo.csv deleted file mode 100644 index cb0b621..0000000 --- a/data/limina_source_file_templates/h_a/source_class_templates/pH_meter_export_or_photo.csv +++ /dev/null @@ -1,25 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,pH_value,pH_meter_id,calibration_record_id,temperature_c -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,initial,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,final,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,initial,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,final,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,initial,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,final,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,initial,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,final,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,initial,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,final,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,initial,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,final,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,initial,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,final,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,initial,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,final,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,initial,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,final,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,initial,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,final,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,initial,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,final,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,initial,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,final,pH,,,,,pH,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_pH_pH_meter_export_or_photo.csv,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",,,,,, diff --git a/data/limina_source_file_templates/h_a/source_class_templates/supplier_or_build_record.csv b/data/limina_source_file_templates/h_a/source_class_templates/supplier_or_build_record.csv deleted file mode 100644 index 532cc31..0000000 --- a/data/limina_source_file_templates/h_a/source_class_templates/supplier_or_build_record.csv +++ /dev/null @@ -1,49 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,supplier_or_builder,lot,recipe_or_coa_id,batch_id,label_or_build_record_id -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Build sheet, sample label, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,"Supplier documentation, build sheet, or sample label record.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Recipe record, supplier CoA, coating log, or build sheet.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"SOP identifier, batch record, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Build sheet, sample label, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,"Supplier documentation, build sheet, or sample label record.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Recipe record, supplier CoA, coating log, or build sheet.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"SOP identifier, batch record, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Build sheet, sample label, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,"Supplier documentation, build sheet, or sample label record.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Recipe record, supplier CoA, coating log, or build sheet.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"SOP identifier, batch record, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Build sheet, sample label, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,"Supplier documentation, build sheet, or sample label record.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Recipe record, supplier CoA, coating log, or build sheet.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"SOP identifier, batch record, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Build sheet, sample label, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,"Supplier documentation, build sheet, or sample label record.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Recipe record, supplier CoA, coating log, or build sheet.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"SOP identifier, batch record, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Build sheet, sample label, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,"Supplier documentation, build sheet, or sample label record.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Recipe record, supplier CoA, coating log, or build sheet.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"SOP identifier, batch record, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Build sheet, sample label, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,"Supplier documentation, build sheet, or sample label record.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Recipe record, supplier CoA, coating log, or build sheet.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"SOP identifier, batch record, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Build sheet, sample label, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,"Supplier documentation, build sheet, or sample label record.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Recipe record, supplier CoA, coating log, or build sheet.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"SOP identifier, batch record, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Build sheet, sample label, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,"Supplier documentation, build sheet, or sample label record.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Recipe record, supplier CoA, coating log, or build sheet.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"SOP identifier, batch record, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Build sheet, sample label, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,"Supplier documentation, build sheet, or sample label record.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Recipe record, supplier CoA, coating log, or build sheet.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"SOP identifier, batch record, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Build sheet, sample label, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,"Supplier documentation, build sheet, or sample label record.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Recipe record, supplier CoA, coating log, or build sheet.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"SOP identifier, batch record, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,"Build sheet, sample label, or chain-of-custody record.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,"Supplier documentation, build sheet, or sample label record.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,"Recipe record, supplier CoA, coating log, or build sheet.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,"SOP identifier, batch record, or chain-of-custody record.",,,,,,, diff --git a/data/limina_source_file_templates/h_a/source_class_templates/swelling_dimension_or_mass_worksheet.csv b/data/limina_source_file_templates/h_a/source_class_templates/swelling_dimension_or_mass_worksheet.csv deleted file mode 100644 index 0b22a3e..0000000 --- a/data/limina_source_file_templates/h_a/source_class_templates/swelling_dimension_or_mass_worksheet.csv +++ /dev/null @@ -1,13 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,pre_measurement,post_measurement,measurement_basis,calculation,swelling_fraction -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,physical_inspection,swelling_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,physical_inspection,swelling_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,physical_inspection,swelling_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,physical_inspection,swelling_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,physical_inspection,swelling_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,physical_inspection,swelling_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,physical_inspection,swelling_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,physical_inspection,swelling_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,physical_inspection,swelling_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,physical_inspection,swelling_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,physical_inspection,swelling_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,physical_inspection,swelling_fraction,,,,,fraction,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,"Image analysis export, caliper log, or mass/dimension worksheet.",,,,,,, diff --git a/data/limina_source_file_templates/h_a/source_class_templates/temperature_or_incubator_log.csv b/data/limina_source_file_templates/h_a/source_class_templates/temperature_or_incubator_log.csv deleted file mode 100644 index 2ab6fb2..0000000 --- a/data/limina_source_file_templates/h_a/source_class_templates/temperature_or_incubator_log.csv +++ /dev/null @@ -1,13 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,temperature_c,temperature_source,covered_window_start,covered_window_end,probe_or_incubator_id -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,temperature_c,,,,,C,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,"Incubator log, probe export, or time-stamped photo.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,temperature_c,,,,,C,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,"Incubator log, probe export, or time-stamped photo.",,,,,,, -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,temperature_c,,,,,C,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,"Incubator log, probe export, or time-stamped photo.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,temperature_c,,,,,C,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,"Incubator log, probe export, or time-stamped photo.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,temperature_c,,,,,C,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,"Incubator log, probe export, or time-stamped photo.",,,,,,, -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,temperature_c,,,,,C,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,"Incubator log, probe export, or time-stamped photo.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,temperature_c,,,,,C,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,"Incubator log, probe export, or time-stamped photo.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,temperature_c,,,,,C,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,"Incubator log, probe export, or time-stamped photo.",,,,,,, -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,temperature_c,,,,,C,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,"Incubator log, probe export, or time-stamped photo.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,temperature_c,,,,,C,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,"Incubator log, probe export, or time-stamped photo.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,temperature_c,,,,,C,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,"Incubator log, probe export, or time-stamped photo.",,,,,,, -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,temperature_c,,,,,C,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,"Incubator log, probe export, or time-stamped photo.",,,,,,, diff --git a/data/limina_source_file_templates/nhi_forward/source_class_templates/bench_or_chain_of_custody_record.csv b/data/limina_source_file_templates/nhi_forward/source_class_templates/bench_or_chain_of_custody_record.csv deleted file mode 100644 index 191fd54..0000000 --- a/data/limina_source_file_templates/nhi_forward/source_class_templates/bench_or_chain_of_custody_record.csv +++ /dev/null @@ -1,369 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,record_type,record_id,sample_id,medium_name,medium_lot,transfer_or_exposure_event -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,,,,,, diff --git a/data/limina_source_file_templates/nhi_forward/source_class_templates/biological_assay_or_imaging_export.csv b/data/limina_source_file_templates/nhi_forward/source_class_templates/biological_assay_or_imaging_export.csv deleted file mode 100644 index 9ad143f..0000000 --- a/data/limina_source_file_templates/nhi_forward/source_class_templates/biological_assay_or_imaging_export.csv +++ /dev/null @@ -1,65 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,assay_type,cell_model,culture_day,plate_or_image_id,reader_or_imager_id,viability_fraction,ldh_fold_control,neurite_metric,morphology_score -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,,,,,,,,,,,, diff --git a/data/limina_source_file_templates/nhi_forward/source_class_templates/electrochemical_or_mea_export.csv b/data/limina_source_file_templates/nhi_forward/source_class_templates/electrochemical_or_mea_export.csv deleted file mode 100644 index 0bc91bb..0000000 --- a/data/limina_source_file_templates/nhi_forward/source_class_templates/electrochemical_or_mea_export.csv +++ /dev/null @@ -1,97 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,mea_or_potentiostat_id,channel_or_electrode_id,analysis_method,raw_export_file_id,eis_1khz_ohm,charge_storage_capacity,baseline_noise_uv,electrode_yield_fraction,spike_rate_hz,burst_rate_hz,synchrony -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, diff --git a/data/limina_source_file_templates/nhi_forward/source_class_templates/image_or_scoring_worksheet.csv b/data/limina_source_file_templates/nhi_forward/source_class_templates/image_or_scoring_worksheet.csv deleted file mode 100644 index 3a4c49b..0000000 --- a/data/limina_source_file_templates/nhi_forward/source_class_templates/image_or_scoring_worksheet.csv +++ /dev/null @@ -1,25 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,image_file_name,imaging_method,scoring_method,score_or_boolean,reviewer -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, diff --git a/data/limina_source_file_templates/nhi_forward/source_class_templates/swelling_dimension_or_mass_worksheet.csv b/data/limina_source_file_templates/nhi_forward/source_class_templates/swelling_dimension_or_mass_worksheet.csv deleted file mode 100644 index ff468c6..0000000 --- a/data/limina_source_file_templates/nhi_forward/source_class_templates/swelling_dimension_or_mass_worksheet.csv +++ /dev/null @@ -1,13 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,pre_measurement,post_measurement,measurement_basis,calculation,swelling_fraction -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, diff --git a/data/limina_source_file_templates/nhi_forward/source_class_templates/temperature_or_incubator_log.csv b/data/limina_source_file_templates/nhi_forward/source_class_templates/temperature_or_incubator_log.csv deleted file mode 100644 index 921046f..0000000 --- a/data/limina_source_file_templates/nhi_forward/source_class_templates/temperature_or_incubator_log.csv +++ /dev/null @@ -1,29 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,temperature_c,temperature_source,covered_window_start,covered_window_end,probe_or_incubator_id -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,,,,,,,, diff --git a/data/limina_source_file_templates/nhi_long/source_class_templates/bench_or_chain_of_custody_record.csv b/data/limina_source_file_templates/nhi_long/source_class_templates/bench_or_chain_of_custody_record.csv deleted file mode 100644 index a3d1d1b..0000000 --- a/data/limina_source_file_templates/nhi_long/source_class_templates/bench_or_chain_of_custody_record.csv +++ /dev/null @@ -1,1249 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,record_type,record_id,sample_id,medium_name,medium_lot,transfer_or_exposure_event -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,,,,,,,, diff --git a/data/limina_source_file_templates/nhi_long/source_class_templates/biological_assay_or_imaging_export.csv b/data/limina_source_file_templates/nhi_long/source_class_templates/biological_assay_or_imaging_export.csv deleted file mode 100644 index a15421e..0000000 --- a/data/limina_source_file_templates/nhi_long/source_class_templates/biological_assay_or_imaging_export.csv +++ /dev/null @@ -1,625 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,assay_type,cell_model,culture_day,plate_or_image_id,reader_or_imager_id,viability_fraction,ldh_fold_control,neurite_metric,morphology_score -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,,,,,,,,, diff --git a/data/limina_source_file_templates/nhi_long/source_class_templates/electrochemical_or_mea_export.csv b/data/limina_source_file_templates/nhi_long/source_class_templates/electrochemical_or_mea_export.csv deleted file mode 100644 index 3665cf9..0000000 --- a/data/limina_source_file_templates/nhi_long/source_class_templates/electrochemical_or_mea_export.csv +++ /dev/null @@ -1,2185 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,mea_or_potentiostat_id,channel_or_electrode_id,analysis_method,raw_export_file_id,eis_1khz_ohm,charge_storage_capacity,baseline_noise_uv,electrode_yield_fraction,spike_rate_hz,burst_rate_hz,synchrony -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,,,,,,,,,,, diff --git a/data/limina_source_file_templates/nhi_long/source_class_templates/image_or_scoring_worksheet.csv b/data/limina_source_file_templates/nhi_long/source_class_templates/image_or_scoring_worksheet.csv deleted file mode 100644 index 26d076a..0000000 --- a/data/limina_source_file_templates/nhi_long/source_class_templates/image_or_scoring_worksheet.csv +++ /dev/null @@ -1,625 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,image_file_name,imaging_method,scoring_method,score_or_boolean,reviewer -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,,,,, diff --git a/data/limina_source_file_templates/nhi_long/source_class_templates/swelling_dimension_or_mass_worksheet.csv b/data/limina_source_file_templates/nhi_long/source_class_templates/swelling_dimension_or_mass_worksheet.csv deleted file mode 100644 index 04fe062..0000000 --- a/data/limina_source_file_templates/nhi_long/source_class_templates/swelling_dimension_or_mass_worksheet.csv +++ /dev/null @@ -1,157 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,pre_measurement,post_measurement,measurement_basis,calculation,swelling_fraction -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,,,,, diff --git a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/bench_or_chain_of_custody_record.csv b/data/limina_source_file_templates/zrc_phase_a/source_class_templates/bench_or_chain_of_custody_record.csv deleted file mode 100644 index 5e951e7..0000000 --- a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/bench_or_chain_of_custody_record.csv +++ /dev/null @@ -1,105 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,record_type,record_id,sample_id,medium_name,medium_lot,transfer_or_exposure_event -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,,,,,,,,, diff --git a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/biochemical_or_plate_reader_export.csv b/data/limina_source_file_templates/zrc_phase_a/source_class_templates/biochemical_or_plate_reader_export.csv deleted file mode 100644 index 46de28d..0000000 --- a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/biochemical_or_plate_reader_export.csv +++ /dev/null @@ -1,113 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,analyte,assay_or_method,instrument_or_vendor_report_id,calibration_or_standard_curve_id,raw_signal,calculated_concentration,dilution_factor -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,,,,,,, diff --git a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/conductivity_meter_export_or_photo.csv b/data/limina_source_file_templates/zrc_phase_a/source_class_templates/conductivity_meter_export_or_photo.csv deleted file mode 100644 index 9c92057..0000000 --- a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/conductivity_meter_export_or_photo.csv +++ /dev/null @@ -1,17 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,conductivity_mS_cm,conductivity_meter_id,standard_check_record_id,temperature_c -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,,,, diff --git a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/image_or_scoring_worksheet.csv b/data/limina_source_file_templates/zrc_phase_a/source_class_templates/image_or_scoring_worksheet.csv deleted file mode 100644 index ad3ad38..0000000 --- a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/image_or_scoring_worksheet.csv +++ /dev/null @@ -1,9 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,image_file_name,imaging_method,scoring_method,score_or_boolean,reviewer -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,,,,,,,, diff --git a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/osmometer_report_or_export.csv b/data/limina_source_file_templates/zrc_phase_a/source_class_templates/osmometer_report_or_export.csv deleted file mode 100644 index 8380321..0000000 --- a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/osmometer_report_or_export.csv +++ /dev/null @@ -1,17 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,osmolality_mOsm_kg,osmometer_id,report_id,vendor_or_lab -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,,,, diff --git a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/pH_meter_export_or_photo.csv b/data/limina_source_file_templates/zrc_phase_a/source_class_templates/pH_meter_export_or_photo.csv deleted file mode 100644 index d8b9810..0000000 --- a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/pH_meter_export_or_photo.csv +++ /dev/null @@ -1,17 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,pH_value,pH_meter_id,calibration_record_id,temperature_c -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/pH_final_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/pH_initial_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/pH_final_pH_meter_export_or_photo.csv,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/pH_initial_pH_meter_export_or_photo.csv,,,,,,, diff --git a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/pressure_flow_or_resistance_export.csv b/data/limina_source_file_templates/zrc_phase_a/source_class_templates/pressure_flow_or_resistance_export.csv deleted file mode 100644 index 0c8f7bb..0000000 --- a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/pressure_flow_or_resistance_export.csv +++ /dev/null @@ -1,25 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,flow_rate_ul_min,pressure_drop,flow_resistance,instrument_id_or_fixture,covered_window_start,covered_window_end,bubble_event_count,inspection_method -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,,,,,,,, diff --git a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/temperature_or_incubator_log.csv b/data/limina_source_file_templates/zrc_phase_a/source_class_templates/temperature_or_incubator_log.csv deleted file mode 100644 index c8aa9be..0000000 --- a/data/limina_source_file_templates/zrc_phase_a/source_class_templates/temperature_or_incubator_log.csv +++ /dev/null @@ -1,9 +0,0 @@ -profile,run_id,phase,sample_event,target_field,measured_at,operator_or_agent,instrument_id,value,unit,source_file_to_save_as,source_file_requirement,method_or_record_id,notes,temperature_c,temperature_source,covered_window_start,covered_window_end,probe_or_incubator_id -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/temperature_c_temperature_or_incubator_log.csv,,,,,,,, -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,,,,, diff --git a/data/limina_source_value_inventory_regression.json b/data/limina_source_value_inventory_regression.json deleted file mode 100644 index fb6ddde..0000000 --- a/data/limina_source_value_inventory_regression.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "boundary": "This regression uses temporary source-value rows only. It does not create source files or measured material evidence.", - "checks": { - "blank_source_value_row_ignored": true, - "filled_source_value_reference_count_is_one": true, - "missing_reference_detected": true, - "status_reports_missing_reference": true - }, - "inventory_summary": { - "allowed_root_count": 12, - "capture_template_reference_count": 0, - "file_count": 0, - "filled_source_value_reference_count": 1, - "missing_reference_count": 1, - "source_reference_count": 1, - "unreferenced_file_count": 0 - }, - "missing_references": [ - { - "capture_file": "/var/folders/z5/yhrnv1l15ng04x9hykysm46w0000gn/T/limina_source_value_inventory_1nq6brmd/source_values.csv", - "line": "2", - "reference_type": "filled_source_value", - "resolved_path": "data/source_files/full/h_a/inventory_regression/missing_pH_export.csv", - "run_id": "INV-REG-001", - "source_file": "data/source_files/full/h_a/inventory_regression/missing_pH_export.csv", - "target_field": "pH" - } - ], - "status": "pass" -} \ No newline at end of file diff --git a/data/limina_suitability_claim_audit.json b/data/limina_suitability_claim_audit.json deleted file mode 100644 index 17715be..0000000 --- a/data/limina_suitability_claim_audit.json +++ /dev/null @@ -1,224 +0,0 @@ -{ - "active_discovery_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "candidate_audits": [ - { - "blockers": [ - "ZRC-ND readiness audit is not suitable; measured non-cell and biological gates are incomplete.", - "ZRC-ND non-cell source has no measured run rows.", - "ZRC-ND biological source has no measured run rows." - ], - "claim_candidate_id": "limina_zrc_nd_v0_1", - "claim_ready": false, - "decision": "not_claim_ready", - "evidence_status": { - "readiness": "not_suitable_yet_no_measured_data", - "suitable": false - }, - "provenance": { - "biological": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "data/zrc_nd_bio_runs_template.csv", - "path_fixture_marker": false, - "placeholder_examples": [], - "placeholder_row_count": 0, - "row_count": 0, - "source_file_issue_count": 0, - "source_file_issue_examples": [], - "synthetic_examples": [], - "synthetic_row_count": 0 - }, - "non_cell": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "data/zrc_nd_validation_runs_active.csv", - "path_fixture_marker": false, - "placeholder_examples": [], - "placeholder_row_count": 0, - "row_count": 0, - "source_file_issue_count": 0, - "source_file_issue_examples": [], - "synthetic_examples": [], - "synthetic_row_count": 0 - } - }, - "technology_id": "limina_zrc_nd_v0_1" - }, - { - "blockers": [ - "NHI-PEDOT H-A sentinel is `h_a_invalid_provenance`, not a QC-clean pass/continue status.", - "NHI-PEDOT coupon gates are `no_data`, not `nhi_pedot_passes_gates`.", - "NHI-PEDOT H-B/H-C forward gate package is preregistered and waiting for H-A, not measured evidence.", - "NHI-PEDOT long-duration gates are `no_data`, not `nhi_pedot_long_passes_gates`.", - "NHI-PEDOT H-A sentinel source has no measured run rows.", - "NHI-PEDOT H-A sentinel source contains placeholder or pending-measurement rows.", - "NHI-PEDOT coupon source has no measured run rows.", - "NHI-PEDOT long-duration source has no measured run rows." - ], - "claim_candidate_id": "limina_alg_lam_pedot_lowdose_v0_2", - "claim_ready": false, - "decision": "not_claim_ready", - "evidence_status": { - "coupon_result_rows": 0, - "coupon_status": "no_data", - "forward_rows": 28, - "forward_status": "preregistered_waiting_for_h_a", - "h_a_measured_rows": 0, - "h_a_status": "h_a_invalid_provenance", - "long_result_rows": 0, - "long_status": "no_data" - }, - "provenance": { - "coupon": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "data/nhi_pedot_runs_template.csv", - "path_fixture_marker": false, - "placeholder_examples": [], - "placeholder_row_count": 0, - "row_count": 0, - "source_file_issue_count": 0, - "source_file_issue_examples": [], - "synthetic_examples": [], - "synthetic_row_count": 0 - }, - "h_a_sentinel": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "data/nhi_pedot_h_a_runs_active.csv", - "path_fixture_marker": false, - "placeholder_examples": [ - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 3, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 4, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 5, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 6, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 7, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 8, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - } - ], - "placeholder_row_count": 12, - "row_count": 12, - "source_file_issue_count": 0, - "source_file_issue_examples": [], - "synthetic_examples": [], - "synthetic_row_count": 0 - }, - "long_duration": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "data/nhi_pedot_long_runs_template.csv", - "path_fixture_marker": false, - "placeholder_examples": [], - "placeholder_row_count": 0, - "row_count": 0, - "source_file_issue_count": 0, - "source_file_issue_examples": [], - "synthetic_examples": [], - "synthetic_row_count": 0 - } - }, - "technology_id": "limina_nhi_pedot_laminin_v0_1" - } - ], - "claim_boundary": "Portfolio status selects workflow priority. Suitability claims require passing gates plus claimable non-synthetic measurement provenance.", - "claim_candidate": null, - "claim_parent_technology": null, - "claim_ready": false, - "portfolio_primary_next_branch": "limina_nhi_pedot_laminin_v0_1", - "portfolio_status": "no_suitable_material_yet", - "status": "no_suitable_material_claim_ready" -} \ No newline at end of file diff --git a/data/limina_technology_portfolio.json b/data/limina_technology_portfolio.json deleted file mode 100644 index ca14954..0000000 --- a/data/limina_technology_portfolio.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "active_discovery_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "active_discovery_priority": "promote_now", - "branches": [ - { - "name": "NHI-PEDOT: Laminin-Anchored PEDOT:PSS Neural Hydrogel Interphase", - "next_action": "Use the H-A service request to obtain real acellular medium/physical rows for the promoted ALG-LAM-PEDOT route before advancing H-B/H-C.", - "portfolio_priority": 1, - "portfolio_status": "active_needs_h_a_real_measurements", - "priority_lane": "LIMINA-Cell-1", - "proof_boundary": "Not suitable until final claim audit verifies H-A/H-B/H-C and long-duration source-file provenance.", - "readiness_status": "h_a=h_a_invalid_provenance;h_a_service=ready_to_request_real_measurements;coupon=no_data;long=no_data", - "sentinel_status": "not_applicable", - "technology_id": "limina_nhi_pedot_laminin_v0_1", - "technology_status": "nominated", - "validation_packages": { - "all_present": true, - "expected": [ - "data/nhi_pedot_validation_package.json", - "data/nhi_pedot_long_followup_package.json" - ], - "present": [ - "data/nhi_pedot_validation_package.json", - "data/nhi_pedot_long_followup_package.json" - ] - }, - "weighted_internal_score": 4.08 - }, - { - "name": "ZRC-ND: Zwitterionic Regenerated-Cellulose Neurodialysis Cartridge", - "next_action": "Fill the 8-row Phase A sentinel packet and re-run sentinel interpretation before more non-cell work.", - "portfolio_priority": 1, - "portfolio_status": "active_needs_phase_a_sentinel", - "priority_lane": "LIMINA-External-1", - "proof_boundary": "Not suitable until the final claim audit verifies measured non-cell and biological provenance.", - "readiness_status": "not_suitable_yet_no_measured_data", - "sentinel_status": "no_sentinel_rows", - "technology_id": "limina_zrc_nd_v0_1", - "technology_status": "nominated", - "validation_packages": { - "all_present": true, - "expected": [ - "data/zrc_nd_3p5k_guard_validation_package.json", - "data/zrc_nd_biological_followup_package.json" - ], - "present": [ - "data/zrc_nd_3p5k_guard_validation_package.json", - "data/zrc_nd_biological_followup_package.json" - ] - }, - "weighted_internal_score": 4.02 - } - ], - "primary_next_branch": "limina_nhi_pedot_laminin_v0_1", - "status": "no_suitable_material_yet" -} \ No newline at end of file diff --git a/data/limina_wide_raw_csv_extraction_regression.json b/data/limina_wide_raw_csv_extraction_regression.json deleted file mode 100644 index c854a24..0000000 --- a/data/limina_wide_raw_csv_extraction_regression.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "checks": { - "missing_raw_csv_is_not_synthetic": true, - "placeholder_value_rejected": true, - "valid_raw_csv_extracts_one_row": true - }, - "extracted_status": "zrc_nd_phase_a_raw_csv_value_extraction_ready", - "no_raw_status": "zrc_nd_phase_a_raw_csv_value_extraction_no_raw_csv", - "rejected_status": "zrc_nd_phase_a_raw_csv_value_extraction_blocked", - "status": "pass" -} \ No newline at end of file diff --git a/data/literature_query_packs.json b/data/literature_query_packs.json deleted file mode 100644 index 461a87d..0000000 --- a/data/literature_query_packs.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "version": "0.1", - "packs": [ - { - "id": "limina_external_1_waste_cartridge", - "priority": "LIMINA-External-1", - "goal": "Find materials and modules that remove neuronal culture waste while preserving trophic factors and secretome signals.", - "queries": [ - "neuronal culture perfusion waste removal lactate ammonium growth factor retention membrane", - "cell culture medium dialysis growth factor retention lactate ammonia removal", - "regenerated cellulose dialysis membrane cell culture media protein retention", - "zwitterionic antifouling membrane protein adsorption cell culture media", - "ion exchange membrane ammonium removal mammalian cell culture medium", - "lactate removal mammalian cell culture medium enzyme cartridge hydrogen peroxide risk", - "microfluidic neural culture perfusion waste exchange secretome retention", - "spent media regeneration ion concentration polarization ammonium lactate removal" - ] - }, - { - "id": "limina_external_2_tubeset_manifold", - "priority": "LIMINA-External-2", - "goal": "Find low-adsorption, low-leachable tubing/manifold materials for neuronal media perfusion.", - "queries": [ - "cell culture tubing material adsorption growth factors silicone FEP PTFE PEEK", - "microfluidic cell culture PDMS absorption hydrophobic molecules alternatives COC COP", - "organ on chip thermoplastic material leachables COC PMMA cell culture", - "platinum cured silicone tubing extractables cell culture medium" - ] - }, - { - "id": "limina_external_3_gas_exchange", - "priority": "LIMINA-External-3", - "goal": "Find gas-exchange membranes that control O2/CO2/pH without excessive evaporation or medium adsorption.", - "queries": [ - "cell culture gas exchange membrane silicone fluoropolymer evaporation oxygen carbon dioxide", - "hollow fiber membrane oxygenation cell culture medium bioreactor material", - "organ on chip gas permeable membrane PDMS fluoropolymer oxygenation" - ] - }, - { - "id": "limina_external_4_bubble_control", - "priority": "LIMINA-External-4", - "goal": "Find materials and surface geometries that reduce bubble nucleation and trapping in perfused cell culture systems.", - "queries": [ - "microfluidic cell culture bubble trap surface material hydrophilic hydrophobic", - "organ on chip bubble control degassing membrane cell culture", - "microfluidic perfusion bubble nucleation surface energy coating" - ] - } - ] -} - diff --git a/data/material_candidates_seed.json b/data/material_candidates_seed.json deleted file mode 100644 index 64f65b8..0000000 --- a/data/material_candidates_seed.json +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "id": "pedot_pss_ecm_hydrogel", - "name": "PEDOT:PSS hydrogel with ECM-mimetic top layer", - "class": "conductive_polymer_hydrogel", - "hypothesis": "A soft PEDOT:PSS-rich hydrogel can lower electrode impedance while an ECM-mimetic or laminin-like top layer improves neuronal adhesion and maturation.", - "cell_adaptation_mechanism": "Mixed ionic/electronic transport plus hydrated softness and adhesive biochemical cues.", - "computational_handles": ["polymer_fragment_screening", "swelling_risk", "surface_ligand_density"], - "wet_lab_readouts": ["neuronal_viability", "neurite_outgrowth", "spike_rate", "electrode_impedance", "charge_storage_capacity", "28_day_stability"], - "known_risks": ["PSS acidity or leachables", "delamination", "over-swelling", "batch variability"], - "evidence_refs": ["pedot_brain_monitoring_2025", "pedot_bio_sei_2026", "conductive_hydrogels_2025"], - "scores": { - "cell_compatibility": 4, - "electrical_coupling": 5, - "mechanical_match": 4, - "culture_stability": 3, - "mea_integration": 5, - "novelty_upside": 4, - "risk_control": 3 - } - }, - { - "id": "zwitterionic_pedot_gradient", - "name": "Zwitterionic PEDOT or PEDOT:PSS gradient interphase", - "class": "mixed_conducting_antifouling_polymer", - "hypothesis": "A zwitterionic or PEG-like gradient can reduce nonspecific fouling while maintaining mixed conduction; patterned ECM domains can prevent the surface from becoming too cell-repellent.", - "cell_adaptation_mechanism": "Hydrated antifouling chemistry reduces unwanted protein adsorption and inflammatory-like responses while adhesive islands guide neurons.", - "computational_handles": ["monomer_property_screening", "hydration_shell_proxy", "charge_balance"], - "wet_lab_readouts": ["protein_adsorption", "neuronal_adhesion_patterning", "impedance_drift", "cell_viability", "glia_marker_expression"], - "known_risks": ["too little neuronal adhesion", "complex synthesis", "uncertain long-term electrochemistry"], - "evidence_refs": ["zwitterionic_cp_2023", "zwitterionic_hydrogel_2022", "pedot_bio_sei_2026"], - "scores": { - "cell_compatibility": 4, - "electrical_coupling": 4, - "mechanical_match": 4, - "culture_stability": 4, - "mea_integration": 4, - "novelty_upside": 5, - "risk_control": 3 - } - }, - { - "id": "graphene_ecm_coating", - "name": "CVD graphene or rGO coating with ECM functionalization", - "class": "carbon_neural_interface", - "hypothesis": "Graphene-family coatings may provide conductive, transparent, flexible neural interfaces when combined with cell-adhesive chemistry.", - "cell_adaptation_mechanism": "High conductivity and nanoscale morphology support recording/stimulation; ECM chemistry tunes neuron attachment.", - "computational_handles": ["surface_functional_group_screening", "oxidation_defect_tradeoff"], - "wet_lab_readouts": ["neuronal_viability", "neurite_alignment", "impedance", "optical_imaging_compatibility", "long_term_safety"], - "known_risks": ["manufacturing variability", "long-term biodegradation uncertainty", "defect chemistry changes cell response"], - "evidence_refs": ["graphene_neural_interfaces_2024", "graphene_activity_detection_2021"], - "scores": { - "cell_compatibility": 4, - "electrical_coupling": 4, - "mechanical_match": 3, - "culture_stability": 4, - "mea_integration": 4, - "novelty_upside": 4, - "risk_control": 3 - } - }, - { - "id": "gelma_pedot_composite", - "name": "GelMA or hyaluronic-acid hydrogel with dispersed PEDOT:PSS domains", - "class": "bioactive_conductive_hydrogel", - "hypothesis": "A bioactive hydrogel matrix can provide cell-friendly mechanics while sparse PEDOT:PSS domains improve electrical coupling without making the whole surface polymer-dominated.", - "cell_adaptation_mechanism": "ECM-like hydrogel chemistry supports cell attachment; conductive domains create local transduction paths.", - "computational_handles": ["hydrogel_mesh_size_proxy", "conductive_domain_fraction", "diffusion_proxy"], - "wet_lab_readouts": ["cell_viability", "neurite_outgrowth", "network_bursting", "conductivity", "swelling", "sterilization_response"], - "known_risks": ["conductive percolation may be insufficient", "photocrosslinking toxicity", "composition drift"], - "evidence_refs": ["conductive_hydrogels_2025", "hydrogel_neural_tissue_2020", "stiffness_sensing_2020"], - "scores": { - "cell_compatibility": 5, - "electrical_coupling": 3, - "mechanical_match": 5, - "culture_stability": 3, - "mea_integration": 4, - "novelty_upside": 4, - "risk_control": 4 - } - }, - { - "id": "polydopamine_laminin_bridge", - "name": "Polydopamine adhesion layer with laminin/peptide presentation", - "class": "surface_biofunctionalization", - "hypothesis": "A thin polydopamine primer can make otherwise inert electrode or polymer surfaces easier to functionalize with neuron-friendly ligands.", - "cell_adaptation_mechanism": "Improves biochemical presentation rather than bulk conductivity; useful as a modular top layer.", - "computational_handles": ["ligand_selection", "surface_density_tracking"], - "wet_lab_readouts": ["coating_uniformity", "neuronal_adhesion", "neurite_outgrowth", "impedance_change", "medium_stability"], - "known_risks": ["thin layer may not solve mechanics", "ligand degradation", "possible impedance penalty if too thick"], - "evidence_refs": ["dopamine_zwitterion_surface_2021", "hydrogel_neural_tissue_2020"], - "scores": { - "cell_compatibility": 5, - "electrical_coupling": 2, - "mechanical_match": 2, - "culture_stability": 4, - "mea_integration": 5, - "novelty_upside": 3, - "risk_control": 4 - } - }, - { - "id": "mxene_hydrogel_exploratory", - "name": "MXene-loaded soft hydrogel, exploratory only", - "class": "2d_conductive_nanocomposite", - "hypothesis": "MXenes offer high conductivity and hydrophilicity, but their oxidation and biological risk profile make them a lower-priority exploratory branch for neural culture interfaces.", - "cell_adaptation_mechanism": "Potential high-conductivity hydrated composite; biological compatibility must be proven for the exact formulation.", - "computational_handles": ["oxidation_risk", "ion_release_risk", "filler_loading"], - "wet_lab_readouts": ["cytotoxicity", "ROS_markers", "conductivity_drift", "impedance", "cell_viability"], - "known_risks": ["oxidation", "ion or flake toxicity", "poor long-term culture evidence"], - "evidence_refs": ["conductive_hydrogels_2025"], - "scores": { - "cell_compatibility": 2, - "electrical_coupling": 5, - "mechanical_match": 4, - "culture_stability": 2, - "mea_integration": 3, - "novelty_upside": 5, - "risk_control": 2 - } - } -] - diff --git a/data/nhi_pedot_alg_lam_protocol_v0_2.json b/data/nhi_pedot_alg_lam_protocol_v0_2.json deleted file mode 100644 index cfa8ef9..0000000 --- a/data/nhi_pedot_alg_lam_protocol_v0_2.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "id": "nhi_pedot_alg_lam_protocol_v0_2", - "candidate_id": "limina_alg_lam_pedot_lowdose_v0_2", - "source_evidence": "pedot_neural_culture_hydrogel_2025", - "source_url": "https://pubs.rsc.org/en/content/articlehtml/2026/tc/d5tc02708j", - "purpose": "Translate the published alginate-laminin-PEDOT:PSS hydrogel method into LIMINA H-A sentinel defaults without treating literature targets as measured local data.", - "literature_recipe_anchor": { - "alginate_basis": "2 percent w/v alginate hydrogel", - "alginate_source": "PRONOVA UP VLVG sodium alginate, Mw < 75 kDa in source paper", - "crosslinker": "183 mM calcium sulfate dihydrate dispersed in 1x DMEM", - "gelation": "syringe-mixed precursor/crosslinker, cast into controlled-thickness mold, 1 h gelation", - "conductive_phase": "commercial PEDOT:PSS Clevios PH 100 water dispersion", - "laminin": "Engelbreth-Holm-Swarm laminin, source paper used Sigma-Aldrich L2020", - "cell_culture_loading": "0.6 wt percent PEDOT:PSS used for all cell-culture data in the source paper", - "material_characterization_loadings": "0.9 and 1.2 wt percent PEDOT:PSS characterized for optical, mechanical, and electrochemical trends", - "thickness_window_um": "150 to 400 um for optical/culture-relevant thin hydrogel tests; 1 mm hydrogel pieces used beside cultures; 10 mm mold used for bulk electrochemistry in source setup", - "pre_measurement_conditioning": "overnight incubation in DMEM/F12 or relevant cell culture medium before electrochemical measurement", - "temperature_c": "37", - "published_performance_context": "1-10 kPa mechanical range, >28 day hiPSC-derived cortical neuron cytocompatibility, stable electrochemistry over 80 cycles" - }, - "limina_h_a_defaults": { - "hydrogel_laminin_control": { - "electrode_material": "mea_coupon_material_record_actual", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem", - "hydrogel_thickness_um": "400", - "pedot_pss_loading_fraction": "0", - "pedot_pss_pre_rinse_protocol": "not_applicable_no_pedot", - "laminin_or_peptide_density": "ehs_laminin_same_as_lead_record_lot", - "crosslinking_protocol": "183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation", - "sterilization_or_aseptic_protocol": "aseptic_preparation_record_lot_and_handling", - "medium_name": "DMEM_F12_or_CL1_proxy_record_actual", - "temperature_c": "37" - }, - "lead_nhi_pedot_low_loading": { - "electrode_material": "mea_coupon_material_record_actual", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "hydrogel_thickness_um": "400", - "pedot_pss_loading_fraction": "0.006", - "pedot_pss_pre_rinse_protocol": "overnight_medium_conditioning_before_measurement", - "laminin_or_peptide_density": "ehs_laminin_same_as_control_record_lot", - "crosslinking_protocol": "183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation", - "sterilization_or_aseptic_protocol": "aseptic_preparation_record_lot_and_handling", - "medium_name": "DMEM_F12_or_CL1_proxy_record_actual", - "temperature_c": "37" - }, - "challenge_nhi_pedot_high_loading": { - "electrode_material": "mea_coupon_material_record_actual", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "hydrogel_thickness_um": "400", - "pedot_pss_loading_fraction": "0.012", - "pedot_pss_pre_rinse_protocol": "overnight_medium_conditioning_before_measurement", - "laminin_or_peptide_density": "ehs_laminin_same_as_control_record_lot", - "crosslinking_protocol": "183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation", - "sterilization_or_aseptic_protocol": "aseptic_preparation_record_lot_and_handling", - "medium_name": "DMEM_F12_or_CL1_proxy_record_actual", - "temperature_c": "37" - } - }, - "fields_that_must_be_replaced_by_real_measurement": [ - "date", - "mea_coupon_id", - "electrode_material", - "medium_name", - "medium_lot", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction" - ], - "h_a_interpretation": { - "lead_preference": "0.6 wt percent PEDOT:PSS is the first LIMINA lead because it is the source paper's cell-culture loading and should preserve optical/biological margin.", - "challenge_role": "1.2 wt percent is a stress comparator for conductivity-versus-transparency and toxicity, not a first-claim lead.", - "stop_condition": "Any H-A medium drift, visible shedding, swelling, delamination, or transparency failure stops H-B/H-C advancement." - } -} diff --git a/data/nhi_pedot_forward_gate_package.json b/data/nhi_pedot_forward_gate_package.json deleted file mode 100644 index 4f1d80b..0000000 --- a/data/nhi_pedot_forward_gate_package.json +++ /dev/null @@ -1,505 +0,0 @@ -{ - "activation_rule": "Run H-B only after H-A has QC-clean real rows and an H-A pass/continue status.", - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "h_a_status": "h_a_invalid_provenance", - "non_claim_boundary": "This package is a preregistered next-step plan. It is not evidence and cannot support a material suitability claim without real measured rows and the final claim audit.", - "parent_validation_package": "nhi_pedot_laminin_validation_v0_1", - "phase_packages": [ - { - "activation_condition": "after_H-A_pass", - "articles": [ - "hydrogel_laminin_control", - "lead_nhi_pedot_low_loading", - "challenge_nhi_pedot_high_loading" - ], - "gate_ids": [ - "physical_stability_gate", - "electrochemical_benefit_gate" - ], - "gates": [ - { - "criterion": "Hydrogel thickness changes less than 20 percent, no delamination/cracking, electrode windows remain inspectable, and transparency remains sufficient for cell monitoring after 72 h soak.", - "failure_response": "Change matrix concentration, anchoring chemistry, pattern geometry, or crosslinking route.", - "id": "physical_stability_gate" - }, - { - "criterion": "The low-loading lead improves impedance or charge-storage metrics by at least 25 percent versus hydrogel-laminin control after soak, without unstable cyclic-voltammetry drift.", - "failure_response": "Rerank loading, domain geometry, or drop PEDOT:PSS if the hydrogel-only control is equivalent.", - "id": "electrochemical_benefit_gate" - } - ], - "name": "Electrochemical and physical stability", - "phase": "H-B", - "required_fields": [ - "date", - "operator_or_agent", - "mea_coupon_id", - "electrode_material", - "hydrogel_matrix", - "pedot_pss_loading_fraction", - "pedot_pss_pre_rinse_protocol", - "laminin_or_peptide_density", - "crosslinking_protocol", - "sterilization_or_aseptic_protocol", - "medium_name", - "medium_lot", - "temperature_c", - "source_file", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "eis_1khz_initial_ohm", - "eis_1khz_final_ohm", - "charge_storage_capacity_initial", - "charge_storage_capacity_final" - ], - "timepoints": [ - "pre-soak", - "24 h soak", - "72 h soak", - "post-cycling" - ] - }, - { - "activation_condition": "after_H-B_pass", - "articles": [ - "laminin_only_control", - "hydrogel_laminin_control", - "lead_nhi_pedot_low_loading", - "challenge_nhi_pedot_high_loading" - ], - "gate_ids": [ - "neural_health_gate", - "network_activity_gate" - ], - "gates": [ - { - "criterion": "Lead viability, LDH or equivalent cytotoxicity, neurite coverage, and morphology are non-inferior to laminin-only and hydrogel-laminin controls at early timepoints.", - "failure_response": "Lower PEDOT:PSS loading, improve rinse/neutralization, change ECM presentation, or reject the conductive phase.", - "id": "neural_health_gate" - }, - { - "criterion": "Lead MEA cultures maintain electrode yield and network activity at least non-inferior to hydrogel-laminin controls, with lower impedance drift, through the pilot window.", - "failure_response": "If cells survive but network activity falls, change stiffness, ligand density, thickness, or conductive-domain geometry before longer tests.", - "id": "network_activity_gate" - } - ], - "name": "Neural compatibility pilot", - "phase": "H-C", - "required_fields": [ - "date", - "operator_or_agent", - "mea_coupon_id", - "electrode_material", - "hydrogel_matrix", - "pedot_pss_loading_fraction", - "pedot_pss_pre_rinse_protocol", - "laminin_or_peptide_density", - "crosslinking_protocol", - "sterilization_or_aseptic_protocol", - "medium_name", - "medium_lot", - "temperature_c", - "source_file", - "cell_model", - "seeding_density", - "viability_fraction", - "ldh_fold_control", - "neurite_coverage_fraction", - "mean_neurite_length_um", - "electrode_yield_fraction", - "spike_rate_hz", - "burst_rate_hz" - ], - "timepoints": [ - "24 h", - "7 d", - "14 d", - "28 d if early gates pass" - ] - } - ], - "purpose": "Pre-register the next H-B/H-C evidence gates for the ALG-LAM-PEDOT first-claim route.", - "row_count": 28, - "rows": [ - { - "activation_condition": "after_H-A_pass", - "article_id": "hydrogel_laminin_control", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "physical_stability_gate;electrochemical_benefit_gate", - "phase": "H-B", - "priority": "1", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "timepoint": "pre-soak", - "variant_id": "hydrogel_laminin_no_pedot" - }, - { - "activation_condition": "after_H-A_pass", - "article_id": "hydrogel_laminin_control", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "physical_stability_gate;electrochemical_benefit_gate", - "phase": "H-B", - "priority": "2", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "timepoint": "24 h soak", - "variant_id": "hydrogel_laminin_no_pedot" - }, - { - "activation_condition": "after_H-A_pass", - "article_id": "hydrogel_laminin_control", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "physical_stability_gate;electrochemical_benefit_gate", - "phase": "H-B", - "priority": "3", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "timepoint": "72 h soak", - "variant_id": "hydrogel_laminin_no_pedot" - }, - { - "activation_condition": "after_H-A_pass", - "article_id": "hydrogel_laminin_control", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "physical_stability_gate;electrochemical_benefit_gate", - "phase": "H-B", - "priority": "4", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "timepoint": "post-cycling", - "variant_id": "hydrogel_laminin_no_pedot" - }, - { - "activation_condition": "after_H-A_pass", - "article_id": "lead_nhi_pedot_low_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "physical_stability_gate;electrochemical_benefit_gate", - "phase": "H-B", - "priority": "5", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "timepoint": "pre-soak", - "variant_id": "nhi_pedot_low_loading_laminin" - }, - { - "activation_condition": "after_H-A_pass", - "article_id": "lead_nhi_pedot_low_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "physical_stability_gate;electrochemical_benefit_gate", - "phase": "H-B", - "priority": "6", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "timepoint": "24 h soak", - "variant_id": "nhi_pedot_low_loading_laminin" - }, - { - "activation_condition": "after_H-A_pass", - "article_id": "lead_nhi_pedot_low_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "physical_stability_gate;electrochemical_benefit_gate", - "phase": "H-B", - "priority": "7", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "timepoint": "72 h soak", - "variant_id": "nhi_pedot_low_loading_laminin" - }, - { - "activation_condition": "after_H-A_pass", - "article_id": "lead_nhi_pedot_low_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "physical_stability_gate;electrochemical_benefit_gate", - "phase": "H-B", - "priority": "8", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "timepoint": "post-cycling", - "variant_id": "nhi_pedot_low_loading_laminin" - }, - { - "activation_condition": "after_H-A_pass", - "article_id": "challenge_nhi_pedot_high_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "physical_stability_gate;electrochemical_benefit_gate", - "phase": "H-B", - "priority": "9", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "timepoint": "pre-soak", - "variant_id": "nhi_pedot_high_loading_laminin" - }, - { - "activation_condition": "after_H-A_pass", - "article_id": "challenge_nhi_pedot_high_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "physical_stability_gate;electrochemical_benefit_gate", - "phase": "H-B", - "priority": "10", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "timepoint": "24 h soak", - "variant_id": "nhi_pedot_high_loading_laminin" - }, - { - "activation_condition": "after_H-A_pass", - "article_id": "challenge_nhi_pedot_high_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "physical_stability_gate;electrochemical_benefit_gate", - "phase": "H-B", - "priority": "11", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "timepoint": "72 h soak", - "variant_id": "nhi_pedot_high_loading_laminin" - }, - { - "activation_condition": "after_H-A_pass", - "article_id": "challenge_nhi_pedot_high_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "physical_stability_gate;electrochemical_benefit_gate", - "phase": "H-B", - "priority": "12", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "timepoint": "post-cycling", - "variant_id": "nhi_pedot_high_loading_laminin" - }, - { - "activation_condition": "after_H-B_pass", - "article_id": "laminin_only_control", - "control_article_id": "no_coating_mea_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "13", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "timepoint": "24 h", - "variant_id": "laminin_only_mea" - }, - { - "activation_condition": "after_H-B_pass", - "article_id": "laminin_only_control", - "control_article_id": "no_coating_mea_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "14", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "timepoint": "7 d", - "variant_id": "laminin_only_mea" - }, - { - "activation_condition": "after_H-B_pass", - "article_id": "laminin_only_control", - "control_article_id": "no_coating_mea_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "15", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "timepoint": "14 d", - "variant_id": "laminin_only_mea" - }, - { - "activation_condition": "after_H-C_24h_7d_14d_early_gates_pass", - "article_id": "laminin_only_control", - "control_article_id": "no_coating_mea_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "16", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "timepoint": "28 d if early gates pass", - "variant_id": "laminin_only_mea" - }, - { - "activation_condition": "after_H-B_pass", - "article_id": "hydrogel_laminin_control", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "17", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "timepoint": "24 h", - "variant_id": "hydrogel_laminin_no_pedot" - }, - { - "activation_condition": "after_H-B_pass", - "article_id": "hydrogel_laminin_control", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "18", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "timepoint": "7 d", - "variant_id": "hydrogel_laminin_no_pedot" - }, - { - "activation_condition": "after_H-B_pass", - "article_id": "hydrogel_laminin_control", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "19", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "timepoint": "14 d", - "variant_id": "hydrogel_laminin_no_pedot" - }, - { - "activation_condition": "after_H-C_24h_7d_14d_early_gates_pass", - "article_id": "hydrogel_laminin_control", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "20", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "timepoint": "28 d if early gates pass", - "variant_id": "hydrogel_laminin_no_pedot" - }, - { - "activation_condition": "after_H-B_pass", - "article_id": "lead_nhi_pedot_low_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "21", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "timepoint": "24 h", - "variant_id": "nhi_pedot_low_loading_laminin" - }, - { - "activation_condition": "after_H-B_pass", - "article_id": "lead_nhi_pedot_low_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "22", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "timepoint": "7 d", - "variant_id": "nhi_pedot_low_loading_laminin" - }, - { - "activation_condition": "after_H-B_pass", - "article_id": "lead_nhi_pedot_low_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "23", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "timepoint": "14 d", - "variant_id": "nhi_pedot_low_loading_laminin" - }, - { - "activation_condition": "after_H-C_24h_7d_14d_early_gates_pass", - "article_id": "lead_nhi_pedot_low_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "24", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "timepoint": "28 d if early gates pass", - "variant_id": "nhi_pedot_low_loading_laminin" - }, - { - "activation_condition": "after_H-B_pass", - "article_id": "challenge_nhi_pedot_high_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "25", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "timepoint": "24 h", - "variant_id": "nhi_pedot_high_loading_laminin" - }, - { - "activation_condition": "after_H-B_pass", - "article_id": "challenge_nhi_pedot_high_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "26", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "timepoint": "7 d", - "variant_id": "nhi_pedot_high_loading_laminin" - }, - { - "activation_condition": "after_H-B_pass", - "article_id": "challenge_nhi_pedot_high_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "27", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "timepoint": "14 d", - "variant_id": "nhi_pedot_high_loading_laminin" - }, - { - "activation_condition": "after_H-C_24h_7d_14d_early_gates_pass", - "article_id": "challenge_nhi_pedot_high_loading", - "control_article_id": "hydrogel_laminin_control", - "gate_focus": "neural_health_gate;network_activity_gate", - "phase": "H-C", - "priority": "28", - "replicate": "1", - "required_fields": "date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "timepoint": "28 d if early gates pass", - "variant_id": "nhi_pedot_high_loading_laminin" - } - ], - "status": "preregistered_waiting_for_h_a", - "variant_triggers": [ - { - "trigger": "use_if_0p6pct_passes_H-A_but_H-B_electrical_benefit_is_borderline", - "variant_id": "alg_lam_pedot_0p9pct_midpoint" - }, - { - "trigger": "use_if_unanchored_0p6pct_passes_medium_gates_but_fails_delamination_or_window_stability", - "variant_id": "pda_anchor_alg_lam_pedot_0p6pct" - }, - { - "trigger": "use_if_0p6pct_lead_has_mild_H-A_drift_or_shedding_without_hydrogel_control_failure", - "variant_id": "alg_lam_pedot_0p3pct_safety_rescue" - } - ] -} \ No newline at end of file diff --git a/data/nhi_pedot_forward_gate_rows.csv b/data/nhi_pedot_forward_gate_rows.csv deleted file mode 100644 index e49e57c..0000000 --- a/data/nhi_pedot_forward_gate_rows.csv +++ /dev/null @@ -1,29 +0,0 @@ -priority,run_id,phase,timepoint,replicate,article_id,variant_id,control_article_id,required_fields,gate_focus,activation_condition -1,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final,physical_stability_gate;electrochemical_benefit_gate,after_H-A_pass -2,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final,physical_stability_gate;electrochemical_benefit_gate,after_H-A_pass -3,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final,physical_stability_gate;electrochemical_benefit_gate,after_H-A_pass -4,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final,physical_stability_gate;electrochemical_benefit_gate,after_H-A_pass -5,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final,physical_stability_gate;electrochemical_benefit_gate,after_H-A_pass -6,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final,physical_stability_gate;electrochemical_benefit_gate,after_H-A_pass -7,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final,physical_stability_gate;electrochemical_benefit_gate,after_H-A_pass -8,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final,physical_stability_gate;electrochemical_benefit_gate,after_H-A_pass -9,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final,physical_stability_gate;electrochemical_benefit_gate,after_H-A_pass -10,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final,physical_stability_gate;electrochemical_benefit_gate,after_H-A_pass -11,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final,physical_stability_gate;electrochemical_benefit_gate,after_H-A_pass -12,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;swelling_fraction;delamination_score;optical_transparency_fraction;eis_1khz_initial_ohm;eis_1khz_final_ohm;charge_storage_capacity_initial;charge_storage_capacity_final,physical_stability_gate;electrochemical_benefit_gate,after_H-A_pass -13,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-B_pass -14,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-B_pass -15,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-B_pass -16,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-C_24h_7d_14d_early_gates_pass -17,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-B_pass -18,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-B_pass -19,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-B_pass -20,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-C_24h_7d_14d_early_gates_pass -21,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-B_pass -22,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-B_pass -23,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-B_pass -24,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-C_24h_7d_14d_early_gates_pass -25,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-B_pass -26,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-B_pass -27,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-B_pass -28,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,date;operator_or_agent;mea_coupon_id;electrode_material;hydrogel_matrix;pedot_pss_loading_fraction;pedot_pss_pre_rinse_protocol;laminin_or_peptide_density;crosslinking_protocol;sterilization_or_aseptic_protocol;medium_name;medium_lot;temperature_c;source_file;cell_model;seeding_density;viability_fraction;ldh_fold_control;neurite_coverage_fraction;mean_neurite_length_um;electrode_yield_fraction;spike_rate_hz;burst_rate_hz,neural_health_gate;network_activity_gate,after_H-C_24h_7d_14d_early_gates_pass diff --git a/data/nhi_pedot_forward_raw_csv_extracted_values.csv b/data/nhi_pedot_forward_raw_csv_extracted_values.csv deleted file mode 100644 index 6d9cefc..0000000 --- a/data/nhi_pedot_forward_raw_csv_extracted_values.csv +++ /dev/null @@ -1 +0,0 @@ -profile,run_id,phase,timepoint,replicate,article_id,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes,planned_value,current_value,source_class,instrument_required,recommended_source_file,source_file_exists,review_status,missing_items,capture_instruction diff --git a/data/nhi_pedot_forward_raw_csv_value_extraction.json b/data/nhi_pedot_forward_raw_csv_value_extraction.json deleted file mode 100644 index 5bdd1e3..0000000 --- a/data/nhi_pedot_forward_raw_csv_value_extraction.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "boundary": "This extractor reads only existing raw CSV/TSV files in allowed source-file roots. It writes a non-evidence source-value sidecar for the wide importer; missing files produce no synthetic rows.", - "generated_artifacts": { - "json": "data/nhi_pedot_forward_raw_csv_value_extraction.json", - "report": "reports/nhi_pedot_forward_raw_csv_value_extraction.md", - "values_out": "data/nhi_pedot_forward_raw_csv_extracted_values.csv" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/nhi_pedot_forward_source_values.csv" - }, - "issues": [], - "profile": "nhi_forward", - "source_files": [], - "status": "nhi_pedot_forward_raw_csv_value_extraction_no_raw_csv", - "summary": { - "ambiguous_rows": 0, - "error_count": 0, - "extracted_rows": 0, - "plan_rows": 592, - "raw_csv_found": 0, - "raw_csv_missing": 504, - "raw_csv_source_files": 0, - "raw_csv_unsupported": 88, - "warning_count": 0 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_forward_source_drop_plan.csv b/data/nhi_pedot_forward_source_drop_plan.csv deleted file mode 100644 index 81b0c90..0000000 --- a/data/nhi_pedot_forward_source_drop_plan.csv +++ /dev/null @@ -1,593 +0,0 @@ -profile,run_id,phase,sample_event,target_field,source_class,source_file,source_dir,source_dir_status,source_file_exists,source_file_allowed,value_filled,import_ready,source_file_requirement,capture_instruction -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,charge_storage_capacity_final,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,eis_1khz_final_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,charge_storage_capacity_final,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,eis_1khz_final_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,charge_storage_capacity_final,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,eis_1khz_final_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,charge_storage_capacity_final,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,eis_1khz_final_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,charge_storage_capacity_final,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,eis_1khz_final_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,charge_storage_capacity_final,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,eis_1khz_final_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,charge_storage_capacity_final,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,eis_1khz_final_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,charge_storage_capacity_final,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,eis_1khz_final_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,charge_storage_capacity_final,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,eis_1khz_final_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,charge_storage_capacity_final,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,eis_1khz_final_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,charge_storage_capacity_final,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,eis_1khz_final_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,charge_storage_capacity_final,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,eis_1khz_final_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,burst_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,crosslinking_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,electrode_material,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real electrode_material value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,electrode_yield_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,ldh_fold_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,mean_neurite_length_um,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real medium_lot value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real medium_name value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,neurite_coverage_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,pedot_pss_pre_rinse_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,seeding_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real seeding_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,spike_rate_hz,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,sterilization_or_aseptic_protocol,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,temperature_c,temperature_or_incubator_log,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real temperature_c value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,,viability_fraction,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,already_exists,false,true,false,false,,"Enter the real viability_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." diff --git a/data/nhi_pedot_forward_source_drop_plan.json b/data/nhi_pedot_forward_source_drop_plan.json deleted file mode 100644 index 3f25195..0000000 --- a/data/nhi_pedot_forward_source_drop_plan.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "boundary": "This creates allowed source-file directories and a missing-file plan only. It does not create raw measurement files or measured evidence.", - "generated_artifacts": { - "csv": "data/nhi_pedot_forward_source_drop_plan.csv", - "json": "data/nhi_pedot_forward_source_drop_plan.json", - "report": "reports/nhi_pedot_forward_source_drop_plan.md" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/nhi_pedot_forward_source_values.csv" - }, - "label": "NHI-PEDOT H-B/H-C", - "profile": "nhi_forward", - "status": "nhi_pedot_forward_source_drop_plan_ready", - "summary": { - "allowed_source_file_count": 592, - "created_source_dir_count": 0, - "existing_source_file_count": 0, - "filled_value_rows": 0, - "import_ready_rows": 0, - "missing_source_file_count": 592, - "planned_source_file_count": 592, - "source_class_counts": { - "bench_or_chain_of_custody_record": 368, - "biological_assay_or_imaging_export": 64, - "electrochemical_or_mea_export": 96, - "image_or_scoring_worksheet": 24, - "swelling_dimension_or_mass_worksheet": 12, - "temperature_or_incubator_log": 28 - }, - "source_dir_count": 28, - "source_dir_status_counts": { - "already_exists": 592 - } - } -} \ No newline at end of file diff --git a/data/nhi_pedot_forward_source_file_template_manifest.csv b/data/nhi_pedot_forward_source_file_template_manifest.csv deleted file mode 100644 index 11d7e96..0000000 --- a/data/nhi_pedot_forward_source_file_template_manifest.csv +++ /dev/null @@ -1,7 +0,0 @@ -profile,source_class,template_file,template_row_count,target_source_files,accepted_extensions,required_source_metadata,template_columns,boundary -nhi_forward,bench_or_chain_of_custody_record,data/limina_source_file_templates/nhi_forward/source_class_templates/bench_or_chain_of_custody_record.csv,368,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,"run_id or sample_id, operator, date, transfer or exposure event",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;record_type;record_id;sample_id;medium_name;medium_lot;transfer_or_exposure_event,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -nhi_forward,biological_assay_or_imaging_export,data/limina_source_file_templates/nhi_forward/source_class_templates/biological_assay_or_imaging_export.csv,64,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.tif;.tiff,"run_id, culture model, assay date, operator or vendor, instrument_id or imaging/export method",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;assay_type;cell_model;culture_day;plate_or_image_id;reader_or_imager_id;viability_fraction;ldh_fold_control;neurite_metric;morphology_score,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -nhi_forward,electrochemical_or_mea_export,data/limina_source_file_templates/nhi_forward/source_class_templates/electrochemical_or_mea_export.csv,96,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,"run_id, measurement date, instrument_id, channel/electrode mapping, and analysis method",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;mea_or_potentiostat_id;channel_or_electrode_id;analysis_method;raw_export_file_id;eis_1khz_ohm;charge_storage_capacity;baseline_noise_uv;electrode_yield_fraction;spike_rate_hz;burst_rate_hz;synchrony,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -nhi_forward,image_or_scoring_worksheet,data/limina_source_file_templates/nhi_forward/source_class_templates/image_or_scoring_worksheet.csv,24,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic;.tif;.tiff,"run_id, imaging/scoring method, operator or vendor",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;image_file_name;imaging_method;scoring_method;score_or_boolean;reviewer,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -nhi_forward,swelling_dimension_or_mass_worksheet,data/limina_source_file_templates/nhi_forward/source_class_templates/swelling_dimension_or_mass_worksheet.csv,12,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,"run_id, pre/post measurement basis, method, operator",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;pre_measurement;post_measurement;measurement_basis;calculation;swelling_fraction,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -nhi_forward,temperature_or_incubator_log,data/limina_source_file_templates/nhi_forward/source_class_templates/temperature_or_incubator_log.csv,28,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id or batch window, date/time, temperature source",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;temperature_c;temperature_source;covered_window_start;covered_window_end;probe_or_incubator_id,Template only; copy or export real instrument/report/worksheet data to the target source_file path. diff --git a/data/nhi_pedot_forward_source_file_template_pack.json b/data/nhi_pedot_forward_source_file_template_pack.json deleted file mode 100644 index 27fe08d..0000000 --- a/data/nhi_pedot_forward_source_file_template_pack.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "boundary": "Templates are outside allowed source-file roots and are never measured evidence. Only real files placed at target source_file paths can support measured rows.", - "generated_artifacts": { - "csv": "data/nhi_pedot_forward_source_file_template_manifest.csv", - "json": "data/nhi_pedot_forward_source_file_template_pack.json", - "report": "reports/nhi_pedot_forward_source_file_template_pack.md", - "template_dir": "data/limina_source_file_templates/nhi_forward" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/nhi_pedot_forward_source_values.csv" - }, - "label": "NHI-PEDOT H-B/H-C", - "profile": "nhi_forward", - "status": "nhi_pedot_forward_source_file_template_pack_ready", - "summary": { - "generated_template_files": 6, - "source_class_counts": { - "bench_or_chain_of_custody_record": 368, - "biological_assay_or_imaging_export": 64, - "electrochemical_or_mea_export": 96, - "image_or_scoring_worksheet": 24, - "swelling_dimension_or_mass_worksheet": 12, - "temperature_or_incubator_log": 28 - }, - "source_class_template_count": 6, - "source_value_rows": 592, - "target_extension_counts": { - ".csv": 504, - ".png": 88 - }, - "target_source_file_count": 592, - "template_manifest_rows": 6 - }, - "templates": [ - "data/limina_source_file_templates/nhi_forward/source_class_templates/bench_or_chain_of_custody_record.csv", - "data/limina_source_file_templates/nhi_forward/source_class_templates/biological_assay_or_imaging_export.csv", - "data/limina_source_file_templates/nhi_forward/source_class_templates/electrochemical_or_mea_export.csv", - "data/limina_source_file_templates/nhi_forward/source_class_templates/image_or_scoring_worksheet.csv", - "data/limina_source_file_templates/nhi_forward/source_class_templates/swelling_dimension_or_mass_worksheet.csv", - "data/limina_source_file_templates/nhi_forward/source_class_templates/temperature_or_incubator_log.csv" - ] -} \ No newline at end of file diff --git a/data/nhi_pedot_forward_source_values.csv b/data/nhi_pedot_forward_source_values.csv deleted file mode 100644 index 0513a91..0000000 --- a/data/nhi_pedot_forward_source_values.csv +++ /dev/null @@ -1,593 +0,0 @@ -profile,run_id,phase,timepoint,replicate,article_id,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes,planned_value,current_value,source_class,instrument_required,recommended_source_file,source_file_exists,review_status,missing_items,capture_instruction -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,H-B,pre-soak,1,hydrogel_laminin_control,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,H-B,24 h soak,1,hydrogel_laminin_control,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,H-B,72 h soak,1,hydrogel_laminin_control,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,H-B,post-cycling,1,hydrogel_laminin_control,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,H-B,pre-soak,1,lead_nhi_pedot_low_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,H-B,24 h soak,1,lead_nhi_pedot_low_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,H-B,72 h soak,1,lead_nhi_pedot_low_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,H-B,post-cycling,1,lead_nhi_pedot_low_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,charge_storage_capacity_final,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,eis_1khz_final_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-24h,H-C,24 h,1,laminin_only_control,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-7d,H-C,7 d,1,laminin_only_control,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-14d,H-C,14 d,1,laminin_only_control,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,laminin_only_control,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,H-C,24 h,1,hydrogel_laminin_control,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,H-C,7 d,1,hydrogel_laminin_control,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,H-C,14 d,1,hydrogel_laminin_control,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,H-C,28 d if early gates pass,1,hydrogel_laminin_control,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,H-C,24 h,1,lead_nhi_pedot_low_loading,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,H-C,7 d,1,lead_nhi_pedot_low_loading,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,H-C,14 d,1,lead_nhi_pedot_low_loading,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,H-C,24 h,1,challenge_nhi_pedot_high_loading,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,H-C,7 d,1,challenge_nhi_pedot_high_loading,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,H-C,14 d,1,challenge_nhi_pedot_high_loading,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,burst_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,crosslinking_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real crosslinking_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,electrode_material,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real electrode_material value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,electrode_yield_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,ldh_fold_control,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_fold_control value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,mean_neurite_length_um,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,medium_lot,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,medium_name,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,neurite_coverage_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,pedot_pss_pre_rinse_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,seeding_density,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real seeding_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,spike_rate_hz,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,sterilization_or_aseptic_protocol,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,temperature_c,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." -nhi_forward,NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,viability_fraction,,,,,,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer." diff --git a/data/nhi_pedot_forward_source_values_import.json b/data/nhi_pedot_forward_source_values_import.json deleted file mode 100644 index f31d109..0000000 --- a/data/nhi_pedot_forward_source_values_import.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "boundary": "This importer only moves source-file-backed values into evaluator CSVs; it does not create measured evidence.", - "imported_rows": [], - "inputs": { - "plan": "data/nhi_pedot_planned_runs.csv", - "source_manifest": "data/limina_source_file_manifest.json", - "target": "data/nhi_pedot_runs_template.csv" - }, - "issues": [], - "profile": "nhi_forward", - "status": "nhi_pedot_forward_source_value_import_no_importable_rows", - "summary": { - "blank_rows": 592, - "error_count": 0, - "imported_rows": 0, - "source_value_files": 2, - "source_value_rows": 592, - "unchanged_rows": 0, - "warning_count": 0 - }, - "value_files": [ - "data/nhi_pedot_forward_raw_csv_extracted_values.csv", - "data/nhi_pedot_forward_source_values.csv" - ] -} \ No newline at end of file diff --git a/data/nhi_pedot_forward_source_values_sheet.json b/data/nhi_pedot_forward_source_values_sheet.json deleted file mode 100644 index a39a7a5..0000000 --- a/data/nhi_pedot_forward_source_values_sheet.json +++ /dev/null @@ -1,14834 +0,0 @@ -{ - "boundary": "This source-values sheet is sidecar metadata only; it is not measured evidence.", - "generated_artifacts": { - "csv": "data/nhi_pedot_forward_source_values.csv", - "json": "data/nhi_pedot_forward_source_values_sheet.json", - "report": "reports/nhi_pedot_forward_source_values_sheet.md" - }, - "inputs": { - "plan": "data/nhi_pedot_planned_runs.csv", - "scope": "data/nhi_pedot_forward_gate_rows.csv", - "target": "data/nhi_pedot_runs_template.csv" - }, - "profile": "nhi_forward", - "rows": [ - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_final", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_final_ohm", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "0", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_final", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_final_ohm", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "0", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_final", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_final_ohm", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "0", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_final", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_final_ohm", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "0", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_final", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_final_ohm", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "low", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_final", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_final_ohm", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "low", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_final", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_final_ohm", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "low", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_final", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_final_ohm", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "low", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_final", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_final_ohm", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "high", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "pre-soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_final", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_final_ohm", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "high", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "24 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_final", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_final_ohm", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "high", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "72 h soak", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_final value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_final_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_final", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_final_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_final_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_final_ohm", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "high", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-B", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "post-cycling", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "none", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "0", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "none", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "0", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "none", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "0", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "none", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "0", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "laminin_only_control", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "0", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "0", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "0", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "0", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "low", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "low", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "low", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "low", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "high", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "high", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "high", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/burst_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_hz", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real crosslinking_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/crosslinking_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "crosslinking_protocol", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_material value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "electrode_material", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/electrode_yield_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "standard_laminin", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_fold_control value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/ldh_fold_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_fold_control", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mean_neurite_length_um value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/mean_neurite_length_um_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "mean_neurite_length_um", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_lot value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real medium_name value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/neurite_coverage_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "limina", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "high", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_pre_rinse_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/pedot_pss_pre_rinse_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_pre_rinse_protocol", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real seeding_density value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/seeding_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "seeding_density", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_hz value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/spike_rate_hz_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_hz", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real sterilization_or_aseptic_protocol value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/sterilization_or_aseptic_protocol_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "sterilization_or_aseptic_protocol", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real temperature_c value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_fraction value for NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "H-C", - "planned_value": "", - "profile": "nhi_forward", - "recommended_source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_forward/NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass/viability_fraction_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_fraction", - "timepoint": "28 d if early gates pass", - "unit": "", - "value": "" - } - ], - "status": "nhi_pedot_forward_source_values_sheet_ready", - "summary": { - "filled_value_rows": 0, - "import_ready_rows": 0, - "review_status_counts": { - "awaiting_value_entry": 592 - }, - "source_class_counts": { - "bench_or_chain_of_custody_record": 368, - "biological_assay_or_imaging_export": 64, - "electrochemical_or_mea_export": 96, - "image_or_scoring_worksheet": 24, - "swelling_dimension_or_mass_worksheet": 12, - "temperature_or_incubator_log": 28 - }, - "source_file_exists_rows": 0, - "source_value_rows": 592 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_bench_sheet.csv b/data/nhi_pedot_h_a_bench_sheet.csv deleted file mode 100644 index 7fcca5a..0000000 --- a/data/nhi_pedot_h_a_bench_sheet.csv +++ /dev/null @@ -1,13 +0,0 @@ -sequence,run_id,article_id,timepoint,replicate,article_role,pedot_pss_loading_fraction,hydrogel_matrix,raw_entries_to_fill,required_blank_fields,placeholder_fields,metadata_to_record,initial_measurements,final_measurements,physical_inspection,acceptance_focus,stop_if -1,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0 h,1,matched medium/device control,0,none,19,date;medium_name;medium_lot;temperature_c;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file,notes,date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol,pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm,pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm,visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,baseline pH/osmolality/conductivity drift and visual/physical inspection,"control is unstable or missing, because matched comparisons become invalid" -2,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24 h,1,matched medium/device control,0,none,19,date;medium_name;medium_lot;temperature_c;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file,notes,date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol,pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm,pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm,visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,baseline pH/osmolality/conductivity drift and visual/physical inspection,"control is unstable or missing, because matched comparisons become invalid" -3,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72 h,1,matched medium/device control,0,none,19,date;medium_name;medium_lot;temperature_c;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file,notes,date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol,pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm,pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm,visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,baseline pH/osmolality/conductivity drift and visual/physical inspection,"control is unstable or missing, because matched comparisons become invalid" -4,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0 h,1,soft matrix control,0,alginate_laminin_2pct_wv_caso4_dmem,19,date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file,laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes,date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol,pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm,pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm,visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"matrix-only medium drift, swelling, delamination, and transparency versus no-coating control","hydrogel-only matrix fails, because PEDOT interpretation becomes confounded" -5,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24 h,1,soft matrix control,0,alginate_laminin_2pct_wv_caso4_dmem,19,date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file,laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes,date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol,pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm,pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm,visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"matrix-only medium drift, swelling, delamination, and transparency versus no-coating control","hydrogel-only matrix fails, because PEDOT interpretation becomes confounded" -6,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72 h,1,soft matrix control,0,alginate_laminin_2pct_wv_caso4_dmem,19,date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file,laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes,date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol,pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm,pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm,visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"matrix-only medium drift, swelling, delamination, and transparency versus no-coating control","hydrogel-only matrix fails, because PEDOT interpretation becomes confounded" -7,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0 h,1,0.6 wt percent PEDOT:PSS lead,0.006,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,19,date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file,laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes,date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol,pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm,pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm,visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"lead medium drift <= controls plus no shedding, swelling <=0.20, delamination <=0.5, transparency >=0.80","lead shows pH drift >0.10 vs control, osmolality/conductivity drift >5%, shedding, swelling >0.20, delamination >0.5, or transparency <0.80" -8,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24 h,1,0.6 wt percent PEDOT:PSS lead,0.006,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,19,date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file,laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes,date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol,pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm,pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm,visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"lead medium drift <= controls plus no shedding, swelling <=0.20, delamination <=0.5, transparency >=0.80","lead shows pH drift >0.10 vs control, osmolality/conductivity drift >5%, shedding, swelling >0.20, delamination >0.5, or transparency <0.80" -9,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72 h,1,0.6 wt percent PEDOT:PSS lead,0.006,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,19,date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file,laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes,date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol,pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm,pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm,visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"lead medium drift <= controls plus no shedding, swelling <=0.20, delamination <=0.5, transparency >=0.80","lead shows pH drift >0.10 vs control, osmolality/conductivity drift >5%, shedding, swelling >0.20, delamination >0.5, or transparency <0.80" -10,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0 h,1,1.2 wt percent PEDOT:PSS boundary comparator,0.012,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,19,date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file,laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes,date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol,pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm,pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm,visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,upper-loading boundary; failures constrain dose-response but do not stop lead if lead passes,treat challenge as boundary only if it fails; do not promote to H-C -11,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24 h,1,1.2 wt percent PEDOT:PSS boundary comparator,0.012,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,19,date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file,laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes,date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol,pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm,pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm,visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,upper-loading boundary; failures constrain dose-response but do not stop lead if lead passes,treat challenge as boundary only if it fails; do not promote to H-C -12,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72 h,1,1.2 wt percent PEDOT:PSS boundary comparator,0.012,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,19,date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file,laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes,date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol,pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm,pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm,visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,upper-loading boundary; failures constrain dose-response but do not stop lead if lead passes,treat challenge as boundary only if it fails; do not promote to H-C diff --git a/data/nhi_pedot_h_a_bench_sheet.json b/data/nhi_pedot_h_a_bench_sheet.json deleted file mode 100644 index d8888cf..0000000 --- a/data/nhi_pedot_h_a_bench_sheet.json +++ /dev/null @@ -1,242 +0,0 @@ -{ - "blank_raw_entries_to_fill": 228, - "lead_run_ids": [ - "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - ], - "raw_path": "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_raw_measurements_template.csv", - "runs_path": "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_runs_active.csv", - "status": "rendered", - "task_count": 12, - "tasks": [ - { - "acceptance_focus": "baseline pH/osmolality/conductivity drift and visual/physical inspection", - "article_id": "no_coating_mea_control", - "article_role": "matched medium/device control", - "final_measurements": "pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm", - "hydrogel_matrix": "none", - "initial_measurements": "pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm", - "metadata_to_record": "date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol", - "pedot_pss_loading_fraction": "0", - "physical_inspection": "visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "placeholder_fields": "notes", - "raw_entries_to_fill": "19", - "replicate": "1", - "required_blank_fields": "date;medium_name;medium_lot;temperature_c;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "sequence": "1", - "stop_if": "control is unstable or missing, because matched comparisons become invalid", - "timepoint": "0 h" - }, - { - "acceptance_focus": "baseline pH/osmolality/conductivity drift and visual/physical inspection", - "article_id": "no_coating_mea_control", - "article_role": "matched medium/device control", - "final_measurements": "pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm", - "hydrogel_matrix": "none", - "initial_measurements": "pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm", - "metadata_to_record": "date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol", - "pedot_pss_loading_fraction": "0", - "physical_inspection": "visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "placeholder_fields": "notes", - "raw_entries_to_fill": "19", - "replicate": "1", - "required_blank_fields": "date;medium_name;medium_lot;temperature_c;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "sequence": "2", - "stop_if": "control is unstable or missing, because matched comparisons become invalid", - "timepoint": "24 h" - }, - { - "acceptance_focus": "baseline pH/osmolality/conductivity drift and visual/physical inspection", - "article_id": "no_coating_mea_control", - "article_role": "matched medium/device control", - "final_measurements": "pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm", - "hydrogel_matrix": "none", - "initial_measurements": "pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm", - "metadata_to_record": "date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol", - "pedot_pss_loading_fraction": "0", - "physical_inspection": "visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "placeholder_fields": "notes", - "raw_entries_to_fill": "19", - "replicate": "1", - "required_blank_fields": "date;medium_name;medium_lot;temperature_c;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "sequence": "3", - "stop_if": "control is unstable or missing, because matched comparisons become invalid", - "timepoint": "72 h" - }, - { - "acceptance_focus": "matrix-only medium drift, swelling, delamination, and transparency versus no-coating control", - "article_id": "hydrogel_laminin_control", - "article_role": "soft matrix control", - "final_measurements": "pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem", - "initial_measurements": "pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm", - "metadata_to_record": "date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol", - "pedot_pss_loading_fraction": "0", - "physical_inspection": "visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "placeholder_fields": "laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes", - "raw_entries_to_fill": "19", - "replicate": "1", - "required_blank_fields": "date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "sequence": "4", - "stop_if": "hydrogel-only matrix fails, because PEDOT interpretation becomes confounded", - "timepoint": "0 h" - }, - { - "acceptance_focus": "matrix-only medium drift, swelling, delamination, and transparency versus no-coating control", - "article_id": "hydrogel_laminin_control", - "article_role": "soft matrix control", - "final_measurements": "pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem", - "initial_measurements": "pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm", - "metadata_to_record": "date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol", - "pedot_pss_loading_fraction": "0", - "physical_inspection": "visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "placeholder_fields": "laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes", - "raw_entries_to_fill": "19", - "replicate": "1", - "required_blank_fields": "date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "sequence": "5", - "stop_if": "hydrogel-only matrix fails, because PEDOT interpretation becomes confounded", - "timepoint": "24 h" - }, - { - "acceptance_focus": "matrix-only medium drift, swelling, delamination, and transparency versus no-coating control", - "article_id": "hydrogel_laminin_control", - "article_role": "soft matrix control", - "final_measurements": "pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem", - "initial_measurements": "pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm", - "metadata_to_record": "date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol", - "pedot_pss_loading_fraction": "0", - "physical_inspection": "visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "placeholder_fields": "laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes", - "raw_entries_to_fill": "19", - "replicate": "1", - "required_blank_fields": "date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "sequence": "6", - "stop_if": "hydrogel-only matrix fails, because PEDOT interpretation becomes confounded", - "timepoint": "72 h" - }, - { - "acceptance_focus": "lead medium drift <= controls plus no shedding, swelling <=0.20, delamination <=0.5, transparency >=0.80", - "article_id": "lead_nhi_pedot_low_loading", - "article_role": "0.6 wt percent PEDOT:PSS lead", - "final_measurements": "pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "initial_measurements": "pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm", - "metadata_to_record": "date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol", - "pedot_pss_loading_fraction": "0.006", - "physical_inspection": "visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "placeholder_fields": "laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes", - "raw_entries_to_fill": "19", - "replicate": "1", - "required_blank_fields": "date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "sequence": "7", - "stop_if": "lead shows pH drift >0.10 vs control, osmolality/conductivity drift >5%, shedding, swelling >0.20, delamination >0.5, or transparency <0.80", - "timepoint": "0 h" - }, - { - "acceptance_focus": "lead medium drift <= controls plus no shedding, swelling <=0.20, delamination <=0.5, transparency >=0.80", - "article_id": "lead_nhi_pedot_low_loading", - "article_role": "0.6 wt percent PEDOT:PSS lead", - "final_measurements": "pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "initial_measurements": "pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm", - "metadata_to_record": "date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol", - "pedot_pss_loading_fraction": "0.006", - "physical_inspection": "visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "placeholder_fields": "laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes", - "raw_entries_to_fill": "19", - "replicate": "1", - "required_blank_fields": "date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "sequence": "8", - "stop_if": "lead shows pH drift >0.10 vs control, osmolality/conductivity drift >5%, shedding, swelling >0.20, delamination >0.5, or transparency <0.80", - "timepoint": "24 h" - }, - { - "acceptance_focus": "lead medium drift <= controls plus no shedding, swelling <=0.20, delamination <=0.5, transparency >=0.80", - "article_id": "lead_nhi_pedot_low_loading", - "article_role": "0.6 wt percent PEDOT:PSS lead", - "final_measurements": "pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "initial_measurements": "pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm", - "metadata_to_record": "date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol", - "pedot_pss_loading_fraction": "0.006", - "physical_inspection": "visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "placeholder_fields": "laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes", - "raw_entries_to_fill": "19", - "replicate": "1", - "required_blank_fields": "date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "sequence": "9", - "stop_if": "lead shows pH drift >0.10 vs control, osmolality/conductivity drift >5%, shedding, swelling >0.20, delamination >0.5, or transparency <0.80", - "timepoint": "72 h" - }, - { - "acceptance_focus": "upper-loading boundary; failures constrain dose-response but do not stop lead if lead passes", - "article_id": "challenge_nhi_pedot_high_loading", - "article_role": "1.2 wt percent PEDOT:PSS boundary comparator", - "final_measurements": "pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "initial_measurements": "pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm", - "metadata_to_record": "date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol", - "pedot_pss_loading_fraction": "0.012", - "physical_inspection": "visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "placeholder_fields": "laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes", - "raw_entries_to_fill": "19", - "replicate": "1", - "required_blank_fields": "date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "sequence": "10", - "stop_if": "treat challenge as boundary only if it fails; do not promote to H-C", - "timepoint": "0 h" - }, - { - "acceptance_focus": "upper-loading boundary; failures constrain dose-response but do not stop lead if lead passes", - "article_id": "challenge_nhi_pedot_high_loading", - "article_role": "1.2 wt percent PEDOT:PSS boundary comparator", - "final_measurements": "pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "initial_measurements": "pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm", - "metadata_to_record": "date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol", - "pedot_pss_loading_fraction": "0.012", - "physical_inspection": "visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "placeholder_fields": "laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes", - "raw_entries_to_fill": "19", - "replicate": "1", - "required_blank_fields": "date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "sequence": "11", - "stop_if": "treat challenge as boundary only if it fails; do not promote to H-C", - "timepoint": "24 h" - }, - { - "acceptance_focus": "upper-loading boundary; failures constrain dose-response but do not stop lead if lead passes", - "article_id": "challenge_nhi_pedot_high_loading", - "article_role": "1.2 wt percent PEDOT:PSS boundary comparator", - "final_measurements": "pH_final;osmolality_final_mOsm_kg;conductivity_final_mS_cm", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "initial_measurements": "pH_initial;osmolality_initial_mOsm_kg;conductivity_initial_mS_cm", - "metadata_to_record": "date;operator_or_agent;mea_coupon_id;electrode_material;medium_name;medium_lot;temperature_c;laminin_or_peptide_density;sterilization_or_aseptic_protocol", - "pedot_pss_loading_fraction": "0.012", - "physical_inspection": "visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "placeholder_fields": "laminin_or_peptide_density;sterilization_or_aseptic_protocol;medium_name;notes", - "raw_entries_to_fill": "19", - "replicate": "1", - "required_blank_fields": "date;medium_lot;pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction;source_file", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "sequence": "12", - "stop_if": "treat challenge as boundary only if it fails; do not promote to H-C", - "timepoint": "72 h" - } - ] -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_bundle_entry_apply.json b/data/nhi_pedot_h_a_bundle_entry_apply.json deleted file mode 100644 index 6be356a..0000000 --- a/data/nhi_pedot_h_a_bundle_entry_apply.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "applied_bundles": [], - "boundary": "This apply step only copies user-entered, source-file-backed bundle values into the H-A source-values sheet. The importer, merge, QC, gates, and claim audit still decide whether anything is real evidence.", - "inputs": { - "bundle_manifest": "data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv", - "sheet": "data/nhi_pedot_h_a_bundle_entry_sheet.csv", - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/nhi_pedot_h_a_source_values.csv" - }, - "issues": [], - "status": "h_a_bundle_entry_apply_no_apply_rows", - "summary": { - "applied_bundles": 0, - "applied_source_value_rows": 0, - "duplicate_apply_rows": 0, - "error_count": 0, - "sheet_rows": 96, - "skipped_apply_no_rows": 96, - "warning_count": 0 - }, - "updated_source_values": "" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_bundle_entry_regression.json b/data/nhi_pedot_h_a_bundle_entry_regression.json deleted file mode 100644 index 4006f7a..0000000 --- a/data/nhi_pedot_h_a_bundle_entry_regression.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "applied_status": "h_a_bundle_entry_apply_applied", - "checks": { - "no_apply_does_not_mutate_source_values": true, - "rendered_initial_and_final_value_columns": true, - "rendered_one_bundle_row": true, - "valid_bundle_updates_two_source_rows": true - }, - "no_apply_status": "h_a_bundle_entry_apply_no_apply_rows", - "status": "pass" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_bundle_entry_sheet.csv b/data/nhi_pedot_h_a_bundle_entry_sheet.csv deleted file mode 100644 index 3ed1b13..0000000 --- a/data/nhi_pedot_h_a_bundle_entry_sheet.csv +++ /dev/null @@ -1,97 +0,0 @@ -bundle_id,apply,source_file,measured_at,operator_or_agent,instrument_id,notes,value_date,value_medium_lot,value_medium_name,value_temperature_c,value_mea_coupon_id,value_electrode_material,value_laminin_or_peptide_density,value_sterilization_or_aseptic_protocol,value_pH_initial,value_pH_final,value_osmolality_initial_mOsm_kg,value_osmolality_final_mOsm_kg,value_conductivity_initial_mS_cm,value_conductivity_final_mS_cm,value_visible_precipitate,value_visible_shedding,value_swelling_fraction,value_delamination_score,value_optical_transparency_fraction,priority,run_id,article_id,timepoint,source_class,target_fields,target_value_columns,source_value_rows,instrument_required,source_file_requirement,source_file_exists,allowed_source_file,entry_status,missing_items,operator_action -H-A-BUNDLE-001,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-002,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-003,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-004,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-005,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-006,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-007,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-008,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-009,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-010,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-011,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-012,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-013,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-014,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-015,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-016,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-017,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-018,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-019,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-020,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-021,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-022,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-023,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-024,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-025,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-026,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-027,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-028,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-029,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-030,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-031,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-032,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-033,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-034,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-035,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-036,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-037,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-038,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-039,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-040,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-041,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-042,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-043,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-044,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-045,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-046,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-047,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-048,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-049,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-050,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-051,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-052,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-053,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-054,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-055,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-056,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-057,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-058,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-059,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-060,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-061,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-062,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-063,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-064,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-065,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-066,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-067,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-068,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-069,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-070,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-071,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-072,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-073,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-074,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-075,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-076,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-077,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-078,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-079,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-080,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-081,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-082,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-083,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-084,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-085,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-086,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-087,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-088,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-089,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-090,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-091,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-092,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-093,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-094,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-095,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." -H-A-BUNDLE-096,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Fill only real measured/reviewed values, put the raw source file at source_file, then set apply=yes and run scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py." diff --git a/data/nhi_pedot_h_a_bundle_entry_sheet.json b/data/nhi_pedot_h_a_bundle_entry_sheet.json deleted file mode 100644 index 2fbc679..0000000 --- a/data/nhi_pedot_h_a_bundle_entry_sheet.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "boundary": "This sheet only consolidates source-value entry across H-A bundles. It is not measured evidence; the apply step, source-value importer, merge, QC, gates, and claim audit still control evidence status.", - "generated_artifacts": { - "json": "data/nhi_pedot_h_a_bundle_entry_sheet.json", - "report": "reports/nhi_pedot_h_a_bundle_entry_sheet.md", - "sheet": "data/nhi_pedot_h_a_bundle_entry_sheet.csv" - }, - "inputs": { - "bundle_manifest": "data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv", - "source_values": "data/nhi_pedot_h_a_source_values.csv" - }, - "post_fill_command": "python3 scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py", - "status": "h_a_bundle_entry_sheet_ready", - "summary": { - "blocked_rows": 0, - "bundle_rows": 96, - "entry_status_counts": { - "awaiting_bundle_entry": 96 - }, - "filled_bundle_rows": 0, - "missing_required_columns": [], - "ready_to_apply_rows": 0, - "source_class_counts": { - "bench_or_chain_of_custody_record": 12, - "conductivity_meter_export_or_photo": 12, - "image_or_scoring_worksheet": 12, - "osmometer_report_or_export": 12, - "pH_meter_export_or_photo": 12, - "supplier_or_build_record": 12, - "swelling_dimension_or_mass_worksheet": 12, - "temperature_or_incubator_log": 12 - }, - "source_file_exists_rows": 0 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_chain_of_custody.csv b/data/nhi_pedot_h_a_chain_of_custody.csv deleted file mode 100644 index 01b798e..0000000 --- a/data/nhi_pedot_h_a_chain_of_custody.csv +++ /dev/null @@ -1,37 +0,0 @@ -chain_id,sample_id,run_id,article_id,timepoint,sample_event,replicate,planned_container_id,prepared_by,prepared_at,preparation_batch_id,medium_name,medium_lot,coupon_or_well_id,released_by,released_at,carrier_or_transfer_method,received_by,received_at,condition_on_receipt,storage_location,source_file_returned,deviation_notes,transfer_status -NHI-PEDOT-H-A-COC-001,NHIPEDOT-H-A-no_coating_mea_control-R1-0h-initial,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0 h,initial,1,H-A-01-NO-COATING-MEA-CON-0-H-INITIAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-002,NHIPEDOT-H-A-no_coating_mea_control-R1-0h-final,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0 h,final,1,H-A-02-NO-COATING-MEA-CON-0-H-FINAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-003,NHIPEDOT-H-A-no_coating_mea_control-R1-0h-physical_inspection,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0 h,physical_inspection,1,H-A-03-NO-COATING-MEA-CON-0-H-PHYSICAL-INS,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-004,NHIPEDOT-H-A-no_coating_mea_control-R1-24h-initial,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24 h,initial,1,H-A-04-NO-COATING-MEA-CON-24-H-INITIAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-005,NHIPEDOT-H-A-no_coating_mea_control-R1-24h-final,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24 h,final,1,H-A-05-NO-COATING-MEA-CON-24-H-FINAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-006,NHIPEDOT-H-A-no_coating_mea_control-R1-24h-physical_inspection,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24 h,physical_inspection,1,H-A-06-NO-COATING-MEA-CON-24-H-PHYSICAL-INS,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-007,NHIPEDOT-H-A-no_coating_mea_control-R1-72h-initial,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72 h,initial,1,H-A-07-NO-COATING-MEA-CON-72-H-INITIAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-008,NHIPEDOT-H-A-no_coating_mea_control-R1-72h-final,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72 h,final,1,H-A-08-NO-COATING-MEA-CON-72-H-FINAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-009,NHIPEDOT-H-A-no_coating_mea_control-R1-72h-physical_inspection,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72 h,physical_inspection,1,H-A-09-NO-COATING-MEA-CON-72-H-PHYSICAL-INS,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-010,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h-initial,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0 h,initial,1,H-A-10-HYDROGEL-LAMININ-C-0-H-INITIAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-011,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h-final,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0 h,final,1,H-A-11-HYDROGEL-LAMININ-C-0-H-FINAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-012,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h-physical_inspection,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0 h,physical_inspection,1,H-A-12-HYDROGEL-LAMININ-C-0-H-PHYSICAL-INS,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-013,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h-initial,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24 h,initial,1,H-A-13-HYDROGEL-LAMININ-C-24-H-INITIAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-014,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h-final,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24 h,final,1,H-A-14-HYDROGEL-LAMININ-C-24-H-FINAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-015,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h-physical_inspection,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24 h,physical_inspection,1,H-A-15-HYDROGEL-LAMININ-C-24-H-PHYSICAL-INS,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-016,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h-initial,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72 h,initial,1,H-A-16-HYDROGEL-LAMININ-C-72-H-INITIAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-017,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h-final,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72 h,final,1,H-A-17-HYDROGEL-LAMININ-C-72-H-FINAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-018,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h-physical_inspection,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72 h,physical_inspection,1,H-A-18-HYDROGEL-LAMININ-C-72-H-PHYSICAL-INS,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-019,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h-initial,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0 h,initial,1,H-A-19-LEAD-NHI-PEDOT-LOW-0-H-INITIAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-020,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h-final,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0 h,final,1,H-A-20-LEAD-NHI-PEDOT-LOW-0-H-FINAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-021,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h-physical_inspection,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0 h,physical_inspection,1,H-A-21-LEAD-NHI-PEDOT-LOW-0-H-PHYSICAL-INS,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-022,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h-initial,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24 h,initial,1,H-A-22-LEAD-NHI-PEDOT-LOW-24-H-INITIAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-023,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h-final,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24 h,final,1,H-A-23-LEAD-NHI-PEDOT-LOW-24-H-FINAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-024,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h-physical_inspection,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24 h,physical_inspection,1,H-A-24-LEAD-NHI-PEDOT-LOW-24-H-PHYSICAL-INS,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-025,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h-initial,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72 h,initial,1,H-A-25-LEAD-NHI-PEDOT-LOW-72-H-INITIAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-026,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h-final,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72 h,final,1,H-A-26-LEAD-NHI-PEDOT-LOW-72-H-FINAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-027,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h-physical_inspection,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72 h,physical_inspection,1,H-A-27-LEAD-NHI-PEDOT-LOW-72-H-PHYSICAL-INS,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-028,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h-initial,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0 h,initial,1,H-A-28-CHALLENGE-NHI-PEDO-0-H-INITIAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-029,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h-final,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0 h,final,1,H-A-29-CHALLENGE-NHI-PEDO-0-H-FINAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-030,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h-physical_inspection,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0 h,physical_inspection,1,H-A-30-CHALLENGE-NHI-PEDO-0-H-PHYSICAL-INS,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-031,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h-initial,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24 h,initial,1,H-A-31-CHALLENGE-NHI-PEDO-24-H-INITIAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-032,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h-final,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24 h,final,1,H-A-32-CHALLENGE-NHI-PEDO-24-H-FINAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-033,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h-physical_inspection,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24 h,physical_inspection,1,H-A-33-CHALLENGE-NHI-PEDO-24-H-PHYSICAL-INS,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-034,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h-initial,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72 h,initial,1,H-A-34-CHALLENGE-NHI-PEDO-72-H-INITIAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-035,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h-final,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72 h,final,1,H-A-35-CHALLENGE-NHI-PEDO-72-H-FINAL,,,,,,,,,,,,,,,,pending_real_transfer -NHI-PEDOT-H-A-COC-036,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h-physical_inspection,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72 h,physical_inspection,1,H-A-36-CHALLENGE-NHI-PEDO-72-H-PHYSICAL-INS,,,,,,,,,,,,,,,,pending_real_transfer diff --git a/data/nhi_pedot_h_a_chain_of_custody.json b/data/nhi_pedot_h_a_chain_of_custody.json deleted file mode 100644 index 2ea79e7..0000000 --- a/data/nhi_pedot_h_a_chain_of_custody.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "article_ids": [ - "challenge_nhi_pedot_high_loading", - "hydrogel_laminin_control", - "lead_nhi_pedot_low_loading", - "no_coating_mea_control" - ], - "blank_fields_to_complete": [ - "prepared_by", - "prepared_at", - "preparation_batch_id", - "medium_name", - "medium_lot", - "coupon_or_well_id", - "released_by", - "released_at", - "carrier_or_transfer_method", - "received_by", - "received_at", - "condition_on_receipt", - "storage_location", - "source_file_returned", - "deviation_notes" - ], - "chain_of_custody_row_count": 36, - "non_evidence_boundary": "Pending or blank transfer logs are not evidence. Only returned raw measurement rows with real values, provenance, and source files can count toward H-A.", - "outputs": { - "chain_of_custody_csv": "data/nhi_pedot_h_a_chain_of_custody.csv", - "json": "data/nhi_pedot_h_a_chain_of_custody.json", - "report": "reports/nhi_pedot_h_a_chain_of_custody.md", - "sample_labels_csv": "data/nhi_pedot_h_a_sample_labels.csv" - }, - "pending_transfer_rows": 36, - "purpose": "Sample labels and blank chain-of-custody rows for the real NHI-PEDOT H-A measurement handoff.", - "rejection_rules": [ - "Do not treat a label row, planned container ID, or blank custody row as measured evidence.", - "Do not pool samples or collapse initial/final/physical-inspection events before raw data entry.", - "Do not replace missing transfer fields with pending, TBD, unknown, synthetic, or fixture markers.", - "Do not accept returned measurement rows unless source_file links back to instrument export or image files." - ], - "sample_label_count": 36, - "sample_manifest_rows": 36, - "service_request_status": "ready_to_request_real_measurements", - "status": "ready_for_sample_handoff", - "unique_run_count": 12 -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_delivery_package_manifest.json b/data/nhi_pedot_h_a_delivery_package_manifest.json deleted file mode 100644 index af877aa..0000000 --- a/data/nhi_pedot_h_a_delivery_package_manifest.json +++ /dev/null @@ -1,225 +0,0 @@ -{ - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "expected_return_files": [ - { - "acceptance": "Same schema as the package template, with all requested real values and provenance fields filled.", - "id": "completed_raw_measurement_csv", - "path": "data/nhi_pedot_h_a_raw_measurements_template.csv" - }, - { - "acceptance": "Preferred compact return option: filled value_* columns, measured_at, operator_or_agent, instrument_id where required, source_file, and apply=yes for each completed raw-file bundle.", - "id": "completed_bundle_entry_sheet", - "path": "data/nhi_pedot_h_a_bundle_entry_sheet.csv" - }, - { - "acceptance": "Original pH, osmolality, conductivity, chain-of-custody, build, and image/inspection files referenced by source_file.", - "id": "instrument_exports", - "path": "external_lab_exports/" - }, - { - "acceptance": "Prepared/released/received fields, actual medium lot, coupon or well ID, condition on receipt, and transfer deviations filled for every returned sample row.", - "id": "completed_chain_of_custody", - "path": "data/nhi_pedot_h_a_chain_of_custody.csv" - }, - { - "acceptance": "Lists every deviation from recipe, timing, instrument, sample, medium, or storage assumptions.", - "id": "deviation_log", - "path": "reports/nhi_pedot_h_a_deviation_log.md" - } - ], - "missing_required_file_ids": [], - "non_claim_boundary": "This manifest only packages the measurement request. Suitability still requires real rows to pass H-A, H-B, H-C, long follow-up, and the final claim audit.", - "package_files": [ - { - "bytes": 6071, - "exists": true, - "id": "service_request", - "path": "reports/nhi_pedot_h_a_service_request.md", - "required": true, - "role": "Primary lab/cooperator request: matrix, deliverables, capabilities, stop rules, and rejection rules.", - "sha256": "14d7277ad1e8dd613c02fbfaad69e6f26722c482d4af1be9b562c498db79b539" - }, - { - "bytes": 19363, - "exists": true, - "id": "raw_measurement_template", - "path": "data/nhi_pedot_h_a_raw_measurements_template.csv", - "required": true, - "role": "The long-form CSV to fill with real instrument and inspection values.", - "sha256": "461bc7c75b03a261844d06078bf3cbd867ad58cead4c1145f9beb244a8c7eb3c" - }, - { - "bytes": 78006, - "exists": true, - "id": "bundle_entry_sheet", - "path": "data/nhi_pedot_h_a_bundle_entry_sheet.csv", - "required": true, - "role": "Preferred compact CSV for returning one row per raw-file bundle; it expands into the source-values sheet after validation.", - "sha256": "900bf5c472a6ae2abb0b4fd5a3e9a4ed950a78b05aaf0bd42dadc853d8b0b328" - }, - { - "bytes": 14450, - "exists": true, - "id": "bundle_entry_report", - "path": "reports/nhi_pedot_h_a_bundle_entry_sheet.md", - "required": true, - "role": "Human-readable instructions for filling the compact H-A bundle entry sheet.", - "sha256": "9461cd24b403ac176a3893d03257bee0daa9520dcbbbf6f788c4300bd863c0b4" - }, - { - "bytes": 55071, - "exists": true, - "id": "source_unlock_bundle_manifest", - "path": "data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv", - "required": true, - "role": "Machine-readable manifest mapping run_id/source_class bundles to consolidated source-file paths and target fields.", - "sha256": "afbe99df61e730fdc27cd0a66bd0c9da352002227ec0a02265097f87e2c2361c" - }, - { - "bytes": 12281, - "exists": true, - "id": "source_unlock_pack", - "path": "reports/nhi_pedot_h_a_source_unlock_pack.md", - "required": true, - "role": "Human-readable overview of required H-A raw-file bundles and source classes.", - "sha256": "0ee3c70dbfc6b2216ef2007a8454685bc648931d7dea83bdb98ac9b92ebc278f" - }, - { - "bytes": 3391, - "exists": true, - "id": "sentinel_packet", - "path": "reports/nhi_pedot_h_a_sentinel_packet.md", - "required": true, - "role": "Recipe-locked H-A sentinel packet and sample handling context.", - "sha256": "614e63ace4f0c46031ee8a257b76a6986afd4a29fd6b5f56e35d80058626155a" - }, - { - "bytes": 13687, - "exists": true, - "id": "sample_manifest", - "path": "data/nhi_pedot_h_a_sentinel_sample_manifest.csv", - "required": true, - "role": "Sample-level manifest tying run_id to sample_event, article, timepoint, and readouts.", - "sha256": "f9ef2f6783f34bfb840da22b79586890a7ff93b02c3ccd89f23a731c310dd6cb" - }, - { - "bytes": 19897, - "exists": true, - "id": "sample_labels", - "path": "data/nhi_pedot_h_a_sample_labels.csv", - "required": true, - "role": "Printable/transferable label rows with sample IDs, planned container IDs, article IDs, and handling notes.", - "sha256": "06fafd2460820f073e9947506e9981295b7f168145633857f23ee302be84a69e" - }, - { - "bytes": 9320, - "exists": true, - "id": "chain_of_custody_csv", - "path": "data/nhi_pedot_h_a_chain_of_custody.csv", - "required": true, - "role": "Blank chain-of-custody transfer rows to complete during preparation, release, receipt, and return.", - "sha256": "250f8486ecca4206273ba608706f7820cffb2b482537e4b722006dd5456fca5c" - }, - { - "bytes": 3959, - "exists": true, - "id": "chain_of_custody_report", - "path": "reports/nhi_pedot_h_a_chain_of_custody.md", - "required": true, - "role": "Human-readable sample handoff instructions, blank fields, and rejection rules.", - "sha256": "caae2d348bdcf5036bfff16762d7334ddc11f2d791e41f00388a0c5532901535" - }, - { - "bytes": 5872, - "exists": true, - "id": "sample_submission_pack", - "path": "reports/nhi_pedot_h_a_sample_submission_pack.md", - "required": true, - "role": "Vendor-facing nonclinical sample-submission precheck, material disclosure, pre-ship questions, and shipping boundary.", - "sha256": "c5d6ce3d89cfa7e1c338aa6864440396ab546340570e157a37553670384fc255" - }, - { - "bytes": 3145, - "exists": true, - "id": "split_scope_plan", - "path": "reports/nhi_pedot_h_a_split_scope_plan.md", - "required": true, - "role": "Fallback execution plan for splitting media chemistry and coupon physical/imaging readouts across vendors.", - "sha256": "5ab79c352248c1dc8b11903a7b6dc72c813523a11d244a15e3fcd49d78282db9" - }, - { - "bytes": 6892, - "exists": true, - "id": "split_scope_plan_csv", - "path": "data/nhi_pedot_h_a_split_scope_plan.csv", - "required": true, - "role": "Machine-readable split-scope vendor pairings, field assignments, shared requirements, and decisions.", - "sha256": "1d0bd6ca8844067b28bf769afb268bc0acc437616bdd76e125fbea26529b613b" - }, - { - "bytes": 1858, - "exists": true, - "id": "material_disclosure_csv", - "path": "data/nhi_pedot_h_a_material_disclosure.csv", - "required": true, - "role": "Machine-readable component disclosure checklist for sample submission and SDS readiness.", - "sha256": "9d2be57f0822e11693a02ab6a4c240c56fad5ac9379494fde7728e4f70bacb46" - }, - { - "bytes": 7103, - "exists": true, - "id": "bench_sheet", - "path": "reports/nhi_pedot_h_a_bench_sheet.md", - "required": true, - "role": "Operator-facing bench sheet with task order and stop criteria.", - "sha256": "4273e8690d386bbd23f800da3fe53e93b3d9bdd947a2da7b8699b9d5ac219a16" - }, - { - "bytes": 3105, - "exists": true, - "id": "minimum_checklist", - "path": "reports/nhi_pedot_h_a_minimum_measurement_checklist.md", - "required": true, - "role": "Compact checklist of claim-critical fields and current QC hotspots.", - "sha256": "c2868593b7cea471469f85eb1d46970c6da75085177d16d8b21eb05d1f34efdf" - }, - { - "bytes": 4980, - "exists": true, - "id": "recipe_protocol", - "path": "reports/nhi_pedot_alg_lam_protocol.md", - "required": true, - "role": "Recipe-specific ALG-LAM-PEDOT protocol handoff.", - "sha256": "c3b05c0991bbfe1076112c89181d32111d1564687aafa0547a39d66aa12db54f" - }, - { - "bytes": 3671, - "exists": true, - "id": "recipe_lock", - "path": "data/nhi_pedot_recipe_lock_v0_2.json", - "required": true, - "role": "Machine-readable recipe lock that defines the active lead and controls.", - "sha256": "2cba9abebc5126ba262497584cffa8111ae72c210d509c01699bd7170f5b49bc" - }, - { - "bytes": 2586, - "exists": true, - "id": "next_measurements", - "path": "reports/nhi_pedot_next_measurements.md", - "required": true, - "role": "Current recommended H-A measurement rows.", - "sha256": "3cb57c4162cabf07db76163ae30f0b55093d5f7fa442811ccd896c863f3b5214" - } - ], - "post_return_verification": [ - "python3 scripts/render_nhi_pedot_h_a_vendor_return_intake.py", - "python3 scripts/apply_nhi_pedot_h_a_bundle_entry_sheet.py", - "python3 scripts/import_nhi_pedot_h_a_source_values.py", - "python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py", - "python3 scripts/qc_nhi_pedot_h_a_intake.py --strict-exit", - "python3 scripts/interpret_nhi_pedot_h_a_sentinel.py", - "python3 scripts/run_limina_iteration.py" - ], - "purpose": "Manifest for the current real-measurement package needed to unblock the ALG-LAM-PEDOT H-A gate.", - "status": "ready_to_send" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_execution_authorization_log.csv b/data/nhi_pedot_h_a_execution_authorization_log.csv deleted file mode 100644 index 9bd69ce..0000000 --- a/data/nhi_pedot_h_a_execution_authorization_log.csv +++ /dev/null @@ -1 +0,0 @@ -candidate_id,vendor_name,authorization_status,authorized_at,authorized_by,authorization_basis,provider_acceptance_reference,sds_review_reference,custody_release_reference,scope_review_reference,sample_count_authorized,shipment_or_execution_window,authorization_source_file,authorization_source_sha256,computed_authorization_source_sha256,notes diff --git a/data/nhi_pedot_h_a_execution_authorization_log.json b/data/nhi_pedot_h_a_execution_authorization_log.json deleted file mode 100644 index 00d129b..0000000 --- a/data/nhi_pedot_h_a_execution_authorization_log.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "authorization_log_csv": "data/nhi_pedot_h_a_execution_authorization_log.csv", - "authorized_rows": 0, - "error_count": 0, - "errors": [], - "field_contract": { - "authorization_status_values": [ - "approved", - "authorized", - "hold", - "not_authorized", - "pending_authorization", - "release_authorized", - "revoked" - ], - "hash_rule": "If authorization_source_sha256 is supplied, it must match the current SHA-256 of authorization_source_file.", - "required_when_authorized": [ - "authorized_at", - "authorized_by", - "authorization_basis", - "provider_acceptance_reference", - "custody_release_reference", - "scope_review_reference", - "sample_count_authorized", - "shipment_or_execution_window", - "authorization_source_file" - ] - }, - "label": "NHI-PEDOT H-A", - "non_evidence_boundary": "Execution authorization is a logistics control. It does not count as material evidence and cannot advance suitability gates without returned real measurements and source files.", - "pending_rows": 0, - "profile": "h_a", - "purpose": "Validate human execution authorization without treating authorization as measured material evidence.", - "quote_selection": "data/nhi_pedot_h_a_quote_selection.json", - "row_count": 0, - "selected_provider_count": 0, - "source_backed_selected_provider_count": 0, - "status": "nhi_pedot_h_a_execution_authorization_waiting_for_selected_provider", - "unknown_prior_candidate_ids": [], - "valid_authorization_rows": 0, - "valid_authorization_summaries": [], - "valid_authorized_candidate_ids": [] -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_execution_release_audit.json b/data/nhi_pedot_h_a_execution_release_audit.json deleted file mode 100644 index 698175c..0000000 --- a/data/nhi_pedot_h_a_execution_release_audit.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "authorization_blocker_count": 0, - "authorization_blockers": [], - "authorization_checks": [ - { - "blocking": true, - "code": "execution_authorization_log_has_no_errors", - "detail": "errors=0; status=nhi_pedot_h_a_execution_authorization_waiting_for_selected_provider", - "passed": true - }, - { - "blocking": false, - "code": "selected_provider_has_valid_execution_authorization", - "detail": "waiting for a source-backed selected provider before authorization matching is meaningful", - "passed": false - } - ], - "blocker_count": 1, - "blockers": [ - { - "blocking": true, - "code": "source_backed_provider_selected", - "detail": "selected=0; source_backed_selected=0; selected_ids=-", - "passed": false - } - ], - "checklist": [ - { - "blocking": true, - "code": "delivery_package_ready", - "detail": "status=ready_to_send; missing_required_files=0", - "passed": true - }, - { - "blocking": true, - "code": "quote_selection_has_no_reply_log_errors", - "detail": "reply_log_errors=0; status=pending_outreach", - "passed": true - }, - { - "blocking": true, - "code": "rfq_send_log_has_no_errors", - "detail": "errors=0; status=nhi_pedot_h_a_rfq_send_log_waiting_for_sent_entries", - "passed": true - }, - { - "blocking": true, - "code": "rfq_reply_log_has_no_errors", - "detail": "errors=0; status=nhi_pedot_h_a_rfq_reply_log_waiting_for_reply_files", - "passed": true - }, - { - "blocking": true, - "code": "source_backed_provider_selected", - "detail": "selected=0; source_backed_selected=0; selected_ids=-", - "passed": false - }, - { - "blocking": false, - "code": "selected_provider_has_verified_send_log", - "detail": "waiting for a source-backed selected provider before send-log matching is meaningful", - "passed": false - }, - { - "blocking": false, - "code": "selected_provider_has_source_backed_reply_file", - "detail": "waiting for a source-backed selected provider before reply-file matching is meaningful", - "passed": false - }, - { - "blocking": true, - "code": "chain_of_custody_template_ready", - "detail": "status=ready_for_sample_handoff; labels=36; custody_rows=36", - "passed": true - }, - { - "blocking": true, - "code": "sample_submission_precheck_present", - "detail": "status=sample_submission_precheck_ready; shipping_status=do_not_ship_until_vendor_confirms_quote_sample_acceptance_sds_and_custody", - "passed": true - }, - { - "blocking": false, - "code": "sample_submission_shipping_not_self_released", - "detail": "shipping_status=do_not_ship_until_vendor_confirms_quote_sample_acceptance_sds_and_custody; this static precheck remains a human shipment stop until provider acceptance, SDS, custody, and authorization are recorded", - "passed": false - }, - { - "blocking": false, - "code": "vendor_return_files_not_required_for_execution_release", - "detail": "status=awaiting_vendor_return_files; returned measurement files are checked after execution, not before authorization", - "passed": true - } - ], - "gate_label": "H-A", - "inputs": { - "chain_of_custody": "data/nhi_pedot_h_a_chain_of_custody.json", - "delivery_package": "data/nhi_pedot_h_a_delivery_package_manifest.json", - "execution_authorization_log": "data/nhi_pedot_h_a_execution_authorization_log.json", - "quote_selection": "data/nhi_pedot_h_a_quote_selection.json", - "rfq_reply_log": "data/nhi_pedot_h_a_rfq_reply_log.json", - "rfq_send_log": "data/nhi_pedot_h_a_rfq_send_log.json", - "sample_submission": "data/nhi_pedot_h_a_sample_submission_pack.json", - "vendor_return": "data/nhi_pedot_h_a_vendor_return_intake.json" - }, - "label": "NHI-PEDOT H-A", - "manual_authorization_required": true, - "next_action": "Send RFQs, preserve original replies, fill the reply log, and select a source-backed provider.", - "non_evidence_boundary": "Execution release status is logistics control only. It is not measured material evidence, does not release samples by itself, and cannot advance suitability gates without returned real measurement rows and source files.", - "physical_shipment_allowed": false, - "profile": "h_a", - "purpose": "Audit sourcing and package readiness before any sample shipment or outsourced execution authorization.", - "ready_for_execution_authorization": false, - "released_for_execution": false, - "selected_candidate_ids": [], - "selected_decision": "selected_for_h_a", - "selected_provider_count": 0, - "source_backed_selected_candidate_ids": [], - "source_backed_selected_provider_count": 0, - "status": "nhi_pedot_h_a_execution_release_blocked_no_source_backed_provider_selection", - "valid_authorized_candidate_ids": [], - "valid_reply_candidate_ids": [], - "valid_sent_candidate_ids": [] -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_intake_qc.json b/data/nhi_pedot_h_a_intake_qc.json deleted file mode 100644 index b444fba..0000000 --- a/data/nhi_pedot_h_a_intake_qc.json +++ /dev/null @@ -1,1359 +0,0 @@ -{ - "expected_row_count": 12, - "intake_ready": false, - "issue_counts": { - "error": 183, - "warning": 24 - }, - "issues": [ - { - "field": "date", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "medium_name", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "medium_lot", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "temperature_c", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "pH_initial", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "pH_final", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "osmolality_initial_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "osmolality_final_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "conductivity_initial_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "conductivity_final_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "visible_precipitate", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "visible_shedding", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "swelling_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "delamination_score", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "optical_transparency_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "source_file", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "error" - }, - { - "field": "mea_coupon_id", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "warning" - }, - { - "field": "electrode_material", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "severity": "warning" - }, - { - "field": "date", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "medium_name", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "medium_lot", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "temperature_c", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "pH_initial", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "pH_final", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "osmolality_initial_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "osmolality_final_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "conductivity_initial_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "conductivity_final_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "visible_precipitate", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "visible_shedding", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "swelling_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "delamination_score", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "optical_transparency_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "source_file", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "error" - }, - { - "field": "mea_coupon_id", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "warning" - }, - { - "field": "electrode_material", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "severity": "warning" - }, - { - "field": "date", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "medium_name", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "medium_lot", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "temperature_c", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "pH_initial", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "pH_final", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "osmolality_initial_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "osmolality_final_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "conductivity_initial_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "conductivity_final_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "visible_precipitate", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "visible_shedding", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "swelling_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "delamination_score", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "optical_transparency_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "source_file", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "error" - }, - { - "field": "mea_coupon_id", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "warning" - }, - { - "field": "electrode_material", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "severity": "warning" - }, - { - "field": "date", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "medium_name", - "message": "field still contains a placeholder marker", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "medium_lot", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "pH_initial", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "pH_final", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "osmolality_initial_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "osmolality_final_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "conductivity_initial_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "conductivity_final_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "visible_precipitate", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "visible_shedding", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "swelling_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "delamination_score", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "optical_transparency_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "source_file", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "error" - }, - { - "field": "mea_coupon_id", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "warning" - }, - { - "field": "electrode_material", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "severity": "warning" - }, - { - "field": "date", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "medium_name", - "message": "field still contains a placeholder marker", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "medium_lot", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "pH_initial", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "pH_final", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "osmolality_initial_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "osmolality_final_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "conductivity_initial_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "conductivity_final_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "visible_precipitate", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "visible_shedding", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "swelling_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "delamination_score", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "optical_transparency_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "source_file", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "error" - }, - { - "field": "mea_coupon_id", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "warning" - }, - { - "field": "electrode_material", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "severity": "warning" - }, - { - "field": "date", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "medium_name", - "message": "field still contains a placeholder marker", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "medium_lot", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "pH_initial", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "pH_final", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "osmolality_initial_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "osmolality_final_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "conductivity_initial_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "conductivity_final_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "visible_precipitate", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "visible_shedding", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "swelling_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "delamination_score", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "optical_transparency_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "source_file", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "error" - }, - { - "field": "mea_coupon_id", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "warning" - }, - { - "field": "electrode_material", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "severity": "warning" - }, - { - "field": "date", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "medium_name", - "message": "field still contains a placeholder marker", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "medium_lot", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "pH_initial", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "pH_final", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "osmolality_initial_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "osmolality_final_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "conductivity_initial_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "conductivity_final_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "visible_precipitate", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "visible_shedding", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "swelling_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "delamination_score", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "optical_transparency_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "source_file", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "error" - }, - { - "field": "mea_coupon_id", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "warning" - }, - { - "field": "electrode_material", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "severity": "warning" - }, - { - "field": "date", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "medium_name", - "message": "field still contains a placeholder marker", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "medium_lot", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "pH_initial", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "pH_final", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "osmolality_initial_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "osmolality_final_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "conductivity_initial_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "conductivity_final_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "visible_precipitate", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "visible_shedding", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "swelling_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "delamination_score", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "optical_transparency_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "source_file", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "error" - }, - { - "field": "mea_coupon_id", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "warning" - }, - { - "field": "electrode_material", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "severity": "warning" - }, - { - "field": "date", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "medium_name", - "message": "field still contains a placeholder marker", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "medium_lot", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "pH_initial", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "pH_final", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "osmolality_initial_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "osmolality_final_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "conductivity_initial_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "conductivity_final_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "visible_precipitate", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "visible_shedding", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "swelling_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "delamination_score", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "optical_transparency_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "source_file", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "error" - }, - { - "field": "mea_coupon_id", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "warning" - }, - { - "field": "electrode_material", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "severity": "warning" - }, - { - "field": "date", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "medium_name", - "message": "field still contains a placeholder marker", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "medium_lot", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "pH_initial", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "pH_final", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "osmolality_initial_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "osmolality_final_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "conductivity_initial_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "conductivity_final_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "visible_precipitate", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "visible_shedding", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "swelling_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "delamination_score", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "optical_transparency_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "source_file", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "error" - }, - { - "field": "mea_coupon_id", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "warning" - }, - { - "field": "electrode_material", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "severity": "warning" - }, - { - "field": "date", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "medium_name", - "message": "field still contains a placeholder marker", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "medium_lot", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "pH_initial", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "pH_final", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "osmolality_initial_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "osmolality_final_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "conductivity_initial_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "conductivity_final_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "visible_precipitate", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "visible_shedding", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "swelling_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "delamination_score", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "optical_transparency_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "source_file", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "error" - }, - { - "field": "mea_coupon_id", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "warning" - }, - { - "field": "electrode_material", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "severity": "warning" - }, - { - "field": "date", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "medium_name", - "message": "field still contains a placeholder marker", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "medium_lot", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "pH_initial", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "pH_final", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "osmolality_initial_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "osmolality_final_mOsm_kg", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "conductivity_initial_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "conductivity_final_mS_cm", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "visible_precipitate", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "visible_shedding", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "swelling_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "delamination_score", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "optical_transparency_fraction", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "source_file", - "message": "required field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "error" - }, - { - "field": "mea_coupon_id", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "warning" - }, - { - "field": "electrode_material", - "message": "recommended provenance field is blank", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "severity": "warning" - } - ], - "next_action": "Resolve QC errors, remove placeholders, and enter real measured provenance before interpretation.", - "provenance": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "data/nhi_pedot_h_a_sentinel_template.csv", - "path_fixture_marker": false, - "placeholder_examples": [ - { - "markers": [ - "date=missing", - "notes=pending_real_measurement", - "source_file=missing" - ], - "row_number": 1, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "markers": [ - "date=missing", - "notes=pending_real_measurement", - "source_file=missing" - ], - "row_number": 2, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "markers": [ - "date=missing", - "notes=pending_real_measurement", - "source_file=missing" - ], - "row_number": 3, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 4, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 5, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 6, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 7, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 8, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - } - ], - "placeholder_row_count": 12, - "row_count": 12, - "source_file_issue_count": 0, - "source_file_issue_examples": [], - "synthetic_examples": [], - "synthetic_row_count": 0 - }, - "row_count": 12, - "runs_path": "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_sentinel_template.csv", - "source_manifest": "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/limina_source_file_manifest.json", - "status": "h_a_intake_not_ready" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_local_capture_template.csv b/data/nhi_pedot_h_a_local_capture_template.csv deleted file mode 100644 index a56502c..0000000 --- a/data/nhi_pedot_h_a_local_capture_template.csv +++ /dev/null @@ -1,205 +0,0 @@ -run_id,sample_event,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,date,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,date,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,date,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,date,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,date,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,date,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,date,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,date,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,date,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,pH,,pH,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,date,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,pH,,pH,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,date,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,pH,,pH,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,optical_transparency_fraction,,fraction,,,,, diff --git a/data/nhi_pedot_h_a_material_disclosure.csv b/data/nhi_pedot_h_a_material_disclosure.csv deleted file mode 100644 index c952494..0000000 --- a/data/nhi_pedot_h_a_material_disclosure.csv +++ /dev/null @@ -1,8 +0,0 @@ -component,role,planned_description,actual_lot_required,sds_required_before_shipping,hazard_or_handling_note -MEA witness coupon or equivalent electrode-window coupon,device-contact substrate/control surface,"Actual coupon material, geometry, and surface treatment must be recorded before shipment.",yes,vendor_dependent,No electronics need to be powered; disclose substrate material and any cleaning/sterilization residues. -Sodium alginate,hydrogel matrix,alginate_laminin_2pct_wv_caso4_dmem,yes,yes,Provide supplier SDS and lot; keep dry powder handling separate from hydrated coupon shipment notes. -Calcium sulfate dihydrate,ionic crosslinker,183 mM calcium sulfate dihydrate dispersed in 1x DMEM for gelation.,yes,yes,Provide supplier SDS and final preparation batch ID. -DMEM or DMEM/F12 / CL1-proxy medium,crosslinking and soak medium,Actual medium name and lot must be entered in H-A rows; no live cells are included.,yes,yes,Disclose all supplements if used; do not send biohazardous or cell-containing material. -PEDOT:PSS dispersion,conductive phase,"0.6 wt percent PEDOT:PSS lead, selected from the published neural-culture loading",yes,yes,"Provide supplier SDS, loading fraction, pre-rinse/conditioning record, and whether free dispersion is present in shipped aliquots." -Laminin or equivalent cell-adhesion cue,neural cell-contact cue retained above or within hydrogel,EHS laminin or equivalent laminin cue retained above or within the hydrogel,yes,yes,Disclose biological source if applicable; no live cells or human subject material should be included. -Acellular soak aliquots,media physicochemical test article,"Pre/post aliquots for pH, osmolality, conductivity, and appearance after 0 h, 24 h, and 72 h H-A soaks.",yes,vendor_dependent,"Confirm volume, container, temperature, and no-biohazard acceptance with vendor before shipment." diff --git a/data/nhi_pedot_h_a_measurement_merge.json b/data/nhi_pedot_h_a_measurement_merge.json deleted file mode 100644 index 2508110..0000000 --- a/data/nhi_pedot_h_a_measurement_merge.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "output_provenance": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "data/nhi_pedot_h_a_runs_active.csv", - "path_fixture_marker": false, - "placeholder_examples": [ - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 3, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 4, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 5, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 6, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 7, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 8, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - } - ], - "placeholder_row_count": 12, - "row_count": 12, - "source_file_issue_count": 0, - "source_file_issue_examples": [], - "synthetic_examples": [], - "synthetic_row_count": 0 - }, - "output_runs": "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_runs_active.csv", - "raw_measurements": "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_raw_measurements_template.csv", - "stats": { - "applied_values": 0, - "date_updates": 0, - "issues": [], - "operator_updates": 0, - "output_rows": 12, - "raw_rows": 228, - "skipped_blank_values": 228, - "skipped_missing_run_id": 0, - "skipped_unknown_run_id": 0, - "source_file_updates": 0, - "synthetic_marker_propagations": 0, - "unit_warnings": 0, - "unresolved_targets": 0 - }, - "status": "merged" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_minimum_measurement_checklist.json b/data/nhi_pedot_h_a_minimum_measurement_checklist.json deleted file mode 100644 index 3cf80d2..0000000 --- a/data/nhi_pedot_h_a_minimum_measurement_checklist.json +++ /dev/null @@ -1,236 +0,0 @@ -{ - "active_runs": "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_runs_active.csv", - "article_count": 4, - "articles": [ - { - "acceptance_focus": "baseline pH/osmolality/conductivity drift and visual/physical inspection", - "article_id": "no_coating_mea_control", - "article_role": "matched medium/device control", - "hydrogel_matrix": "none", - "pedot_pss_loading_fraction": "0", - "run_ids": [ - "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - ], - "stop_if": "control is unstable or missing, because matched comparisons become invalid", - "timepoints": [ - "0 h", - "24 h", - "72 h" - ] - }, - { - "acceptance_focus": "matrix-only medium drift, swelling, delamination, and transparency versus no-coating control", - "article_id": "hydrogel_laminin_control", - "article_role": "soft matrix control", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem", - "pedot_pss_loading_fraction": "0", - "run_ids": [ - "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - ], - "stop_if": "hydrogel-only matrix fails, because PEDOT interpretation becomes confounded", - "timepoints": [ - "0 h", - "24 h", - "72 h" - ] - }, - { - "acceptance_focus": "lead medium drift <= controls plus no shedding, swelling <=0.20, delamination <=0.5, transparency >=0.80", - "article_id": "lead_nhi_pedot_low_loading", - "article_role": "0.6 wt percent PEDOT:PSS lead", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "pedot_pss_loading_fraction": "0.006", - "run_ids": [ - "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h" - ], - "stop_if": "lead shows pH drift >0.10 vs control, osmolality/conductivity drift >5%, shedding, swelling >0.20, delamination >0.5, or transparency <0.80", - "timepoints": [ - "0 h", - "24 h", - "72 h" - ] - }, - { - "acceptance_focus": "upper-loading boundary; failures constrain dose-response but do not stop lead if lead passes", - "article_id": "challenge_nhi_pedot_high_loading", - "article_role": "1.2 wt percent PEDOT:PSS boundary comparator", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "pedot_pss_loading_fraction": "0.012", - "run_ids": [ - "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h" - ], - "stop_if": "treat challenge as boundary only if it fails; do not promote to H-C", - "timepoints": [ - "0 h", - "24 h", - "72 h" - ] - } - ], - "blank_raw_entries_to_fill": 228, - "non_claim_boundary": "This checklist prepares data entry only. The material remains a hypothesis until QC-clean real rows pass H-A, H-B, H-C, long follow-up, and the final claim audit.", - "provenance_fields_per_raw_row": [ - "measured_at", - "operator_or_agent", - "instrument_id", - "source_file" - ], - "purpose": "Compact checklist for making the first NHI-PEDOT H-A sentinel interpretable.", - "qc_error_count": 183, - "qc_missing_hotspots": [ - { - "field": "date", - "rows": 12 - }, - { - "field": "medium_name", - "rows": 12 - }, - { - "field": "medium_lot", - "rows": 12 - }, - { - "field": "pH_initial", - "rows": 12 - }, - { - "field": "pH_final", - "rows": 12 - }, - { - "field": "osmolality_initial_mOsm_kg", - "rows": 12 - }, - { - "field": "osmolality_final_mOsm_kg", - "rows": 12 - }, - { - "field": "conductivity_initial_mS_cm", - "rows": 12 - }, - { - "field": "conductivity_final_mS_cm", - "rows": 12 - }, - { - "field": "visible_precipitate", - "rows": 12 - }, - { - "field": "visible_shedding", - "rows": 12 - }, - { - "field": "swelling_fraction", - "rows": 12 - }, - { - "field": "delamination_score", - "rows": 12 - }, - { - "field": "optical_transparency_fraction", - "rows": 12 - }, - { - "field": "source_file", - "rows": 12 - }, - { - "field": "temperature_c", - "rows": 3 - } - ], - "qc_status": "h_a_intake_not_ready", - "qc_warning_count": 24, - "raw_measurement_template": "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_raw_measurements_template.csv", - "required_fields": [ - { - "description": "final conductivity", - "field": "conductivity_final_mS_cm", - "rows": 12 - }, - { - "description": "initial conductivity", - "field": "conductivity_initial_mS_cm", - "rows": 12 - }, - { - "description": "calendar date of the measurement event", - "field": "date", - "rows": 12 - }, - { - "description": "0 to 1 delamination score", - "field": "delamination_score", - "rows": 12 - }, - { - "description": "actual medium lot", - "field": "medium_lot", - "rows": 12 - }, - { - "description": "actual medium or CL1-proxy medium name", - "field": "medium_name", - "rows": 12 - }, - { - "description": "0 to 1 optical transparency fraction", - "field": "optical_transparency_fraction", - "rows": 12 - }, - { - "description": "final osmolality", - "field": "osmolality_final_mOsm_kg", - "rows": 12 - }, - { - "description": "initial osmolality", - "field": "osmolality_initial_mOsm_kg", - "rows": 12 - }, - { - "description": "final pH", - "field": "pH_final", - "rows": 12 - }, - { - "description": "initial pH", - "field": "pH_initial", - "rows": 12 - }, - { - "description": "fractional swelling", - "field": "swelling_fraction", - "rows": 12 - }, - { - "description": "visible precipitate, true or false", - "field": "visible_precipitate", - "rows": 12 - }, - { - "description": "visible material shedding, true or false", - "field": "visible_shedding", - "rows": 12 - }, - { - "description": "measurement/incubation temperature in C", - "field": "temperature_c", - "rows": 3 - } - ], - "run_count": 12, - "status": "awaiting_real_measurements" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_osmolality_outsource_template.csv b/data/nhi_pedot_h_a_osmolality_outsource_template.csv deleted file mode 100644 index 32dd65e..0000000 --- a/data/nhi_pedot_h_a_osmolality_outsource_template.csv +++ /dev/null @@ -1,25 +0,0 @@ -run_id,sample_event,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,osmolality,,mOsm/kg,,,,, diff --git a/data/nhi_pedot_h_a_quote_selection.json b/data/nhi_pedot_h_a_quote_selection.json deleted file mode 100644 index 678f969..0000000 --- a/data/nhi_pedot_h_a_quote_selection.json +++ /dev/null @@ -1,391 +0,0 @@ -{ - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "hard_required_fields": [ - "run_id_level_raw_data", - "csv_schema_acceptance", - "sample_handling_fit", - "non_glp_scope_control" - ], - "non_evidence_boundary": "Quote replies and vendor selection can authorize measurement execution only; they do not count as H-A data or material suitability evidence.", - "purpose": "Score RFQ replies for H-A execution selection without treating quotes as material evidence.", - "reply_count": 0, - "reply_log_errors": 0, - "reply_log_status": "nhi_pedot_h_a_rfq_reply_log_waiting_for_reply_files", - "reply_log_valid_rows": 0, - "row_count": 4, - "scored_rows": [ - { - "candidate_id": "materials_metric", - "contact_date": "", - "field_scores": [ - { - "field": "run_id_level_raw_data", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 5 - }, - { - "field": "media_physicochemical_coverage", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "coupon_physical_coverage", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "csv_schema_acceptance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "bundle_entry_sheet_acceptance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - }, - { - "field": "sample_handling_fit", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 3 - }, - { - "field": "turnaround_and_cost", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - }, - { - "field": "non_glp_scope_control", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - } - ], - "hard_failures": [], - "missing_review_fields": [ - "can_cover_full_h_a", - "needs_split_scope", - "run_id_level_raw_data", - "media_physicochemical_coverage", - "coupon_physical_coverage", - "csv_schema_acceptance", - "bundle_entry_sheet_acceptance", - "sample_handling_fit", - "non_glp_scope_control" - ], - "notes": "", - "possible_score": 26.0, - "quoted_cost": "", - "reply_date": "", - "score": 0.0, - "score_fraction": 0.0, - "selection_decision": "pending_outreach", - "source_backed_reply": false, - "source_backing_status": "not_applicable", - "tracker_decision": "pending_outreach", - "turnaround_days": "", - "unknown_required_fields": [ - "run_id_level_raw_data", - "csv_schema_acceptance", - "sample_handling_fit", - "non_glp_scope_control" - ], - "vendor_name": "Materials Metric" - }, - { - "candidate_id": "the_osmolality_lab", - "contact_date": "", - "field_scores": [ - { - "field": "run_id_level_raw_data", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 5 - }, - { - "field": "media_physicochemical_coverage", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "coupon_physical_coverage", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "csv_schema_acceptance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "bundle_entry_sheet_acceptance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - }, - { - "field": "sample_handling_fit", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 3 - }, - { - "field": "turnaround_and_cost", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - }, - { - "field": "non_glp_scope_control", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - } - ], - "hard_failures": [], - "missing_review_fields": [ - "can_cover_full_h_a", - "needs_split_scope", - "run_id_level_raw_data", - "media_physicochemical_coverage", - "coupon_physical_coverage", - "csv_schema_acceptance", - "bundle_entry_sheet_acceptance", - "sample_handling_fit", - "non_glp_scope_control" - ], - "notes": "", - "possible_score": 26.0, - "quoted_cost": "", - "reply_date": "", - "score": 0.0, - "score_fraction": 0.0, - "selection_decision": "pending_outreach", - "source_backed_reply": false, - "source_backing_status": "not_applicable", - "tracker_decision": "pending_outreach", - "turnaround_days": "", - "unknown_required_fields": [ - "run_id_level_raw_data", - "csv_schema_acceptance", - "sample_handling_fit", - "non_glp_scope_control" - ], - "vendor_name": "The Osmolality Lab" - }, - { - "candidate_id": "cambridge_polymer_group_hydrogel", - "contact_date": "", - "field_scores": [ - { - "field": "run_id_level_raw_data", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 5 - }, - { - "field": "media_physicochemical_coverage", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "coupon_physical_coverage", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "csv_schema_acceptance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "bundle_entry_sheet_acceptance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - }, - { - "field": "sample_handling_fit", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 3 - }, - { - "field": "turnaround_and_cost", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - }, - { - "field": "non_glp_scope_control", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - } - ], - "hard_failures": [], - "missing_review_fields": [ - "can_cover_full_h_a", - "needs_split_scope", - "run_id_level_raw_data", - "media_physicochemical_coverage", - "coupon_physical_coverage", - "csv_schema_acceptance", - "bundle_entry_sheet_acceptance", - "sample_handling_fit", - "non_glp_scope_control" - ], - "notes": "", - "possible_score": 26.0, - "quoted_cost": "", - "reply_date": "", - "score": 0.0, - "score_fraction": 0.0, - "selection_decision": "pending_outreach", - "source_backed_reply": false, - "source_backing_status": "not_applicable", - "tracker_decision": "pending_outreach", - "turnaround_days": "", - "unknown_required_fields": [ - "run_id_level_raw_data", - "csv_schema_acceptance", - "sample_handling_fit", - "non_glp_scope_control" - ], - "vendor_name": "Cambridge Polymer Group" - }, - { - "candidate_id": "sigmaaldrich_media_testing", - "contact_date": "", - "field_scores": [ - { - "field": "run_id_level_raw_data", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 5 - }, - { - "field": "media_physicochemical_coverage", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "coupon_physical_coverage", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "csv_schema_acceptance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "bundle_entry_sheet_acceptance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - }, - { - "field": "sample_handling_fit", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 3 - }, - { - "field": "turnaround_and_cost", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - }, - { - "field": "non_glp_scope_control", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - } - ], - "hard_failures": [], - "missing_review_fields": [ - "can_cover_full_h_a", - "needs_split_scope", - "run_id_level_raw_data", - "media_physicochemical_coverage", - "coupon_physical_coverage", - "csv_schema_acceptance", - "bundle_entry_sheet_acceptance", - "sample_handling_fit", - "non_glp_scope_control" - ], - "notes": "", - "possible_score": 26.0, - "quoted_cost": "", - "reply_date": "", - "score": 0.0, - "score_fraction": 0.0, - "selection_decision": "pending_outreach", - "source_backed_reply": false, - "source_backing_status": "not_applicable", - "tracker_decision": "pending_outreach", - "turnaround_days": "", - "unknown_required_fields": [ - "run_id_level_raw_data", - "csv_schema_acceptance", - "sample_handling_fit", - "non_glp_scope_control" - ], - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - } - ], - "selected_count": 0, - "sent_count": 0, - "shortlist_count": 0, - "source_backed_reply_count": 0, - "status": "pending_outreach" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_quote_tracker.csv b/data/nhi_pedot_h_a_quote_tracker.csv deleted file mode 100644 index ede254f..0000000 --- a/data/nhi_pedot_h_a_quote_tracker.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,contact_date,reply_date,can_cover_full_h_a,needs_split_scope,run_id_level_raw_data,media_physicochemical_coverage,coupon_physical_coverage,csv_schema_acceptance,bundle_entry_sheet_acceptance,sample_handling_fit,non_glp_scope_control,turnaround_days,quoted_cost,decision,notes -materials_metric,Materials Metric,,,,,,,,,,,,,,pending_outreach, -the_osmolality_lab,The Osmolality Lab,,,,,,,,,,,,,,pending_outreach, -cambridge_polymer_group_hydrogel,Cambridge Polymer Group,,,,,,,,,,,,,,pending_outreach, -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,,,,,,,,,,,,,,pending_outreach, diff --git a/data/nhi_pedot_h_a_quote_tracker.json b/data/nhi_pedot_h_a_quote_tracker.json deleted file mode 100644 index bc1a721..0000000 --- a/data/nhi_pedot_h_a_quote_tracker.json +++ /dev/null @@ -1,160 +0,0 @@ -{ - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "decision_rules": [ - "Reject any response that cannot preserve run_id-level raw data.", - "Prefer one integrated provider only if it covers both media physicochemical and coupon physical fields.", - "Use a split-scope pair if media tests and coupon imaging/physical scoring are stronger separately.", - "Do not proceed without CSV or bundle-entry schema acceptance and a clear mapping back to LIMINA run_id-level rows.", - "Do not treat quote responses as material evidence; only returned measured rows can advance gates.", - "Rerunning this tracker preserves existing contact dates, replies, decisions, and notes by candidate_id." - ], - "disqualifiers": [ - "Only returns pooled averages or narrative pass/fail certificates.", - "Will not preserve run_id, sample_event, and target_field mapping.", - "Cannot return source files or raw exports for provenance.", - "Requires replacing the requested material stack or timepoints without a documented deviation log.", - "Treats vendor capability claims as final material suitability evidence." - ], - "fields": [ - "candidate_id", - "vendor_name", - "contact_date", - "reply_date", - "can_cover_full_h_a", - "needs_split_scope", - "run_id_level_raw_data", - "media_physicochemical_coverage", - "coupon_physical_coverage", - "csv_schema_acceptance", - "bundle_entry_sheet_acceptance", - "sample_handling_fit", - "non_glp_scope_control", - "turnaround_days", - "quoted_cost", - "decision", - "notes" - ], - "purpose": "Track RFQ replies and decide which vendor/cooperator can generate claimable H-A measurement rows.", - "row_count": 4, - "rows": [ - { - "bundle_entry_sheet_acceptance": "", - "can_cover_full_h_a": "", - "candidate_id": "materials_metric", - "contact_date": "", - "coupon_physical_coverage": "", - "csv_schema_acceptance": "", - "decision": "pending_outreach", - "media_physicochemical_coverage": "", - "needs_split_scope": "", - "non_glp_scope_control": "", - "notes": "", - "quoted_cost": "", - "reply_date": "", - "run_id_level_raw_data": "", - "sample_handling_fit": "", - "turnaround_days": "", - "vendor_name": "Materials Metric" - }, - { - "bundle_entry_sheet_acceptance": "", - "can_cover_full_h_a": "", - "candidate_id": "the_osmolality_lab", - "contact_date": "", - "coupon_physical_coverage": "", - "csv_schema_acceptance": "", - "decision": "pending_outreach", - "media_physicochemical_coverage": "", - "needs_split_scope": "", - "non_glp_scope_control": "", - "notes": "", - "quoted_cost": "", - "reply_date": "", - "run_id_level_raw_data": "", - "sample_handling_fit": "", - "turnaround_days": "", - "vendor_name": "The Osmolality Lab" - }, - { - "bundle_entry_sheet_acceptance": "", - "can_cover_full_h_a": "", - "candidate_id": "cambridge_polymer_group_hydrogel", - "contact_date": "", - "coupon_physical_coverage": "", - "csv_schema_acceptance": "", - "decision": "pending_outreach", - "media_physicochemical_coverage": "", - "needs_split_scope": "", - "non_glp_scope_control": "", - "notes": "", - "quoted_cost": "", - "reply_date": "", - "run_id_level_raw_data": "", - "sample_handling_fit": "", - "turnaround_days": "", - "vendor_name": "Cambridge Polymer Group" - }, - { - "bundle_entry_sheet_acceptance": "", - "can_cover_full_h_a": "", - "candidate_id": "sigmaaldrich_media_testing", - "contact_date": "", - "coupon_physical_coverage": "", - "csv_schema_acceptance": "", - "decision": "pending_outreach", - "media_physicochemical_coverage": "", - "needs_split_scope": "", - "non_glp_scope_control": "", - "notes": "", - "quoted_cost": "", - "reply_date": "", - "run_id_level_raw_data": "", - "sample_handling_fit": "", - "turnaround_days": "", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - } - ], - "scoring_rubric": [ - { - "criterion": "run_id_level_raw_data", - "pass_condition": "Vendor accepts one result per run_id/sample_event/target_field and does not require pooled reporting.", - "weight": 5 - }, - { - "criterion": "media_physicochemical_coverage", - "pass_condition": "Vendor can report pH, osmolality, and conductivity before/after the requested timepoints, or clearly names a partner/subcontract path.", - "weight": 4 - }, - { - "criterion": "coupon_physical_coverage", - "pass_condition": "Vendor can report swelling fraction, visible precipitate, shedding, delamination score, optical transparency, and supporting images.", - "weight": 4 - }, - { - "criterion": "csv_schema_acceptance", - "pass_condition": "Vendor can fill or accept either the LIMINA raw-measurement CSV or the compact bundle-entry CSV without changing column names.", - "weight": 4 - }, - { - "criterion": "bundle_entry_sheet_acceptance", - "pass_condition": "Vendor can use the compact one-row-per-source-file bundle sheet when one raw export/report supports multiple values.", - "weight": 2 - }, - { - "criterion": "sample_handling_fit", - "pass_condition": "Vendor can handle neural medium, alginate/laminin/PEDOT:PSS coupons, 37 C timing, and chain-of-custody constraints.", - "weight": 3 - }, - { - "criterion": "turnaround_and_cost", - "pass_condition": "Vendor can provide a practical R&D quote and turnaround for the 12-run/228-entry package.", - "weight": 2 - }, - { - "criterion": "non_glp_scope_control", - "pass_condition": "Vendor can keep the first pass as exploratory R&D and not force a full GLP/ISO program before H-A.", - "weight": 2 - } - ], - "status": "pending_outreach" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_raw_csv_extracted_values.csv b/data/nhi_pedot_h_a_raw_csv_extracted_values.csv deleted file mode 100644 index 5478962..0000000 --- a/data/nhi_pedot_h_a_raw_csv_extracted_values.csv +++ /dev/null @@ -1 +0,0 @@ -run_id,sample_event,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes diff --git a/data/nhi_pedot_h_a_raw_csv_extraction_regression.json b/data/nhi_pedot_h_a_raw_csv_extraction_regression.json deleted file mode 100644 index 74d35cc..0000000 --- a/data/nhi_pedot_h_a_raw_csv_extraction_regression.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "checks": { - "missing_raw_csv_is_not_synthetic": true, - "placeholder_value_rejected": true, - "valid_raw_csv_extracts_one_row": true - }, - "extracted_status": "h_a_raw_csv_value_extraction_ready", - "no_raw_status": "h_a_raw_csv_value_extraction_no_raw_csv", - "rejected_status": "h_a_raw_csv_value_extraction_blocked", - "status": "pass" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_raw_csv_value_extraction.json b/data/nhi_pedot_h_a_raw_csv_value_extraction.json deleted file mode 100644 index 2bcf681..0000000 --- a/data/nhi_pedot_h_a_raw_csv_value_extraction.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "boundary": "This extractor reads only existing raw CSV/TSV files in allowed source-file roots. It writes a non-evidence value sidecar for the H-A importer; missing files produce no synthetic rows.", - "generated_artifacts": { - "json": "data/nhi_pedot_h_a_raw_csv_value_extraction.json", - "report": "reports/nhi_pedot_h_a_raw_csv_value_extraction.md", - "values_out": "data/nhi_pedot_h_a_raw_csv_extracted_values.csv" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/nhi_pedot_h_a_source_values.csv" - }, - "issues": [], - "source_files": [], - "status": "h_a_raw_csv_value_extraction_no_raw_csv", - "summary": { - "ambiguous_rows": 0, - "error_count": 0, - "extracted_rows": 0, - "plan_rows": 228, - "raw_csv_found": 0, - "raw_csv_missing": 108, - "raw_csv_source_files": 0, - "raw_csv_unsupported": 120, - "warning_count": 0 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_raw_measurements_template.csv b/data/nhi_pedot_h_a_raw_measurements_template.csv deleted file mode 100644 index fd51158..0000000 --- a/data/nhi_pedot_h_a_raw_measurements_template.csv +++ /dev/null @@ -1,229 +0,0 @@ -run_id,sample_event,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,date,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,date,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,date,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,date,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,date,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,date,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,date,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,date,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,date,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,pH,,pH,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,date,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,pH,,pH,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,date,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,pH,,pH,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,optical_transparency_fraction,,fraction,,,,, diff --git a/data/nhi_pedot_h_a_rfq_dispatch_archive/nhi_pedot_h_a_rfq_dispatch_archive.zip b/data/nhi_pedot_h_a_rfq_dispatch_archive/nhi_pedot_h_a_rfq_dispatch_archive.zip deleted file mode 100644 index 02da28f..0000000 Binary files a/data/nhi_pedot_h_a_rfq_dispatch_archive/nhi_pedot_h_a_rfq_dispatch_archive.zip and /dev/null differ diff --git a/data/nhi_pedot_h_a_rfq_dispatch_archive_manifest.csv b/data/nhi_pedot_h_a_rfq_dispatch_archive_manifest.csv deleted file mode 100644 index 46f2b35..0000000 --- a/data/nhi_pedot_h_a_rfq_dispatch_archive_manifest.csv +++ /dev/null @@ -1,23 +0,0 @@ -role,candidate_id,vendor_name,source_path,archive_path,source_exists,source_bytes,source_sha256,expected_sha256,sha256_match,required,errors -dispatch_manifest_report,,,reports/nhi_pedot_h_a_rfq_dispatch_manifest.md,00_manifest/nhi_pedot_h_a_rfq_dispatch_manifest.md,true,5070,70ebe8c9466453e166520888361332c2cd848c452a521b9b313e8184f927f4c1,,true,true, -dispatch_manifest_csv,,,data/nhi_pedot_h_a_rfq_dispatch_manifest.csv,00_manifest/nhi_pedot_h_a_rfq_dispatch_manifest.csv,true,6977,28c77e905e54d07f94e409eb851d347d42b7215900a0657f377d06a46b459d04,,true,true, -send_cockpit_html,,,reports/nhi_pedot_h_a_rfq_send_cockpit.html,00_manifest/nhi_pedot_h_a_rfq_send_cockpit.html,true,24965,c85e1ff64b3b14368d81f1977e7f9944710572f6f3651130c4d601a354bab8d4,,true,true, -send_cockpit_report,,,reports/nhi_pedot_h_a_rfq_send_cockpit.md,00_manifest/nhi_pedot_h_a_rfq_send_cockpit.md,true,3095,1d5a52fa146011743fa7dfc73ecaf2351749c6f63247fe1ba51a5754190abfe3,,true,true, -send_action_pack,,,reports/nhi_pedot_h_a_rfq_send_action_pack.md,00_manifest/nhi_pedot_h_a_rfq_send_action_pack.md,true,5510,1681dcf763918ed61803dfcee01853bf11dca87cc212890f9548b910a0a5d58d,,true,true, -eml_integrity_audit,,,reports/nhi_pedot_h_a_rfq_eml_integrity_audit.md,00_manifest/nhi_pedot_h_a_rfq_eml_integrity_audit.md,true,1015,b585f59a1ba53286403559ebf843244057ff9f0f8870e8becc841509b0420638,,true,true, -contact_source_audit,,,reports/nhi_pedot_h_a_vendor_contact_source_audit.md,00_manifest/nhi_pedot_h_a_vendor_contact_source_audit.md,true,1237,6e08490a6aa73007d5788d7772370795c81196af2e5f1b52c9b51b4f1d398be1,,true,true, -contact_source_proofs,,,data/nhi_pedot_h_a_vendor_contact_source_proofs.csv,00_manifest/nhi_pedot_h_a_vendor_contact_source_proofs.csv,true,2441,f777e8f0bd207f49872d5c29ca30a764ea1822970a0f7f1141941b4999132b03,,true,true, -confirmation_entry_sheet,,,reports/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.md,00_manifest/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.md,true,1771,ada08adc085f04f8ca1fd3f38de02ceee776c7f1a4343e68789dd906ba1cee15,,true,true, -confirmation_entry_apply,,,reports/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.md,00_manifest/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.md,true,597,427bf4775c8add41766731f4e03b1dd9ad3a583294aed5de71e090d6e78a9872,,true,true, -vendor_eml_draft,materials_metric,Materials Metric,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml,vendors/1_materials_metric/draft/materials_metric_rfq_draft.eml,true,52234,b20d27e34c986c9b45e1cea094dffe9cb0ae102c5c43fae1c8e6ddcf81ccf265,b20d27e34c986c9b45e1cea094dffe9cb0ae102c5c43fae1c8e6ddcf81ccf265,true,true, -vendor_bundle,materials_metric,Materials Metric,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip,vendors/1_materials_metric/bundle/materials_metric_nhi_pedot_h_a_rfq_bundle.zip,true,36253,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,true,true, -send_confirmation_template,materials_metric,Materials Metric,data/rfq_send_confirmation_templates/h_a/materials_metric_send_confirmation_template.md,vendors/1_materials_metric/confirmation/materials_metric_send_confirmation_template.md,true,1395,a89b087cc035c4c11d086af2c0f1d66096d46d289a13087d78aa485a3aa59981,,true,true, -vendor_eml_draft,the_osmolality_lab,The Osmolality Lab,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml,vendors/2_the_osmolality_lab/draft/the_osmolality_lab_rfq_draft.eml,true,52279,f3a9108c7580672eda874b87b5d3b7e8e52a8697c034b23b91c7e97e4a70149e,f3a9108c7580672eda874b87b5d3b7e8e52a8697c034b23b91c7e97e4a70149e,true,true, -vendor_bundle,the_osmolality_lab,The Osmolality Lab,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip,vendors/2_the_osmolality_lab/bundle/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip,true,36279,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,true,true, -send_confirmation_template,the_osmolality_lab,The Osmolality Lab,data/rfq_send_confirmation_templates/h_a/the_osmolality_lab_send_confirmation_template.md,vendors/2_the_osmolality_lab/confirmation/the_osmolality_lab_send_confirmation_template.md,true,1387,007298782e7a836b4bd4614638944da2890254d201938febb6e7b295703a18ed,,true,true, -vendor_eml_draft,cambridge_polymer_group_hydrogel,Cambridge Polymer Group,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml,vendors/3_cambridge_polymer_group_hydrogel/draft/cambridge_polymer_group_hydrogel_rfq_draft.eml,true,52559,2e6218e69068de0c0306d900194399dc909d5d6161a91165d1fa01ffa2e5cd59,2e6218e69068de0c0306d900194399dc909d5d6161a91165d1fa01ffa2e5cd59,true,true, -vendor_bundle,cambridge_polymer_group_hydrogel,Cambridge Polymer Group,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip,vendors/3_cambridge_polymer_group_hydrogel/bundle/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip,true,36349,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,true,true, -send_confirmation_template,cambridge_polymer_group_hydrogel,Cambridge Polymer Group,data/rfq_send_confirmation_templates/h_a/cambridge_polymer_group_hydrogel_send_confirmation_template.md,vendors/3_cambridge_polymer_group_hydrogel/confirmation/cambridge_polymer_group_hydrogel_send_confirmation_template.md,true,1440,fe73349c7556e60834f9b952fb092d1c5f9938fb80940de9ed8a6fa7254d4498,,true,true, -vendor_eml_draft,sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml,vendors/4_sigmaaldrich_media_testing/draft/sigmaaldrich_media_testing_rfq_draft.eml,true,52565,bdd950ff0b9a5f45cdfe574dfea68fdd97f911376abdf2eb9882e44e6b03fdac,bdd950ff0b9a5f45cdfe574dfea68fdd97f911376abdf2eb9882e44e6b03fdac,true,true, -vendor_bundle,sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip,vendors/4_sigmaaldrich_media_testing/bundle/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip,true,36340,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,true,true, -send_confirmation_template,sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,data/rfq_send_confirmation_templates/h_a/sigmaaldrich_media_testing_send_confirmation_template.md,vendors/4_sigmaaldrich_media_testing/confirmation/sigmaaldrich_media_testing_send_confirmation_template.md,true,1485,e83b08ad3aa704901ef769e9ae37528cdd836e45dcff90a00c502c4d07543213,,true,true, diff --git a/data/nhi_pedot_h_a_rfq_dispatch_archive_manifest.json b/data/nhi_pedot_h_a_rfq_dispatch_archive_manifest.json deleted file mode 100644 index 7172ef5..0000000 --- a/data/nhi_pedot_h_a_rfq_dispatch_archive_manifest.json +++ /dev/null @@ -1,333 +0,0 @@ -{ - "boundary": "The RFQ dispatch archive is a convenience package for manual outreach only. It is not a send confirmation, vendor reply, measurement result, or material suitability claim.", - "generated_artifacts": { - "archive": "data/nhi_pedot_h_a_rfq_dispatch_archive/nhi_pedot_h_a_rfq_dispatch_archive.zip", - "csv": "data/nhi_pedot_h_a_rfq_dispatch_archive_manifest.csv", - "json": "data/nhi_pedot_h_a_rfq_dispatch_archive_manifest.json", - "report": "reports/nhi_pedot_h_a_rfq_dispatch_archive_manifest.md" - }, - "inputs": { - "dispatch_manifest": "data/nhi_pedot_h_a_rfq_dispatch_manifest.json" - }, - "purpose": "Single audited archive for manually sending first-wave NHI-PEDOT H-A RFQ drafts.", - "rows": [ - { - "archive_path": "00_manifest/nhi_pedot_h_a_rfq_dispatch_manifest.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "dispatch_manifest_report", - "sha256_match": "true", - "source_bytes": 5070, - "source_exists": "true", - "source_path": "reports/nhi_pedot_h_a_rfq_dispatch_manifest.md", - "source_sha256": "70ebe8c9466453e166520888361332c2cd848c452a521b9b313e8184f927f4c1", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/nhi_pedot_h_a_rfq_dispatch_manifest.csv", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "dispatch_manifest_csv", - "sha256_match": "true", - "source_bytes": 6977, - "source_exists": "true", - "source_path": "data/nhi_pedot_h_a_rfq_dispatch_manifest.csv", - "source_sha256": "28c77e905e54d07f94e409eb851d347d42b7215900a0657f377d06a46b459d04", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/nhi_pedot_h_a_rfq_send_cockpit.html", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "send_cockpit_html", - "sha256_match": "true", - "source_bytes": 24965, - "source_exists": "true", - "source_path": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "source_sha256": "c85e1ff64b3b14368d81f1977e7f9944710572f6f3651130c4d601a354bab8d4", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/nhi_pedot_h_a_rfq_send_cockpit.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "send_cockpit_report", - "sha256_match": "true", - "source_bytes": 3095, - "source_exists": "true", - "source_path": "reports/nhi_pedot_h_a_rfq_send_cockpit.md", - "source_sha256": "1d5a52fa146011743fa7dfc73ecaf2351749c6f63247fe1ba51a5754190abfe3", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/nhi_pedot_h_a_rfq_send_action_pack.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "send_action_pack", - "sha256_match": "true", - "source_bytes": 5510, - "source_exists": "true", - "source_path": "reports/nhi_pedot_h_a_rfq_send_action_pack.md", - "source_sha256": "1681dcf763918ed61803dfcee01853bf11dca87cc212890f9548b910a0a5d58d", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/nhi_pedot_h_a_rfq_eml_integrity_audit.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "eml_integrity_audit", - "sha256_match": "true", - "source_bytes": 1015, - "source_exists": "true", - "source_path": "reports/nhi_pedot_h_a_rfq_eml_integrity_audit.md", - "source_sha256": "b585f59a1ba53286403559ebf843244057ff9f0f8870e8becc841509b0420638", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/nhi_pedot_h_a_vendor_contact_source_audit.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "contact_source_audit", - "sha256_match": "true", - "source_bytes": 1237, - "source_exists": "true", - "source_path": "reports/nhi_pedot_h_a_vendor_contact_source_audit.md", - "source_sha256": "6e08490a6aa73007d5788d7772370795c81196af2e5f1b52c9b51b4f1d398be1", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/nhi_pedot_h_a_vendor_contact_source_proofs.csv", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "contact_source_proofs", - "sha256_match": "true", - "source_bytes": 2441, - "source_exists": "true", - "source_path": "data/nhi_pedot_h_a_vendor_contact_source_proofs.csv", - "source_sha256": "f777e8f0bd207f49872d5c29ca30a764ea1822970a0f7f1141941b4999132b03", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "confirmation_entry_sheet", - "sha256_match": "true", - "source_bytes": 1771, - "source_exists": "true", - "source_path": "reports/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.md", - "source_sha256": "ada08adc085f04f8ca1fd3f38de02ceee776c7f1a4343e68789dd906ba1cee15", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "confirmation_entry_apply", - "sha256_match": "true", - "source_bytes": 597, - "source_exists": "true", - "source_path": "reports/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.md", - "source_sha256": "427bf4775c8add41766731f4e03b1dd9ad3a583294aed5de71e090d6e78a9872", - "vendor_name": "" - }, - { - "archive_path": "vendors/1_materials_metric/draft/materials_metric_rfq_draft.eml", - "candidate_id": "materials_metric", - "errors": "", - "expected_sha256": "b20d27e34c986c9b45e1cea094dffe9cb0ae102c5c43fae1c8e6ddcf81ccf265", - "required": "true", - "role": "vendor_eml_draft", - "sha256_match": "true", - "source_bytes": 52234, - "source_exists": "true", - "source_path": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml", - "source_sha256": "b20d27e34c986c9b45e1cea094dffe9cb0ae102c5c43fae1c8e6ddcf81ccf265", - "vendor_name": "Materials Metric" - }, - { - "archive_path": "vendors/1_materials_metric/bundle/materials_metric_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "materials_metric", - "errors": "", - "expected_sha256": "6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35", - "required": "true", - "role": "vendor_bundle", - "sha256_match": "true", - "source_bytes": 36253, - "source_exists": "true", - "source_path": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip", - "source_sha256": "6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35", - "vendor_name": "Materials Metric" - }, - { - "archive_path": "vendors/1_materials_metric/confirmation/materials_metric_send_confirmation_template.md", - "candidate_id": "materials_metric", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "send_confirmation_template", - "sha256_match": "true", - "source_bytes": 1395, - "source_exists": "true", - "source_path": "data/rfq_send_confirmation_templates/h_a/materials_metric_send_confirmation_template.md", - "source_sha256": "a89b087cc035c4c11d086af2c0f1d66096d46d289a13087d78aa485a3aa59981", - "vendor_name": "Materials Metric" - }, - { - "archive_path": "vendors/2_the_osmolality_lab/draft/the_osmolality_lab_rfq_draft.eml", - "candidate_id": "the_osmolality_lab", - "errors": "", - "expected_sha256": "f3a9108c7580672eda874b87b5d3b7e8e52a8697c034b23b91c7e97e4a70149e", - "required": "true", - "role": "vendor_eml_draft", - "sha256_match": "true", - "source_bytes": 52279, - "source_exists": "true", - "source_path": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml", - "source_sha256": "f3a9108c7580672eda874b87b5d3b7e8e52a8697c034b23b91c7e97e4a70149e", - "vendor_name": "The Osmolality Lab" - }, - { - "archive_path": "vendors/2_the_osmolality_lab/bundle/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "the_osmolality_lab", - "errors": "", - "expected_sha256": "b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a", - "required": "true", - "role": "vendor_bundle", - "sha256_match": "true", - "source_bytes": 36279, - "source_exists": "true", - "source_path": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip", - "source_sha256": "b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a", - "vendor_name": "The Osmolality Lab" - }, - { - "archive_path": "vendors/2_the_osmolality_lab/confirmation/the_osmolality_lab_send_confirmation_template.md", - "candidate_id": "the_osmolality_lab", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "send_confirmation_template", - "sha256_match": "true", - "source_bytes": 1387, - "source_exists": "true", - "source_path": "data/rfq_send_confirmation_templates/h_a/the_osmolality_lab_send_confirmation_template.md", - "source_sha256": "007298782e7a836b4bd4614638944da2890254d201938febb6e7b295703a18ed", - "vendor_name": "The Osmolality Lab" - }, - { - "archive_path": "vendors/3_cambridge_polymer_group_hydrogel/draft/cambridge_polymer_group_hydrogel_rfq_draft.eml", - "candidate_id": "cambridge_polymer_group_hydrogel", - "errors": "", - "expected_sha256": "2e6218e69068de0c0306d900194399dc909d5d6161a91165d1fa01ffa2e5cd59", - "required": "true", - "role": "vendor_eml_draft", - "sha256_match": "true", - "source_bytes": 52559, - "source_exists": "true", - "source_path": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml", - "source_sha256": "2e6218e69068de0c0306d900194399dc909d5d6161a91165d1fa01ffa2e5cd59", - "vendor_name": "Cambridge Polymer Group" - }, - { - "archive_path": "vendors/3_cambridge_polymer_group_hydrogel/bundle/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "cambridge_polymer_group_hydrogel", - "errors": "", - "expected_sha256": "bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1", - "required": "true", - "role": "vendor_bundle", - "sha256_match": "true", - "source_bytes": 36349, - "source_exists": "true", - "source_path": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip", - "source_sha256": "bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1", - "vendor_name": "Cambridge Polymer Group" - }, - { - "archive_path": "vendors/3_cambridge_polymer_group_hydrogel/confirmation/cambridge_polymer_group_hydrogel_send_confirmation_template.md", - "candidate_id": "cambridge_polymer_group_hydrogel", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "send_confirmation_template", - "sha256_match": "true", - "source_bytes": 1440, - "source_exists": "true", - "source_path": "data/rfq_send_confirmation_templates/h_a/cambridge_polymer_group_hydrogel_send_confirmation_template.md", - "source_sha256": "fe73349c7556e60834f9b952fb092d1c5f9938fb80940de9ed8a6fa7254d4498", - "vendor_name": "Cambridge Polymer Group" - }, - { - "archive_path": "vendors/4_sigmaaldrich_media_testing/draft/sigmaaldrich_media_testing_rfq_draft.eml", - "candidate_id": "sigmaaldrich_media_testing", - "errors": "", - "expected_sha256": "bdd950ff0b9a5f45cdfe574dfea68fdd97f911376abdf2eb9882e44e6b03fdac", - "required": "true", - "role": "vendor_eml_draft", - "sha256_match": "true", - "source_bytes": 52565, - "source_exists": "true", - "source_path": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml", - "source_sha256": "bdd950ff0b9a5f45cdfe574dfea68fdd97f911376abdf2eb9882e44e6b03fdac", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - }, - { - "archive_path": "vendors/4_sigmaaldrich_media_testing/bundle/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "sigmaaldrich_media_testing", - "errors": "", - "expected_sha256": "6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd", - "required": "true", - "role": "vendor_bundle", - "sha256_match": "true", - "source_bytes": 36340, - "source_exists": "true", - "source_path": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip", - "source_sha256": "6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - }, - { - "archive_path": "vendors/4_sigmaaldrich_media_testing/confirmation/sigmaaldrich_media_testing_send_confirmation_template.md", - "candidate_id": "sigmaaldrich_media_testing", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "send_confirmation_template", - "sha256_match": "true", - "source_bytes": 1485, - "source_exists": "true", - "source_path": "data/rfq_send_confirmation_templates/h_a/sigmaaldrich_media_testing_send_confirmation_template.md", - "source_sha256": "e83b08ad3aa704901ef769e9ae37528cdd836e45dcff90a00c502c4d07543213", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - } - ], - "status": "h_a_rfq_dispatch_archive_ready", - "summary": { - "archive_bytes": 302673, - "archive_sha256": "b739036ff6d618bec4b57e1c028676338ef58599a11fb7a6822a6df9b725368b", - "hash_mismatch_files": 0, - "included_files": 22, - "manifest_rows": 22, - "missing_files": 0, - "vendor_rows": 4 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_rfq_dispatch_manifest.csv b/data/nhi_pedot_h_a_rfq_dispatch_manifest.csv deleted file mode 100644 index f1a295a..0000000 --- a/data/nhi_pedot_h_a_rfq_dispatch_manifest.csv +++ /dev/null @@ -1,5 +0,0 @@ -dispatch_order,candidate_id,vendor_name,dispatch_status,send_action_status,primary_send_method,recipient_or_form,contact_url,quote_url,eml_file,eml_exists,eml_sha256,eml_integrity_status,eml_integrity_errors,bundle_zip,bundle_exists,bundle_sha256_expected,bundle_sha256_actual,bundle_sha256_match,attached_bundle_verified,matched_attachment_filename,confirmation_source_file_to_save,confirmation_template,confirmation_template_exists,sent_bundle_sha256_to_record,manual_dispatch_step,non_evidence_boundary -1,materials_metric,Materials Metric,ready_for_manual_dispatch,ready_to_send,email_or_request_service_form,info@materialsmetric.com,https://materialsmetric.com/contact-us/,https://materialsmetric.com/contact-us/,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml,true,b20d27e34c986c9b45e1cea094dffe9cb0ae102c5c43fae1c8e6ddcf81ccf265,pass,,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip,true,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,true,true,materials_metric_nhi_pedot_h_a_rfq_bundle.zip,data/rfq_send_confirmation_files/h_a/materials_metric_send_confirmation.txt,data/rfq_send_confirmation_templates/h_a/materials_metric_send_confirmation_template.md,true,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,"Open data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml, confirm To=info@materialsmetric.com and attached bundle data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip with SHA-256 6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35, send manually, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/h_a/materials_metric_send_confirmation.txt.","This dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim." -2,the_osmolality_lab,The Osmolality Lab,ready_for_manual_dispatch,ready_to_send,email_or_contact_form,info@osmolab.com,https://theosmolalitylab.com/contact-us/,https://theosmolalitylab.com/contact-us/,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml,true,f3a9108c7580672eda874b87b5d3b7e8e52a8697c034b23b91c7e97e4a70149e,pass,,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip,true,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,true,true,the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip,data/rfq_send_confirmation_files/h_a/the_osmolality_lab_send_confirmation.txt,data/rfq_send_confirmation_templates/h_a/the_osmolality_lab_send_confirmation_template.md,true,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,"Open data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml, confirm To=info@osmolab.com and attached bundle data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip with SHA-256 b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a, send manually, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/h_a/the_osmolality_lab_send_confirmation.txt.","This dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim." -3,cambridge_polymer_group_hydrogel,Cambridge Polymer Group,ready_for_manual_dispatch,ready_to_send,request_quote_form_or_email,info@campoly.com,https://www.campoly.com/contact-us/,https://quote.campoly.com/material-testing/,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml,true,2e6218e69068de0c0306d900194399dc909d5d6161a91165d1fa01ffa2e5cd59,pass,,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip,true,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,true,true,cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip,data/rfq_send_confirmation_files/h_a/cambridge_polymer_group_hydrogel_send_confirmation.txt,data/rfq_send_confirmation_templates/h_a/cambridge_polymer_group_hydrogel_send_confirmation_template.md,true,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,"Open data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml, confirm To=info@campoly.com and attached bundle data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip with SHA-256 bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1, send manually, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/h_a/cambridge_polymer_group_hydrogel_send_confirmation.txt.","This dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim." -4,sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,ready_for_manual_dispatch,ready_to_send,service_page_or_technical_service,PSTechService@milliporesigma.com,https://www.sigmaaldrich.com/US/en/collections/offices,https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml,true,bdd950ff0b9a5f45cdfe574dfea68fdd97f911376abdf2eb9882e44e6b03fdac,pass,,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip,true,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,true,true,sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip,data/rfq_send_confirmation_files/h_a/sigmaaldrich_media_testing_send_confirmation.txt,data/rfq_send_confirmation_templates/h_a/sigmaaldrich_media_testing_send_confirmation_template.md,true,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,"Open data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml, confirm To=PSTechService@milliporesigma.com and attached bundle data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip with SHA-256 6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd, send manually, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/h_a/sigmaaldrich_media_testing_send_confirmation.txt.","This dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim." diff --git a/data/nhi_pedot_h_a_rfq_dispatch_manifest.json b/data/nhi_pedot_h_a_rfq_dispatch_manifest.json deleted file mode 100644 index bc41715..0000000 --- a/data/nhi_pedot_h_a_rfq_dispatch_manifest.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "boundary": "This dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim.", - "generated_artifacts": { - "csv": "data/nhi_pedot_h_a_rfq_dispatch_manifest.csv", - "json": "data/nhi_pedot_h_a_rfq_dispatch_manifest.json", - "report": "reports/nhi_pedot_h_a_rfq_dispatch_manifest.md" - }, - "inputs": { - "eml_integrity": "data/nhi_pedot_h_a_rfq_eml_integrity_audit.csv", - "send_queue": "data/nhi_pedot_h_a_rfq_send_action_queue.csv" - }, - "purpose": "Pre-send manifest binding every H-A RFQ draft to the exact audited bundle, recipient, and confirmation-file save path.", - "rows": [ - { - "attached_bundle_verified": "true", - "bundle_exists": "true", - "bundle_sha256_actual": "6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35", - "bundle_sha256_expected": "6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35", - "bundle_sha256_match": "true", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "materials_metric", - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/h_a/materials_metric_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/h_a/materials_metric_send_confirmation_template.md", - "confirmation_template_exists": "true", - "contact_url": "https://materialsmetric.com/contact-us/", - "dispatch_order": "1", - "dispatch_status": "ready_for_manual_dispatch", - "eml_exists": "true", - "eml_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml", - "eml_integrity_errors": "", - "eml_integrity_status": "pass", - "eml_sha256": "b20d27e34c986c9b45e1cea094dffe9cb0ae102c5c43fae1c8e6ddcf81ccf265", - "manual_dispatch_step": "Open data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml, confirm To=info@materialsmetric.com and attached bundle data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip with SHA-256 6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35, send manually, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/h_a/materials_metric_send_confirmation.txt.", - "matched_attachment_filename": "materials_metric_nhi_pedot_h_a_rfq_bundle.zip", - "non_evidence_boundary": "This dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim.", - "primary_send_method": "email_or_request_service_form", - "quote_url": "https://materialsmetric.com/contact-us/", - "recipient_or_form": "info@materialsmetric.com", - "send_action_status": "ready_to_send", - "sent_bundle_sha256_to_record": "6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35", - "vendor_name": "Materials Metric" - }, - { - "attached_bundle_verified": "true", - "bundle_exists": "true", - "bundle_sha256_actual": "b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a", - "bundle_sha256_expected": "b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a", - "bundle_sha256_match": "true", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "the_osmolality_lab", - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/h_a/the_osmolality_lab_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/h_a/the_osmolality_lab_send_confirmation_template.md", - "confirmation_template_exists": "true", - "contact_url": "https://theosmolalitylab.com/contact-us/", - "dispatch_order": "2", - "dispatch_status": "ready_for_manual_dispatch", - "eml_exists": "true", - "eml_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml", - "eml_integrity_errors": "", - "eml_integrity_status": "pass", - "eml_sha256": "f3a9108c7580672eda874b87b5d3b7e8e52a8697c034b23b91c7e97e4a70149e", - "manual_dispatch_step": "Open data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml, confirm To=info@osmolab.com and attached bundle data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip with SHA-256 b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a, send manually, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/h_a/the_osmolality_lab_send_confirmation.txt.", - "matched_attachment_filename": "the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip", - "non_evidence_boundary": "This dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim.", - "primary_send_method": "email_or_contact_form", - "quote_url": "https://theosmolalitylab.com/contact-us/", - "recipient_or_form": "info@osmolab.com", - "send_action_status": "ready_to_send", - "sent_bundle_sha256_to_record": "b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a", - "vendor_name": "The Osmolality Lab" - }, - { - "attached_bundle_verified": "true", - "bundle_exists": "true", - "bundle_sha256_actual": "bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1", - "bundle_sha256_expected": "bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1", - "bundle_sha256_match": "true", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "cambridge_polymer_group_hydrogel", - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/h_a/cambridge_polymer_group_hydrogel_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/h_a/cambridge_polymer_group_hydrogel_send_confirmation_template.md", - "confirmation_template_exists": "true", - "contact_url": "https://www.campoly.com/contact-us/", - "dispatch_order": "3", - "dispatch_status": "ready_for_manual_dispatch", - "eml_exists": "true", - "eml_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml", - "eml_integrity_errors": "", - "eml_integrity_status": "pass", - "eml_sha256": "2e6218e69068de0c0306d900194399dc909d5d6161a91165d1fa01ffa2e5cd59", - "manual_dispatch_step": "Open data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml, confirm To=info@campoly.com and attached bundle data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip with SHA-256 bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1, send manually, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/h_a/cambridge_polymer_group_hydrogel_send_confirmation.txt.", - "matched_attachment_filename": "cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip", - "non_evidence_boundary": "This dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim.", - "primary_send_method": "request_quote_form_or_email", - "quote_url": "https://quote.campoly.com/material-testing/", - "recipient_or_form": "info@campoly.com", - "send_action_status": "ready_to_send", - "sent_bundle_sha256_to_record": "bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1", - "vendor_name": "Cambridge Polymer Group" - }, - { - "attached_bundle_verified": "true", - "bundle_exists": "true", - "bundle_sha256_actual": "6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd", - "bundle_sha256_expected": "6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd", - "bundle_sha256_match": "true", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "sigmaaldrich_media_testing", - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/h_a/sigmaaldrich_media_testing_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/h_a/sigmaaldrich_media_testing_send_confirmation_template.md", - "confirmation_template_exists": "true", - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "dispatch_order": "4", - "dispatch_status": "ready_for_manual_dispatch", - "eml_exists": "true", - "eml_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml", - "eml_integrity_errors": "", - "eml_integrity_status": "pass", - "eml_sha256": "bdd950ff0b9a5f45cdfe574dfea68fdd97f911376abdf2eb9882e44e6b03fdac", - "manual_dispatch_step": "Open data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml, confirm To=PSTechService@milliporesigma.com and attached bundle data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip with SHA-256 6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd, send manually, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/h_a/sigmaaldrich_media_testing_send_confirmation.txt.", - "matched_attachment_filename": "sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip", - "non_evidence_boundary": "This dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim.", - "primary_send_method": "service_page_or_technical_service", - "quote_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "recipient_or_form": "PSTechService@milliporesigma.com", - "send_action_status": "ready_to_send", - "sent_bundle_sha256_to_record": "6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - } - ], - "status": "h_a_rfq_dispatch_manifest_ready", - "summary": { - "blocked_rows": 0, - "bundle_sha256_match_rows": 4, - "dispatch_rows": 4, - "eml_integrity_pass_rows": 4, - "ready_for_manual_dispatch_rows": 4 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_rfq_eml_drafts.csv b/data/nhi_pedot_h_a_rfq_eml_drafts.csv deleted file mode 100644 index 4ebd0b7..0000000 --- a/data/nhi_pedot_h_a_rfq_eml_drafts.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,to_address,subject,eml_file,eml_bytes,eml_sha256,bundle_zip,bundle_sha256,bundle_attached,contact_url,quote_url,draft_status,boundary -materials_metric,Materials Metric,info@materialsmetric.com,RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Materials Metric),data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml,52234,b20d27e34c986c9b45e1cea094dffe9cb0ae102c5c43fae1c8e6ddcf81ccf265,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,true,https://materialsmetric.com/contact-us/,https://materialsmetric.com/contact-us/,ready_to_open,".eml drafts are unsent outreach convenience files. They are not send confirmations, quote replies, measurement evidence, or material suitability evidence." -the_osmolality_lab,The Osmolality Lab,info@osmolab.com,RFQ: non-GLP acellular hydrogel-coupon H-A measurements (The Osmolality Lab),data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml,52279,f3a9108c7580672eda874b87b5d3b7e8e52a8697c034b23b91c7e97e4a70149e,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,true,https://theosmolalitylab.com/contact-us/,https://theosmolalitylab.com/contact-us/,ready_to_open,".eml drafts are unsent outreach convenience files. They are not send confirmations, quote replies, measurement evidence, or material suitability evidence." -cambridge_polymer_group_hydrogel,Cambridge Polymer Group,info@campoly.com,RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Cambridge Polymer Group),data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml,52559,2e6218e69068de0c0306d900194399dc909d5d6161a91165d1fa01ffa2e5cd59,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,true,https://www.campoly.com/contact-us/,https://quote.campoly.com/material-testing/,ready_to_open,".eml drafts are unsent outreach convenience files. They are not send confirmations, quote replies, measurement evidence, or material suitability evidence." -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,PSTechService@milliporesigma.com,RFQ: non-GLP acellular hydrogel-coupon H-A measurements (MilliporeSigma Cell Culture Media Stability and Testing Services),data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml,52565,bdd950ff0b9a5f45cdfe574dfea68fdd97f911376abdf2eb9882e44e6b03fdac,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,true,https://www.sigmaaldrich.com/US/en/collections/offices,https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services,ready_to_open,".eml drafts are unsent outreach convenience files. They are not send confirmations, quote replies, measurement evidence, or material suitability evidence." diff --git a/data/nhi_pedot_h_a_rfq_eml_drafts.json b/data/nhi_pedot_h_a_rfq_eml_drafts.json deleted file mode 100644 index 0495611..0000000 --- a/data/nhi_pedot_h_a_rfq_eml_drafts.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "boundary": ".eml drafts are unsent outreach convenience files. They are not send confirmations, quote replies, measurement evidence, or material suitability evidence.", - "generated_artifacts": { - "csv": "data/nhi_pedot_h_a_rfq_eml_drafts.csv", - "draft_dir": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts", - "json": "data/nhi_pedot_h_a_rfq_eml_drafts.json", - "report": "reports/nhi_pedot_h_a_rfq_eml_drafts.md" - }, - "inputs": { - "contact_plan": "data/nhi_pedot_h_a_vendor_contact_plan.json", - "outbox": "data/nhi_pedot_h_a_rfq_outbox_manifest.json", - "rfq": "data/nhi_pedot_h_a_rfq_packet.json" - }, - "purpose": "Local .eml drafts for first-wave NHI-PEDOT H-A RFQ outreach. The drafts are not sent automatically.", - "rows": [ - { - "boundary": ".eml drafts are unsent outreach convenience files. They are not send confirmations, quote replies, measurement evidence, or material suitability evidence.", - "bundle_attached": "true", - "bundle_sha256": "6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "materials_metric", - "contact_url": "https://materialsmetric.com/contact-us/", - "draft_status": "ready_to_open", - "eml_bytes": 52234, - "eml_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml", - "eml_sha256": "b20d27e34c986c9b45e1cea094dffe9cb0ae102c5c43fae1c8e6ddcf81ccf265", - "quote_url": "https://materialsmetric.com/contact-us/", - "subject": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Materials Metric)", - "to_address": "info@materialsmetric.com", - "vendor_name": "Materials Metric" - }, - { - "boundary": ".eml drafts are unsent outreach convenience files. They are not send confirmations, quote replies, measurement evidence, or material suitability evidence.", - "bundle_attached": "true", - "bundle_sha256": "b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "the_osmolality_lab", - "contact_url": "https://theosmolalitylab.com/contact-us/", - "draft_status": "ready_to_open", - "eml_bytes": 52279, - "eml_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml", - "eml_sha256": "f3a9108c7580672eda874b87b5d3b7e8e52a8697c034b23b91c7e97e4a70149e", - "quote_url": "https://theosmolalitylab.com/contact-us/", - "subject": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (The Osmolality Lab)", - "to_address": "info@osmolab.com", - "vendor_name": "The Osmolality Lab" - }, - { - "boundary": ".eml drafts are unsent outreach convenience files. They are not send confirmations, quote replies, measurement evidence, or material suitability evidence.", - "bundle_attached": "true", - "bundle_sha256": "bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "cambridge_polymer_group_hydrogel", - "contact_url": "https://www.campoly.com/contact-us/", - "draft_status": "ready_to_open", - "eml_bytes": 52559, - "eml_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml", - "eml_sha256": "2e6218e69068de0c0306d900194399dc909d5d6161a91165d1fa01ffa2e5cd59", - "quote_url": "https://quote.campoly.com/material-testing/", - "subject": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Cambridge Polymer Group)", - "to_address": "info@campoly.com", - "vendor_name": "Cambridge Polymer Group" - }, - { - "boundary": ".eml drafts are unsent outreach convenience files. They are not send confirmations, quote replies, measurement evidence, or material suitability evidence.", - "bundle_attached": "true", - "bundle_sha256": "6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "sigmaaldrich_media_testing", - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "draft_status": "ready_to_open", - "eml_bytes": 52565, - "eml_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml", - "eml_sha256": "bdd950ff0b9a5f45cdfe574dfea68fdd97f911376abdf2eb9882e44e6b03fdac", - "quote_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "subject": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (MilliporeSigma Cell Culture Media Stability and Testing Services)", - "to_address": "PSTechService@milliporesigma.com", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - } - ], - "status": "h_a_rfq_eml_drafts_ready", - "summary": { - "draft_rows": 4, - "missing_bundle_rows": 0, - "missing_rfq_request_rows": 0, - "missing_to_address_rows": 0, - "need_attention_rows": 0, - "ready_to_open_rows": 4 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_rfq_eml_integrity_audit.csv b/data/nhi_pedot_h_a_rfq_eml_integrity_audit.csv deleted file mode 100644 index bec5452..0000000 --- a/data/nhi_pedot_h_a_rfq_eml_integrity_audit.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,audit_status,eml_file,eml_exists,to_expected,to_header,to_match,subject_expected,subject_header,subject_match,x_candidate_header,x_candidate_match,non_evidence_header,non_evidence_match,bundle_zip,bundle_exists,bundle_sha256_expected,bundle_sha256_actual,bundle_file_match,attachment_count,zip_attachment_count,matched_bundle_attachment,matched_attachment_filename,matched_attachment_sha256,body_has_boundary,body_has_bundle_sha256,errors -materials_metric,Materials Metric,pass,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml,true,info@materialsmetric.com,info@materialsmetric.com,true,RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Materials Metric),RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Materials Metric),true,materials_metric,true,true,true,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip,true,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,true,1,1,true,materials_metric_nhi_pedot_h_a_rfq_bundle.zip,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,true,true, -the_osmolality_lab,The Osmolality Lab,pass,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml,true,info@osmolab.com,info@osmolab.com,true,RFQ: non-GLP acellular hydrogel-coupon H-A measurements (The Osmolality Lab),RFQ: non-GLP acellular hydrogel-coupon H-A measurements (The Osmolality Lab),true,the_osmolality_lab,true,true,true,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip,true,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,true,1,1,true,the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,true,true, -cambridge_polymer_group_hydrogel,Cambridge Polymer Group,pass,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml,true,info@campoly.com,info@campoly.com,true,RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Cambridge Polymer Group),RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Cambridge Polymer Group),true,cambridge_polymer_group_hydrogel,true,true,true,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip,true,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,true,1,1,true,cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,true,true, -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,pass,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml,true,PSTechService@milliporesigma.com,PSTechService@milliporesigma.com,true,RFQ: non-GLP acellular hydrogel-coupon H-A measurements (MilliporeSigma Cell Culture Media Stability and Testing Services),RFQ: non-GLP acellular hydrogel-coupon H-A measurements (MilliporeSigma Cell Culture Media Stability and Testing Services),true,sigmaaldrich_media_testing,true,true,true,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip,true,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,true,1,1,true,sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,true,true, diff --git a/data/nhi_pedot_h_a_rfq_eml_integrity_audit.json b/data/nhi_pedot_h_a_rfq_eml_integrity_audit.json deleted file mode 100644 index 7553d37..0000000 --- a/data/nhi_pedot_h_a_rfq_eml_integrity_audit.json +++ /dev/null @@ -1,143 +0,0 @@ -{ - "boundary": "This audit only verifies draft-mail logistics. Passing rows are not send confirmations, quote replies, measurement evidence, provider authorization, or material suitability evidence.", - "generated_artifacts": { - "csv": "data/nhi_pedot_h_a_rfq_eml_integrity_audit.csv", - "json": "data/nhi_pedot_h_a_rfq_eml_integrity_audit.json", - "report": "reports/nhi_pedot_h_a_rfq_eml_integrity_audit.md" - }, - "inputs": { - "drafts": "data/nhi_pedot_h_a_rfq_eml_drafts.json" - }, - "purpose": "Pre-send integrity audit for NHI-PEDOT H-A RFQ .eml drafts and attached vendor bundles.", - "rows": [ - { - "attachment_count": 1, - "audit_status": "pass", - "body_has_boundary": "true", - "body_has_bundle_sha256": "true", - "bundle_exists": "true", - "bundle_file_match": "true", - "bundle_sha256_actual": "6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35", - "bundle_sha256_expected": "6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "materials_metric", - "eml_exists": "true", - "eml_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml", - "errors": "", - "matched_attachment_filename": "materials_metric_nhi_pedot_h_a_rfq_bundle.zip", - "matched_attachment_sha256": "6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35", - "matched_bundle_attachment": "true", - "non_evidence_header": "true", - "non_evidence_match": "true", - "subject_expected": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Materials Metric)", - "subject_header": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Materials Metric)", - "subject_match": "true", - "to_expected": "info@materialsmetric.com", - "to_header": "info@materialsmetric.com", - "to_match": "true", - "vendor_name": "Materials Metric", - "x_candidate_header": "materials_metric", - "x_candidate_match": "true", - "zip_attachment_count": 1 - }, - { - "attachment_count": 1, - "audit_status": "pass", - "body_has_boundary": "true", - "body_has_bundle_sha256": "true", - "bundle_exists": "true", - "bundle_file_match": "true", - "bundle_sha256_actual": "b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a", - "bundle_sha256_expected": "b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "the_osmolality_lab", - "eml_exists": "true", - "eml_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml", - "errors": "", - "matched_attachment_filename": "the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip", - "matched_attachment_sha256": "b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a", - "matched_bundle_attachment": "true", - "non_evidence_header": "true", - "non_evidence_match": "true", - "subject_expected": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (The Osmolality Lab)", - "subject_header": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (The Osmolality Lab)", - "subject_match": "true", - "to_expected": "info@osmolab.com", - "to_header": "info@osmolab.com", - "to_match": "true", - "vendor_name": "The Osmolality Lab", - "x_candidate_header": "the_osmolality_lab", - "x_candidate_match": "true", - "zip_attachment_count": 1 - }, - { - "attachment_count": 1, - "audit_status": "pass", - "body_has_boundary": "true", - "body_has_bundle_sha256": "true", - "bundle_exists": "true", - "bundle_file_match": "true", - "bundle_sha256_actual": "bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1", - "bundle_sha256_expected": "bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "cambridge_polymer_group_hydrogel", - "eml_exists": "true", - "eml_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml", - "errors": "", - "matched_attachment_filename": "cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip", - "matched_attachment_sha256": "bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1", - "matched_bundle_attachment": "true", - "non_evidence_header": "true", - "non_evidence_match": "true", - "subject_expected": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Cambridge Polymer Group)", - "subject_header": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Cambridge Polymer Group)", - "subject_match": "true", - "to_expected": "info@campoly.com", - "to_header": "info@campoly.com", - "to_match": "true", - "vendor_name": "Cambridge Polymer Group", - "x_candidate_header": "cambridge_polymer_group_hydrogel", - "x_candidate_match": "true", - "zip_attachment_count": 1 - }, - { - "attachment_count": 1, - "audit_status": "pass", - "body_has_boundary": "true", - "body_has_bundle_sha256": "true", - "bundle_exists": "true", - "bundle_file_match": "true", - "bundle_sha256_actual": "6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd", - "bundle_sha256_expected": "6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "sigmaaldrich_media_testing", - "eml_exists": "true", - "eml_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml", - "errors": "", - "matched_attachment_filename": "sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip", - "matched_attachment_sha256": "6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd", - "matched_bundle_attachment": "true", - "non_evidence_header": "true", - "non_evidence_match": "true", - "subject_expected": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (MilliporeSigma Cell Culture Media Stability and Testing Services)", - "subject_header": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (MilliporeSigma Cell Culture Media Stability and Testing Services)", - "subject_match": "true", - "to_expected": "PSTechService@milliporesigma.com", - "to_header": "PSTechService@milliporesigma.com", - "to_match": "true", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "x_candidate_header": "sigmaaldrich_media_testing", - "x_candidate_match": "true", - "zip_attachment_count": 1 - } - ], - "status": "h_a_rfq_eml_integrity_ready", - "summary": { - "attachment_mismatch_rows": 0, - "audit_rows": 4, - "fail_rows": 0, - "missing_bundle_rows": 0, - "missing_eml_rows": 0, - "pass_rows": 4 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_rfq_outbox/attachment_manifest.csv b/data/nhi_pedot_h_a_rfq_outbox/attachment_manifest.csv deleted file mode 100644 index 7d466de..0000000 --- a/data/nhi_pedot_h_a_rfq_outbox/attachment_manifest.csv +++ /dev/null @@ -1,21 +0,0 @@ -path,exists,bytes,sha256,role -reports/nhi_pedot_h_a_service_request.md,true,6071,14d7277ad1e8dd613c02fbfaad69e6f26722c482d4af1be9b562c498db79b539,"Primary lab/cooperator request: matrix, deliverables, capabilities, stop rules, and rejection rules." -data/nhi_pedot_h_a_raw_measurements_template.csv,true,19363,461bc7c75b03a261844d06078bf3cbd867ad58cead4c1145f9beb244a8c7eb3c,The long-form CSV to fill with real instrument and inspection values. -data/nhi_pedot_h_a_bundle_entry_sheet.csv,true,78006,900bf5c472a6ae2abb0b4fd5a3e9a4ed950a78b05aaf0bd42dadc853d8b0b328,Preferred compact CSV for returning one row per raw-file bundle; it expands into the source-values sheet after validation. -reports/nhi_pedot_h_a_bundle_entry_sheet.md,true,14450,9461cd24b403ac176a3893d03257bee0daa9520dcbbbf6f788c4300bd863c0b4,Human-readable instructions for filling the compact H-A bundle entry sheet. -data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv,true,55071,afbe99df61e730fdc27cd0a66bd0c9da352002227ec0a02265097f87e2c2361c,Machine-readable manifest mapping run_id/source_class bundles to consolidated source-file paths and target fields. -reports/nhi_pedot_h_a_source_unlock_pack.md,true,12281,0ee3c70dbfc6b2216ef2007a8454685bc648931d7dea83bdb98ac9b92ebc278f,Human-readable overview of required H-A raw-file bundles and source classes. -reports/nhi_pedot_h_a_sentinel_packet.md,true,3391,614e63ace4f0c46031ee8a257b76a6986afd4a29fd6b5f56e35d80058626155a,Recipe-locked H-A sentinel packet and sample handling context. -data/nhi_pedot_h_a_sentinel_sample_manifest.csv,true,13687,f9ef2f6783f34bfb840da22b79586890a7ff93b02c3ccd89f23a731c310dd6cb,"Sample-level manifest tying run_id to sample_event, article, timepoint, and readouts." -data/nhi_pedot_h_a_sample_labels.csv,true,19897,06fafd2460820f073e9947506e9981295b7f168145633857f23ee302be84a69e,"Printable/transferable label rows with sample IDs, planned container IDs, article IDs, and handling notes." -data/nhi_pedot_h_a_chain_of_custody.csv,true,9320,250f8486ecca4206273ba608706f7820cffb2b482537e4b722006dd5456fca5c,"Blank chain-of-custody transfer rows to complete during preparation, release, receipt, and return." -reports/nhi_pedot_h_a_chain_of_custody.md,true,3959,caae2d348bdcf5036bfff16762d7334ddc11f2d791e41f00388a0c5532901535,"Human-readable sample handoff instructions, blank fields, and rejection rules." -reports/nhi_pedot_h_a_sample_submission_pack.md,true,5872,c5d6ce3d89cfa7e1c338aa6864440396ab546340570e157a37553670384fc255,"Vendor-facing nonclinical sample-submission precheck, material disclosure, pre-ship questions, and shipping boundary." -reports/nhi_pedot_h_a_split_scope_plan.md,true,3145,5ab79c352248c1dc8b11903a7b6dc72c813523a11d244a15e3fcd49d78282db9,Fallback execution plan for splitting media chemistry and coupon physical/imaging readouts across vendors. -data/nhi_pedot_h_a_split_scope_plan.csv,true,6892,1d0bd6ca8844067b28bf769afb268bc0acc437616bdd76e125fbea26529b613b,"Machine-readable split-scope vendor pairings, field assignments, shared requirements, and decisions." -data/nhi_pedot_h_a_material_disclosure.csv,true,1858,9d2be57f0822e11693a02ab6a4c240c56fad5ac9379494fde7728e4f70bacb46,Machine-readable component disclosure checklist for sample submission and SDS readiness. -reports/nhi_pedot_h_a_bench_sheet.md,true,7103,4273e8690d386bbd23f800da3fe53e93b3d9bdd947a2da7b8699b9d5ac219a16,Operator-facing bench sheet with task order and stop criteria. -reports/nhi_pedot_h_a_minimum_measurement_checklist.md,true,3105,c2868593b7cea471469f85eb1d46970c6da75085177d16d8b21eb05d1f34efdf,Compact checklist of claim-critical fields and current QC hotspots. -reports/nhi_pedot_alg_lam_protocol.md,true,4980,c3b05c0991bbfe1076112c89181d32111d1564687aafa0547a39d66aa12db54f,Recipe-specific ALG-LAM-PEDOT protocol handoff. -data/nhi_pedot_recipe_lock_v0_2.json,true,3671,2cba9abebc5126ba262497584cffa8111ae72c210d509c01699bd7170f5b49bc,Machine-readable recipe lock that defines the active lead and controls. -reports/nhi_pedot_next_measurements.md,true,2586,3cb57c4162cabf07db76163ae30f0b55093d5f7fa442811ccd896c863f3b5214,Current recommended H-A measurement rows. diff --git a/data/nhi_pedot_h_a_rfq_outbox/emails/cambridge_polymer_group_hydrogel_rfq_email.txt b/data/nhi_pedot_h_a_rfq_outbox/emails/cambridge_polymer_group_hydrogel_rfq_email.txt deleted file mode 100644 index c2a8fd1..0000000 --- a/data/nhi_pedot_h_a_rfq_outbox/emails/cambridge_polymer_group_hydrogel_rfq_email.txt +++ /dev/null @@ -1,54 +0,0 @@ -To: Cambridge Polymer Group team -Source URL: https://www.campoly.com/services/analytical-testing/material-characterization-techniques/hydrogel-characterization/ -Subject: RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Cambridge Polymer Group) - -Hello Cambridge Polymer Group team, - -I am requesting a feasibility review and non-GLP R&D quote for a small acellular biomaterials measurement package. - -Study summary: -- Active material route: limina_alg_lam_pedot_lowdose_v0_2 -- Runs: 12 -- Raw measurement entries requested: 228 -- Articles: no-coating control, alginate-laminin hydrogel control, low-loading ALG-LAM-PEDOT lead, high-loading boundary comparator -- Timepoints: 0 h, 24 h, 72 h -- Required outputs: sample-level pH, osmolality, conductivity, visible precipitate, visible shedding, swelling fraction, delamination score, optical transparency fraction, raw exports/images, and chain-of-custody by run_id - -Important constraint: we need one result per provided run_id/sample_event/target_field. Pooled averages or narrative certificates alone will not satisfy the study. The compact bundle entry sheet is preferred when one raw export/report supports multiple values. - -Could you please confirm: -- Can they do simple optical transparency and delamination scoring on MEA witness coupons? -- Can they handle hydrated alginate-laminin-PEDOT:PSS coupons under culture-medium timing? -- Can they pair physical scoring with pH/osmolality/conductivity or only coupon characterization? -- Whether you can fill or accept the provided raw-measurement CSV or compact bundle-entry CSV schema without changing column names -- Minimum sample volume/coupon count requirements -- Expected turnaround time, quote range, and any sample-prep constraints - -Attached/package files to review: -- reports/nhi_pedot_h_a_service_request.md -- data/nhi_pedot_h_a_raw_measurements_template.csv -- data/nhi_pedot_h_a_bundle_entry_sheet.csv -- reports/nhi_pedot_h_a_bundle_entry_sheet.md -- data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv -- reports/nhi_pedot_h_a_source_unlock_pack.md -- reports/nhi_pedot_h_a_sentinel_packet.md -- data/nhi_pedot_h_a_sentinel_sample_manifest.csv -- data/nhi_pedot_h_a_sample_labels.csv -- data/nhi_pedot_h_a_chain_of_custody.csv -- reports/nhi_pedot_h_a_chain_of_custody.md -- reports/nhi_pedot_h_a_sample_submission_pack.md -- reports/nhi_pedot_h_a_split_scope_plan.md -- data/nhi_pedot_h_a_split_scope_plan.csv -- data/nhi_pedot_h_a_material_disclosure.csv -- reports/nhi_pedot_h_a_bench_sheet.md -- reports/nhi_pedot_h_a_minimum_measurement_checklist.md -- reports/nhi_pedot_alg_lam_protocol.md -- data/nhi_pedot_recipe_lock_v0_2.json -- reports/nhi_pedot_next_measurements.md - -This is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal QC gates. - -Thank you. - -Boundary: -RFQ emails, vendor capability replies, and quote packages are sourcing artifacts only. They do not count as material evidence until real returned measurements pass LIMINA QC. diff --git a/data/nhi_pedot_h_a_rfq_outbox/emails/materials_metric_rfq_email.txt b/data/nhi_pedot_h_a_rfq_outbox/emails/materials_metric_rfq_email.txt deleted file mode 100644 index ddae6e1..0000000 --- a/data/nhi_pedot_h_a_rfq_outbox/emails/materials_metric_rfq_email.txt +++ /dev/null @@ -1,54 +0,0 @@ -To: Materials Metric team -Source URL: https://materialsmetric.com/ -Subject: RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Materials Metric) - -Hello Materials Metric team, - -I am requesting a feasibility review and non-GLP R&D quote for a small acellular biomaterials measurement package. - -Study summary: -- Active material route: limina_alg_lam_pedot_lowdose_v0_2 -- Runs: 12 -- Raw measurement entries requested: 228 -- Articles: no-coating control, alginate-laminin hydrogel control, low-loading ALG-LAM-PEDOT lead, high-loading boundary comparator -- Timepoints: 0 h, 24 h, 72 h -- Required outputs: sample-level pH, osmolality, conductivity, visible precipitate, visible shedding, swelling fraction, delamination score, optical transparency fraction, raw exports/images, and chain-of-custody by run_id - -Important constraint: we need one result per provided run_id/sample_event/target_field. Pooled averages or narrative certificates alone will not satisfy the study. The compact bundle entry sheet is preferred when one raw export/report supports multiple values. - -Could you please confirm: -- Can they execute the entire 12-run H-A service request as a custom R&D study? -- Can they include pH, osmolality, and conductivity, or should media tests be subcontracted? -- Can they return raw exports plus chain-of-custody by run_id? -- Whether you can fill or accept the provided raw-measurement CSV or compact bundle-entry CSV schema without changing column names -- Minimum sample volume/coupon count requirements -- Expected turnaround time, quote range, and any sample-prep constraints - -Attached/package files to review: -- reports/nhi_pedot_h_a_service_request.md -- data/nhi_pedot_h_a_raw_measurements_template.csv -- data/nhi_pedot_h_a_bundle_entry_sheet.csv -- reports/nhi_pedot_h_a_bundle_entry_sheet.md -- data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv -- reports/nhi_pedot_h_a_source_unlock_pack.md -- reports/nhi_pedot_h_a_sentinel_packet.md -- data/nhi_pedot_h_a_sentinel_sample_manifest.csv -- data/nhi_pedot_h_a_sample_labels.csv -- data/nhi_pedot_h_a_chain_of_custody.csv -- reports/nhi_pedot_h_a_chain_of_custody.md -- reports/nhi_pedot_h_a_sample_submission_pack.md -- reports/nhi_pedot_h_a_split_scope_plan.md -- data/nhi_pedot_h_a_split_scope_plan.csv -- data/nhi_pedot_h_a_material_disclosure.csv -- reports/nhi_pedot_h_a_bench_sheet.md -- reports/nhi_pedot_h_a_minimum_measurement_checklist.md -- reports/nhi_pedot_alg_lam_protocol.md -- data/nhi_pedot_recipe_lock_v0_2.json -- reports/nhi_pedot_next_measurements.md - -This is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal QC gates. - -Thank you. - -Boundary: -RFQ emails, vendor capability replies, and quote packages are sourcing artifacts only. They do not count as material evidence until real returned measurements pass LIMINA QC. diff --git a/data/nhi_pedot_h_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt b/data/nhi_pedot_h_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt deleted file mode 100644 index 2442354..0000000 --- a/data/nhi_pedot_h_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt +++ /dev/null @@ -1,54 +0,0 @@ -To: MilliporeSigma Cell Culture Media Stability and Testing Services team -Source URL: https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services -Subject: RFQ: non-GLP acellular hydrogel-coupon H-A measurements (MilliporeSigma Cell Culture Media Stability and Testing Services) - -Hello MilliporeSigma Cell Culture Media Stability and Testing Services team, - -I am requesting a feasibility review and non-GLP R&D quote for a small acellular biomaterials measurement package. - -Study summary: -- Active material route: limina_alg_lam_pedot_lowdose_v0_2 -- Runs: 12 -- Raw measurement entries requested: 228 -- Articles: no-coating control, alginate-laminin hydrogel control, low-loading ALG-LAM-PEDOT lead, high-loading boundary comparator -- Timepoints: 0 h, 24 h, 72 h -- Required outputs: sample-level pH, osmolality, conductivity, visible precipitate, visible shedding, swelling fraction, delamination score, optical transparency fraction, raw exports/images, and chain-of-custody by run_id - -Important constraint: we need one result per provided run_id/sample_event/target_field. Pooled averages or narrative certificates alone will not satisfy the study. The compact bundle entry sheet is preferred when one raw export/report supports multiple values. - -Could you please confirm: -- Can conductivity be added to the report? -- Can the service handle customer-prepared hydrogel coupon soak media rather than only standard media lots? -- Can they return raw sample-level values in the LIMINA CSV schema? -- Whether you can fill or accept the provided raw-measurement CSV or compact bundle-entry CSV schema without changing column names -- Minimum sample volume/coupon count requirements -- Expected turnaround time, quote range, and any sample-prep constraints - -Attached/package files to review: -- reports/nhi_pedot_h_a_service_request.md -- data/nhi_pedot_h_a_raw_measurements_template.csv -- data/nhi_pedot_h_a_bundle_entry_sheet.csv -- reports/nhi_pedot_h_a_bundle_entry_sheet.md -- data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv -- reports/nhi_pedot_h_a_source_unlock_pack.md -- reports/nhi_pedot_h_a_sentinel_packet.md -- data/nhi_pedot_h_a_sentinel_sample_manifest.csv -- data/nhi_pedot_h_a_sample_labels.csv -- data/nhi_pedot_h_a_chain_of_custody.csv -- reports/nhi_pedot_h_a_chain_of_custody.md -- reports/nhi_pedot_h_a_sample_submission_pack.md -- reports/nhi_pedot_h_a_split_scope_plan.md -- data/nhi_pedot_h_a_split_scope_plan.csv -- data/nhi_pedot_h_a_material_disclosure.csv -- reports/nhi_pedot_h_a_bench_sheet.md -- reports/nhi_pedot_h_a_minimum_measurement_checklist.md -- reports/nhi_pedot_alg_lam_protocol.md -- data/nhi_pedot_recipe_lock_v0_2.json -- reports/nhi_pedot_next_measurements.md - -This is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal QC gates. - -Thank you. - -Boundary: -RFQ emails, vendor capability replies, and quote packages are sourcing artifacts only. They do not count as material evidence until real returned measurements pass LIMINA QC. diff --git a/data/nhi_pedot_h_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt b/data/nhi_pedot_h_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt deleted file mode 100644 index 61e58a4..0000000 --- a/data/nhi_pedot_h_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt +++ /dev/null @@ -1,54 +0,0 @@ -To: The Osmolality Lab team -Source URL: https://theosmolalitylab.com/ -Subject: RFQ: non-GLP acellular hydrogel-coupon H-A measurements (The Osmolality Lab) - -Hello The Osmolality Lab team, - -I am requesting a feasibility review and non-GLP R&D quote for a small acellular biomaterials measurement package. - -Study summary: -- Active material route: limina_alg_lam_pedot_lowdose_v0_2 -- Runs: 12 -- Raw measurement entries requested: 228 -- Articles: no-coating control, alginate-laminin hydrogel control, low-loading ALG-LAM-PEDOT lead, high-loading boundary comparator -- Timepoints: 0 h, 24 h, 72 h -- Required outputs: sample-level pH, osmolality, conductivity, visible precipitate, visible shedding, swelling fraction, delamination score, optical transparency fraction, raw exports/images, and chain-of-custody by run_id - -Important constraint: we need one result per provided run_id/sample_event/target_field. Pooled averages or narrative certificates alone will not satisfy the study. The compact bundle entry sheet is preferred when one raw export/report supports multiple values. - -Could you please confirm: -- Can they run matched pre/post aliquots from 37 C acellular neural-medium soaks? -- Can they preserve one result per LIMINA run_id rather than batch averages? -- Can they accept PEDOT:PSS/alginate/laminin soak media as nonclinical R&D samples? -- Whether you can fill or accept the provided raw-measurement CSV or compact bundle-entry CSV schema without changing column names -- Minimum sample volume/coupon count requirements -- Expected turnaround time, quote range, and any sample-prep constraints - -Attached/package files to review: -- reports/nhi_pedot_h_a_service_request.md -- data/nhi_pedot_h_a_raw_measurements_template.csv -- data/nhi_pedot_h_a_bundle_entry_sheet.csv -- reports/nhi_pedot_h_a_bundle_entry_sheet.md -- data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv -- reports/nhi_pedot_h_a_source_unlock_pack.md -- reports/nhi_pedot_h_a_sentinel_packet.md -- data/nhi_pedot_h_a_sentinel_sample_manifest.csv -- data/nhi_pedot_h_a_sample_labels.csv -- data/nhi_pedot_h_a_chain_of_custody.csv -- reports/nhi_pedot_h_a_chain_of_custody.md -- reports/nhi_pedot_h_a_sample_submission_pack.md -- reports/nhi_pedot_h_a_split_scope_plan.md -- data/nhi_pedot_h_a_split_scope_plan.csv -- data/nhi_pedot_h_a_material_disclosure.csv -- reports/nhi_pedot_h_a_bench_sheet.md -- reports/nhi_pedot_h_a_minimum_measurement_checklist.md -- reports/nhi_pedot_alg_lam_protocol.md -- data/nhi_pedot_recipe_lock_v0_2.json -- reports/nhi_pedot_next_measurements.md - -This is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal QC gates. - -Thank you. - -Boundary: -RFQ emails, vendor capability replies, and quote packages are sourcing artifacts only. They do not count as material evidence until real returned measurements pass LIMINA QC. diff --git a/data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml b/data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml deleted file mode 100644 index a8fd3d5..0000000 --- a/data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml +++ /dev/null @@ -1,126 +0,0 @@ -To: info@campoly.com -Subject: RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Cambridge Polymer Group) -X-LIMINA-Candidate-ID: cambridge_polymer_group_hydrogel -X-LIMINA-Non-Evidence: true -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary="===============3708708170734746000==" - ---===============3708708170734746000== -Content-Type: text/plain; charset="utf-8" -Content-Transfer-Encoding: 7bit - -Hello Cambridge Polymer Group team, - -I am requesting a feasibility review and non-GLP R&D quote for a small acellular biomaterials measurement package. - -Study summary: -- Active material route: limina_alg_lam_pedot_lowdose_v0_2 -- Runs: 12 -- Raw measurement entries requested: 228 -- Articles: no-coating control, alginate-laminin hydrogel control, low-loading ALG-LAM-PEDOT lead, high-loading boundary comparator -- Timepoints: 0 h, 24 h, 72 h -- Required outputs: sample-level pH, osmolality, conductivity, visible precipitate, visible shedding, swelling fraction, delamination score, optical transparency fraction, raw exports/images, and chain-of-custody by run_id - -Important constraint: we need one result per provided run_id/sample_event/target_field. Pooled averages or narrative certificates alone will not satisfy the study. The compact bundle entry sheet is preferred when one raw export/report supports multiple values. - -Could you please confirm: -- Can they do simple optical transparency and delamination scoring on MEA witness coupons? -- Can they handle hydrated alginate-laminin-PEDOT:PSS coupons under culture-medium timing? -- Can they pair physical scoring with pH/osmolality/conductivity or only coupon characterization? -- Whether you can fill or accept the provided raw-measurement CSV or compact bundle-entry CSV schema without changing column names -- Minimum sample volume/coupon count requirements -- Expected turnaround time, quote range, and any sample-prep constraints - -Attached/package files to review: -- reports/nhi_pedot_h_a_service_request.md -- data/nhi_pedot_h_a_raw_measurements_template.csv -- data/nhi_pedot_h_a_bundle_entry_sheet.csv -- reports/nhi_pedot_h_a_bundle_entry_sheet.md -- data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv -- reports/nhi_pedot_h_a_source_unlock_pack.md -- reports/nhi_pedot_h_a_sentinel_packet.md -- data/nhi_pedot_h_a_sentinel_sample_manifest.csv -- data/nhi_pedot_h_a_sample_labels.csv -- data/nhi_pedot_h_a_chain_of_custody.csv -- reports/nhi_pedot_h_a_chain_of_custody.md -- reports/nhi_pedot_h_a_sample_submission_pack.md -- reports/nhi_pedot_h_a_split_scope_plan.md -- data/nhi_pedot_h_a_split_scope_plan.csv -- data/nhi_pedot_h_a_material_disclosure.csv -- reports/nhi_pedot_h_a_bench_sheet.md -- reports/nhi_pedot_h_a_minimum_measurement_checklist.md -- reports/nhi_pedot_alg_lam_protocol.md -- data/nhi_pedot_recipe_lock_v0_2.json -- reports/nhi_pedot_next_measurements.md - -This is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal QC gates. - -Thank you. - ---- -LIMINA candidate_id: cambridge_polymer_group_hydrogel -Vendor source URL: https://www.campoly.com/services/analytical-testing/material-characterization-techniques/hydrogel-characterization/ -Bundle zip attached: data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip -Bundle SHA-256: bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1 -Official contact URL: https://www.campoly.com/contact-us/ - -Boundary: -.eml drafts are unsent outreach convenience files. They are not send confirmations, quote replies, measurement evidence, or material suitability evidence. - ---===============3708708170734746000== -Content-Type: application/zip -Content-Transfer-Encoding: base64 -Content-Disposition: attachment; filename="cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip" -MIME-Version: 1.0 - -UEsDBBQAAAAIAAAAIVzwlWXhQwUAAOgLAAA0AAAAZW1haWwvY2FtYnJpZGdlX3BvbHltZXJfZ3JvdXBfaHlkcm9nZWxfcmZxX2VtYWlsLnR4dIVW224bNxB911fMU9ECkjY1CrRQHwrXSZMAduvYbvO4oLgjLWNeNiRXyvbre4Yr2ZItu4Avuswsz5w5c4Z3YUEXyi2jadZM18EOjiO9j6HvKLNyk9vQR830983lgtqcu7Soqu12O9fKdYie6+CqxHFjNKdKeWWHbLSys8wpG7+unMocDT7QrYpKy5t/VTbBI0K33nztkdcOTQxrfh5UTW775RfWeUE3f3xakEfe+8trUpqt7a2K9JgKyMHTh9k5OVapj+zY50Tfv1DeD5PJBzwkvFr+dDL5SMpRZMEpBZGiFR5vlsaaPOCLjeEtKd88YLv57i197UNmWoWI8OSUtQeIlybsSUmHUKlT+l6teT6Z3Oa+GSj1zqk4LCYzOtfZbJj2eQSAmRdkjTNe1cqua6tc3XETcm3DtgmJ682b+gypN71PC/qxvFTbowPxGw2nfXXcLOjs7Bc5LqKJlpMQDmJVKVwHhAc7JRyHUzPPcKbxxj/04DEEGGY2qEbyzi/fzy7Pr2bX797+dUeWVTOl1qzbh4Bl6H2DQpHuOvQ/hwgMd8ZxFwxauKA31E7p7Cf5+/MZtVIKIJvIDYGIrpeYBEFaYOINgHQfphSSC1ZJl6YCrOmFw/JuY9A/y9RF1qYzGbU8fphabgTWlNIWLROAK9Ek1DilhkvNRZuUdIhIDF1RPOWofAJ+9no4SIkgnb91IeZUGYf+pmmRC6Ru/CysZrpPOaDdS6ip97VpoDkn8QotAvCEB4OGBW2ZPEvJntGy1FtIBmrtYtiYBp+P2dVIRA0efK6yimvO9cqwbeYQeLAIVBuOAoSgT68iGBdxaUbXVygFo4seyylbA+X6kEFuNmk1UG5BkIhzTnd4WRqmMy3RQFAnehqEQM5k -ktC74ihN2rbsR9gPZFSR5R9E3hVuyKEeA+C0URZqxBRchN42NISe8LFKcpxfmehkIC6UFzADNYGSkYJP90GYftY06SleXr07R4XZc0o0ukf67fDRrSpVibrBSfNM96OiF9e3t/t0Ag/oiEYpmLGZ48b0jrJM6fro0Z0yaFw7pIJ4jwlgWki3elRudShcaVfwdtidRk/NUk743DIOiIU1jdNW0kGxIa25y6V/j3pR29mhHVzc/iOhx02djU2V75Ju2amCElMnx/v1aAy2dx5KcpwA4QrcOJQ96pA28i1Xe8yY9VwMx+wMGhnvvnWweCACa9Cj2IGQhtkafRQNXfM4NcoP+0mHvLqD+UiTyXnOChibauekUj20nMPOpkU4o+xS5Vuz88u2VvVug9U7J5y7BqGNyupJHCirD7dLnRlYoIm5TpvTKSONdaGxLrOxiz2N5ET4S2BSWc11723Q9/tEp7xZSQmvHXKcKWyNh7xEjscCYFsCX8Ozj9s50BMopzLGQKuWbNPLYcUq67Cqd1b5am3Pgl+rbDw/9UtnUsII/T8XHcayxsB2XKPx/mUynga+WN1+qdeNSdoG0dbrCoGxtYfSOB3mxjE8lCu4YX1vTXox8eEmEUMOmOuT5ZWtia6JduSSMf+Sgj/5OM/f8tG8yPMmdy2WA36wCGwo634ol6akIzN8dT2nz0ww8LJ6jq5eDxeg1GNt7+5g2irjsHGDK/6GvdeE+Kusy+KWZWfCIzQr2e/x+BJU7GFV1mofCT7CsCBLny5oLYtwLnCVvxdDxevfd1eVxQTXUYIbGot1Pp4Iv+3Uw7UQ7d9v+tHEdp6USmFlAEtJsnPhtqlgLVu17DSpfPRKlR6rZjFuj+s4vjC4BbJcBVlcE/iPiuoUltrlx6uPf56jlvnkP1BLAwQUAAAACAAAACFcJ9wvXyAIAAAoEAAAIAAAAG1hbmlmZXN0L2F0dGFjaG1lbnRfbWFuaWZlc3QuY3N2fVfJ -kttGFrw7wv+A0BmUal9mThppZjwRdlgzcvjKqOVVExZIcACwpf57ZxXYi6RuHzoaAAm+l2/JzDqH9dDTl2FZlz7erbT0yyEIbfp5GunHH2Y6T/O6vDkdhv2Z8rTuD/uwX2i+HRLtZ/r/hZb19TH363yh3jDLe66yFdaGzMnlbLhMTJRYQsjGkynCWCGSciKrUHgkH7XBvXc5WlxL37/6MA/HMN91Y4hv0jSdaQ7rNHfXaH/rjmGdhy99l2kcbvFhHJF2l8I5xGEc1qHeLet07uZL+yScMl7+g9I6TKft4etXP/6Qwxq+ATaHz/sjheUy05FO67Jf6Xgew0qv03K7YeReGtkrw2OyyerIZBCGO6UyA3wXi0wxOwP82iUKWSXOlS4+UhRKBZcsRZn63w7UjdPpZlem+di9+/h7t05dGcax+zysB6Qbxm44LQhZE2kQcHu+YrgNI0rx+lkM8XLKI+3x1ny3Xw5E62Py1jFmes9YLDopK4IJJEKMLKqSdZDkg6LsNQtAwnQIhcWsRA45OS0znkUpXP9hpkLzTLlL0/Ec0toAlNaj9TKfhtNNN52om6fPHbrXoaw7YKNuy+3v3bB29OUMUAtQAfiKaizTZU6026B1LfEulBWv49EAoAD++qWJfAb0/VBypTTrPTqWslBRoWGJWxOk8zIzKbSNRCyH4LVgOcUYiynWuaQk6oRWYoCj6n+6HMNph77kOm/X3rRuLA157V3FXaHcV+Wn3dsr5K5ltqF6vm0b/P3lNE7p0z0ehBxK3bCHDmpddywULI7PxXCykpWchE2ZBWNiZsnnIAGFCSEsJRZwYTTztjhLIgmJQvS/hHQYTvSI5z4SLs7nimO+nPZDfnNNK41hWa5YljqqCbin1hZMwbV1rcVnEMrS5nUN8w16WAYa8/Ji577GjbJ9euycEI73jEgmy3IsyUQhuKECcDY4pZVxOiaj0EmebabgZMzRu5B89IIiyuLKt52bbit70edu -Ko1ShjrHtVPfTOkGYkuva/jpL1Cgv6jn2AA8GT4pPe8NV2QwdaQKS8owyYlcqIOHMTTemVBAhsKXbKIu2pDUGYuqnQGzaB36/1EazrSrFbrmeh+v2+JtqQZwFXUHXLdJRItW+vLSuN0nvL31zKRxaZzti0e5i7FOFqliiU5hVYQAVyM950EUpXgZmUgypex8ETJYyZPkDOSfYv/qYwuwG+kW6T6M2Xr3OGR1nq5p4EunFYw9r0Maqe/W4Yh6D+1ZY/GQp8v6En1ffwS6QePylLKdtz0zBXUWqL8TrDALsvPKambw33HhdbSFGweyNlI6bYEEk8dEJKfQJWq6dFrrDL1Z53BayiY9XQtXuW7ZuPvah/+8h/RAPE6nxpN4E/Wet8dXfNcbAHto2mlaX1SndMBP7KeyTxfIW757ROilYL3QrDjlDKUUlGBGWBkD0FpW+UywVEoUEcqrpSUVIcMQg5w1AJcUdOpf/QPZfupamN1Udtcw3T3aDWNb/opwpS5f5pr0GUsR5sbQPXo0QkGpXiQazg+dq8JQgT2/QN9he9ggr32fAnQqS+ViTkUzaWIpaJY1IlspVc4Q2YJrz0nxwph0LrCktRSecS11/+obEniyK1MpX7F538VWho23XnQPL/DANoHLJR6HZcELXzOadlb0SWMxCGrqUwmWsCvShWCcUQri5E2IIDapmLaMuLZBWgAxFqBUSUIDzO+EtOddCWkbmVPC7AwJlmGLv3uMX3uTDpQ+9dU20TzgS3lY0jhVk9PXj3fLYTh3zVtt+BuZ4FnTgTiBDeHG/gLzGaZrvyQYtX2d98fWYZd6HcAVCYIklEscPiJy7qHBNpqcrEiO4zMZOM/VHnFNsqSsfMbEwiNG3/8rjGNEEeEYKF1aE2qUJrot9FrTPFIeAkaXgLsqbcWQpsu5fvtwt9TivIGrvGmsc2WRLqR5gqzdtnK+YKe+Q/ewdKA/0fMMj2BScHCAzNgo4ACt8RBoYVyE -+ib4CGs4lDlbQ1xoSDccoxY+whuDH7+T4hZx1yJeUwPLD3XR0Js2lR3EaLg5NYsKq3sIVcKuWnZ9WPFnyEadgZf45H4g9o8D8YQ0nXa9z6A/UCEoUxDnxku4iRBNUEkoLBgoFbYxeWm98rCQZK1wkDnL0LGozPc+o1IHrCEs7WPQrg3oiMZtTd1288kMVzAf339sjcOvLS/rcKRTOnxjAC1nMOxgQ3LGsyydiTELWSCxcEqFNJRARpk9WgRFCLC7NuKr8BAVnOA+cNP/ej2G3G9di3S1qY3217B86qY5gyfbAtUDSJqHVuIX8z1ib4+X49NDx/6hGk8Wiek+CQiuRqYWxwpluTK+OE2RZ1xZlgzS1sxpbm3mBl5dcIKHzxzCTSWX/t3VlT5WGw4IxmY47mqejT820tu25wKHjz799113mNbljL9nYYTxBop73J/naZ3SND5kjTMd6xO8gU7Mew5fTZxhFTiW3nPHsxQca8+1gY+zOGsEplF+6bMxIXAsv1bl3vvUo89QhtS9/fnfu5/f/rL78M/3v/7W3Qe9Z/Lvd3hu7++bu7xle/H6jwUqtZXVwEqLFIOHgsekuTARqymUt9opyGVwSDAQWErAzsBDJ8brXGTLLSs6Kh+fsdJbxK5GxGkgYNKp1KltRwM0AGfWDhKZrxyFg8E0Pl/aE+zbV+fRh9oKuK8eJ01tk+I4P4cIR4MTNIhGBrgWnNtwUsABRxdbglIw0rz5M5NwoCkyasFV/+7aYmQ8HREgX93lk5BN85Hcn1BLAwQUAAAACAAAACFcDIy/RTgJAAC3FwAANAAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9zZXJ2aWNlX3JlcXVlc3QubWS9WG1v2zgS/u5fQaC4L4VkJ+52t0ivB6RODy2w3e0mufuq0BRtcUORWpKy4yI//p6hKFl2nN52cTigsV1xZjjv84xesF8+fsq/fLj69ZZ9zC/Z -teQ6/yy5b52spQnsRrqNEhIHf7TSh8nktlKeNVzcy8Dwa+tUCNKwlXWMGyYfgnSGa6b5MmPCanxbx4N1GQPFUhpRMdvI+GjKPgXmOsEeP8DGhdS61dxFbeq9Ip5Zo3dvmYq3GhsYZ75VgS+VVmHHhOaqnk4mL1/eBB5af/HyJbuDyHJXBFukSwq6oxhLvQPDpQhqI5ngplQlDzKyalUrwwuu14XmddHI0oZC221pvSw2Z8WcOK9bEy86n9N/+JZBpFPS90bJkk7n8zc4XrTOkUN/W0T5VcELZQK/lwWMKaKmd2+ZdM46/+78zau3bMudUWbt381/mExevOhDIEv2meOah8kkZ5cuKKGlv2B3xhbC8gAOshC/oYvVdxnu2pXOrqUmSxREjs80Li5MpfYW4o+XkEKnouJaS7OWI5JKrauBBircqlo2FrZAiTNWZWz+A33+NGcVTq9lo5WAV3F6PpihHKxY8KaLHjwWbRli7y2/nykj2iXssYbZFfv84ZJtVTDSe6RV21jjKaFI1oZrcqzUUsCqUuZbZUq7Hch4YK9+Yosprmg+jnMK6Yi0lcjbkvEVEpdJjvQMvUHE8auvreYxxb6Tc2FN2VJq/QXe9w5ODisldUlWIuhOWi9QOEzVfA3PI/lXKyUUCQyW4QwifSVLCkvGShljHd2XMb+FZ+NzujQ4bnzDkY1iR5f9bEOu5UZq1ji7kYYb1DvVcy1L1dYZ6/OHSnRNVZPtnd17OWMpuUjfRjZB4czb1gnZ3Uo2INhfo0oz7olEsApHpNk0psaV1KhEx5eaMuJx/H/2iPwQYIraPbJb7tboQBz5v+IisEeQ53nODj7xbGHrRksqGm3NOodZNXOo1HFAFjf/JvFaU6nG076OK47GgPxC3WU9S1nwkA09rMC/6JSMKeODa0liocosGV+slE4eQJ1D5LZCt3Tw34Yj1rj3Dj2Hz0b1hc4AHQ7aVBEkzEAVTYXf3B0ZZo3Mnd3m0Cjv -Ls3pUrZs4VsZbdlRasBdj+yLkys0GbAJCCDPORlaZ9DSQ3XBwKhJIINAhNGRN8bSYBZ5vWn07t2OnEKGCRUkC5VMoiC7U4NFRsqkmOGdhOdMRuKV8GUnAq1xaR9morex6HiLaEsRbdl74oYT1axLRIaWpWLHEK0Pttzhug90e3c8o0pgNW88VU00tDVduKKU+JPaI4TA+k9XWUwxkU6GIs1ga2psWaoTJFjo/NHgjLuudaGDieo5m6OuhV0VSde9TZ+GXMJIbazD/CPJVPzIoUdGw6b5iDQc2lNUe2g42UCO4kIr9Q3qlfQZpKFdQE+P8Y54obNWXbQMr+P8QpKgP+AIzhxlcrSkH/KYJ8siCZx1el/JjeoM13ZNRWWQeu3SBxXa+Bji+rZy3ENGjSZ6jSpqGAHkefgfZUB1h7qIeGJfchjfWi2T04EQtIqTEtohSiroXdQcgYnKHoah7JXGWFtP65JMOZhU/6RGHDtS/EX+t1sKw5X0wqkmXnrQgS5GLehuHBh4kTxX3xSixj2ADviIzw7id4IRzTWoJ6zp6QlmgjIDmaAZWWK00lOqDirXcQ9E/zchMY5mRxEHyyDmjKrm/GC6pNETObvIwoth4ECHaaHevkQOKCnbniFFdBc/n+cYSQ+7/hmRd/yWpgecMZ5lxcrxmOTH6ibig8HHeuIkb6ijPkAY/MX9+ihEe7InbEN4jhj7AB2zNh+7m45uAELpjxPnE0k9ST/Vn9rdPwBxT9SxjOqnEET+Cn+jNBiDrhEtVe2ik7BRXmEcF+gdQjXA36MkS2dsdIaSda2kYK649vJQRg9XngioOYEF0n4ANMdiqD5vgm3YdZvAQoLCsTjjVzympQNhjwMA+P5ppY4L9RkITT6ihoRO0CXijDqGkCwRUH2lX+g82AlCRCyEoJT3Uf2lFLz1cpATh69TnvApzmxNPgbQUGWnybOQHXd5uwokCCvASIOeI6c9qT9ecaX9/vZuz8P4kg4x -CmlCxesJVZuVxZiVSYVvbAZUWtMf2TYQRBDUOKLkiy83N4zYcB6/fEVtEvlaOgWd/3E2PT9jG99rPR5fs4MGluhf/y0bpcCQypAzPzvEuPTsdRwJB0X+97Ppm7PUS//bKkNJOJ2fNmpJjuGAUV3cCPiBPAAPBzYIZtzvCWMU1Ir21RiEt6y0cW1FQ6st4SWLFXcxTJrf03xO6Zyzq46cYAaW4j6TEhjtBnaDlh49g3qzDrg0NtCM3b4HbGnNvbFbAv87g2aP2sjQYh6G0UlbJ7K4pCmPdHH30vnp/l5OuJtsEs6OVq60uxCW6YDlW/oCUjrAjBFSzRKiipNlFiJeL+JKM7rG1nCQsXkquz4z4K59pXRPImJx/UQmUHmMfyIUfZpFJZqRh2vH1g0lEF8zIG4nXibEdw0xjLwNlXXqq4wr51Jbce/B+H5GAVxZjdLI26ZbYW465HuZ9pIYyiM0P4B5LO2zfwGB+Rn/2rrZlRURyvjZAqDoYTY/m/+Yn73O569mBLgJbJIZOdHghyzz5S5HaHOUtstBgnILs+/eJqBgdAdNvacw++IkcH0GjkNUgvF/VtBfQv3PXNOBu4vnUN6zmhHig8iEcltD8e3Jam7USvpntP8mS68qj6+XCkfviv5fAcddRXdvr0V88/bNkO4Jpr9jLhETjZ4aMA2FKO4JUZ9m7cnGOT6wJGFUG5fxbUda6neTyXVrCId6GqQ13Fb69EKEwOmQBXEFPV7X6R0k9cUSq4K4pwS2kWtr3T26v5AXk8nd3d2S+2rS7FC+5hXroLqfYTSU0hXfTkR6Mzdtdt/FfCK1TkiIy/OfENCpAgnAJ932/j+qnycaqZrqpTiZ2928OWVHLd3hMD3RaU7x/SGOmAZnk6GALSLk8kGFp2r2TftYUyoPI/VJZ7fAfEV6mTtq8UX3vhgcyJKYnO/T5E5vuIf8Tds8ev9+6MWxMGW31QiqwmIs8zRJql1jKa0jFgxKs98WOYAp -N90rbhcxEfc0Qi4zmiP0scjiC6r9OEnv6irZb4ekMIv2TCf/AVBLAwQUAAAACAAAACFcFSN0j7gEAACjSwAAPAAAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9yYXdfbWVhc3VyZW1lbnRzX3RlbXBsYXRlLmNzdr2YUWvbMBSF3wf7Jw7dymDPYxt0L+vY9m5UW03EZMvYckv36ycnHY1Lje6596qlaYMbfVdyk/PBGee+dm01mW7wtrZ3to9VNOPexvrWWd9Wd8bPtpp7F6vOmmkebVubWIXBjiaGsU7fZr+scv0Ux7lLT4/AMI+NTQxvqz5EO7198/3q24+vX65/7652n3Z9qJtgouv3dcKm530cg9/9fL97d0iDomlNNFX6YavTF2t9Z1s3d3VvOg2MD1FCibY73rR0C+umqj5L9rP8aR7C8X8n2JL1tknXW1t36U6PzngJzZvO9a5f3hKDHaJL2Nb2k4sPEuq0bMy7v+mF4cg20wJv6mEMMTSBs+W0zbgcdriqjg/m8jB1wRt/PGB3PXUXf/ZsVrrazk10dyfar4umg1m3rucf6rRY40gnksaBhsPD5Brj6xQuQ3qrpndAdecmd5Oyahht4wYXjxFxEx7fB1r06WDbNi1TRE/31vvl5bejOV2pnp4p8Ft7/ACePidTE8Z0Xx5/KdDD8plLl+Jo0kUz2r55EJ/k8oMw7FcAQdq/xGHE/Qojy/tnOxIE/ookT/wVTi/yV1j1zF/oktA/Xy+OyHOYOCUXGD/3n1arnEop+RdUwejP4SXZv8VWC/+tAUrpv4UvEv8fL4XxvwII4v8lDiP+VxhZ/D/bkSD+VyR5/K9wevG/wqrH/0KXxP/5enFQnsPEUbnA+PH/tFrlVErxv6AKxn8OL4n/LbZa/G8NUIr/Lbwg/g8P7Rj21tf/wwLueqiErABA0KYBqByKAuh7yjqAiqJKgMpDLUDlMjWQwec9QAQQI5NII6Zm -hpZTAWm5zsEgGWRYYhsI+HkdMOCgDxgTICEw+IWMQGyEyAiRE6BWiAySWgFthsgsDS+I2iEyuIAZaA0RlaAQoYyWKIeT2AFuimgwpZMVFYS8L+LQFRWh0hlxBhSSBLE3IiNEkoC6IzJIKgm0PyKzNCQh6pDI4AKSoPVIVIJCkDK6pBxOIgm4T6LBlE5WVBLyVolDV5SESrPEGSCQhLemrfuDS8nRhphi9z49zHKb6e0SnZHVBIza9ASdRBEFsq+sKegwqiroRNQVdDJTFtkBeVuQEcRIJfOIqZrl5YRBBGgdD1JGliZ2hmhCXhosPGgN1gxIG6wJxbxB7KAAiNAcUA8FoOTuQLsogKZjD1EfBaCL+IPWSdEZKhHL6KXyQJlD4G6KilM7X2GNyBsqHl9VJCotFW9EMZUQmyoAIlQJ1FYBKLlK0MYKoOmoRNRaAegiKqE1V3SGStAy2qs8UKYSuMGi4tTOV1gl8h6Lx1dViUqXxRshUElzMN7bfm/Pph7c/oB3WigpKxUmcNMsKI+iF3yPWcegSKpoUC5qG5TPVA5xTN47IIgYzSCVmNBEak5DEEb3wJCQiEyxlRTm5NUkGAL6STAJkpRgTmFTEVs0GKXiKqhRg4FatkLbNZip6StR0wYPKGgsWuuGkhQjnNHAUbEa1oLbOAyqfOJXEZe8n5NMKaAula5OMqiwvIi9HYxSkRfU4cFALXmhfR7M1JSXqNuDBxSUF63nQ0mKQc7o/KhYDXnB/R8GVT7xq8hL3ghKphSQl0o7KBmEyesfUEsDBBQAAAAIAAAAIVw8oJM42QsAALYwAQA1AAAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX2J1bmRsZV9lbnRyeV9zaGVldC5jc3btnV1zozgWhu+3av8DlWvczlen00XtxUzPbHVXzUxPTc/uLSWDEqsGA4tw0p5fv0d8BcdgCSERf5yuvoiNkAS855XMA0eLdRxG1Geh -S9I02rg8WWcB9R9YRN0VJXyd0dAnuZukNCN5kvnwnzzSOHdZzPNsvYI/xd5xklPuPpFoTf2Q5LT6c0VDtl75UZJvfxGTVV0kp6uibmjJD5pSxA+SdZrEou7yOxrRIM+SELZC/RkjUbUhIisWs1j0LKVpzqBESGPO8k1VgIviEfub5CwpihEuygV+miV5EiR1RelnHyrKX2qGLx5Y3HxM+CqJSAQV1+X81Ve+8v963C1Q7Pdqc5DE4TrI2dNWDd/8YNVVoKqhtfmJcbaAi5VmNGApy19Oc72FL2kYsrhukD/TKIKP/kNGAnHw9QWixTkrzwcPkqyuJxGnBVrNMxLzlGQ0DjYvO6cZSzJxWrN1cV1IBqVL8eRsRdOEgSwqAQUR4dzNSfZIczgUGoXNp/pYo/Uq5nX58ssseeZtYWX0f2sGCmzLsv5SFNj6nn5nPOcuiaLkGUTbVjIUzTagA1AZd1eMc3FSGCiPvwi7PMh//uPz7IfZj//57adffp5dXl65LqiZzFuV8fkCTssSugEnLuTzpU/mv33+8vvPP339cyZ2DpbQBRo/Uj9eMpBkmOT+kj0uIQqIuDizP65ml0uxH+g8J6J+H/YRCn7wgzXPk3BT1f4u4E9uz78rV6NVV1bMhTLl8cEp6emVOCXUewltbzeoixI7Ee/tmMKN+0AiTt2LH0WbDuiX5q7zROMwyZwMJJXBR/iz6MkseZhVPXE+ffvvO2fu/JLkzqfkB9dZJHkeUSciCxo5bAUW1b1fdV5h11+LXtQ7pkuwAteJ6vr27HtR9RlESl3yTCCOQU2L0kgLpbWd09txTm/QKfLaEq+k6178m0WRk8SR6BSJnLq9eUafGAX1O0U13HXSde7kS+pk5Nkpa3JETQ7JnXaAiDKxw2nuFMPAvzaUOyQOHYh0hwcZS3M+L7a0ZQMCbh+1X1y9d+nm3cWrKLruiqKHdRSNCp4tt4RIohlYgFBMMRKI67kvfK6thY+8X1tF -pIODJxkcrkslXnxqFXCKdp2yXdcBT2eLrPB7kPhjIe+Q8TQim1L5hbbjAC5M6IhPhcGPV/rWHKHrOIYc6ClEwo2VSEiXG16M23C+Uxo0w7q4Ws9J9lfZnT3BcGMtGAorFoLY6Y+7Owvx9s4/vI75j9cz8+ks2jlV8vqmRJ7KlOi2jI0v4iidNFpzpzpOpzlOEWvVgFacjBkBRcP14tX4JsaiL9sbyrBt7bhiQZZAzemmtdOfMOeawZwGps9hWbWzVXQu5r20+JtWVfbvVvewEVDdkA0LmOjqnIJh3FaGsb1vebVgOga/msCp40XyfU6/w+UWZglzoGrA4dqO0volU+pAXNBKQ2n4MP2gKjpUjqWv++O+9FX6O82T/E6rhtKvdWNVEMyrgOwcJG0EiPYRnILk39sZIz8f0hyxrzewYedmhPfqZkQ93/tVOsXL21b/VvO93gM5Ba3edd4fWLMoNHJ/oKxJzJ7W0EVWuF/xG3SPB9u7L9B0AjrUPkZ399ac139Tztu6ueep3pzb3qvvlqAnuyXoqd4SvG3uTIgjre9McIil+jaD7AbDH2JyQ6svYNfq7JX3F4KEiOBqQnXx0orY99vX3x3odZyzB9jFdRYkD5ZNVfvb/VY3FCZBEYvFQbrtJooq2sdi+N7GxBfrFJzkg5VRr7kDHMJQAOe0PH8rwvlb/zBU6ZnbdwN79/uralAsf4m9+iVVjo6g1SbcRDvzpuWXH2t2hsCd7p6CYO+tCLZNg+CcsjhYL4oTDFfube6G7+uR2wWvtr9rhFnvV2oQrGtBG3m+nquVM1MrWtzq3Sno8KMlRHN9+yaMBpqVy1IUQkqDlMZkIF1dmjX0On4mxzTKEYSgBkFNXzB0gv/xwfAWpEY5HpDVIKtBVqPvGdcTs5raVKaDNcpWgrjmXHDNleFHGpqRchpeo6xoJDYnQWyubi0Rm1q3EyEbZd0itEFog9DGkpkYflSh9pA3oDbqfoLc5rg12/nI -wnjNTghulLWK6OawpdjJvA2gmw/Xb4JuoFm5LkUhRDeIbowGkmEWX8fP5OhGOYIQ3SC66QuGzgcCxgfDW6Ab5XhAdIPoBtGNtmdcX06MbmpTmQ7dKFsJoptzQTfXhh9yaEbKadCNsqIR3ZwEurnuTCNgAN3Uup0I3SjrFtENohtEN5bMxPBjC7WHvAG6UfcTRDfHrdnOZxfGa3ZCdKOsVUQ3hy3FTvItQTfLTZgljzRqRiCYFcMIFdlJiLa/NbdvMyZAQz5jPFoGMHeFIDGKZUaECUIYhDB9ih/wOruC4k2zlxGiR9KCpAVJi74x3BskLQrOYQawjPALxClng1MGPHigMuaNpygjZIvM5CSYyU3nS/0SZqIgTgOoZIQ4EYwgGEEwYskxBjwUoGAUhnnIGNNA+nHcwhywioCCMA1BjxGCRMRx2HrrJMQjEIeFhGKS5vrlhwnEkHIYD5gBeFolTibDHNJIQdCBoKNP9ANeAVcR/ZSkQ6p7ZB3IOpB16HvD3USsw2wisFGWgbjjXHDHjSHEbzDh1yjlIvE4DeLR+S78COJhMLHXKH0i9EDogdDDkmkYQveWEniN8w3kHketzdsBeflVtDkB+JBqEtHHYUtOZ9n7fYKwkJBL0ly//jABF6IP4wFjiE1bSbw1KlIQfSD66BP9gFeoVUQ/JfqQ6h7RB6IPRB/63mBy3XoV87CPPqSWgejjXNDHrSHobzBh1ijlIvo4CfRxq7MavYo+LaMPqT4RfSD6QPRhyTQMYXxLCbDG+Qaij+PW5oC89iranAB9SDWJ6OOwJaeznHxESdhqLEqe2znPzKe2krXn9hfA9FZIP0zHzPsBhFopVIzij5HBggAEAUif7ge8Kq2ke9MEZKT0kYEgA0EGom8PJteDV/IPMxBkpGsgBjkXDPJ+wAMAauPfeA4yUrxIQk6ChLzXWeVdSaIGUMhIiSIMQRiCMMSSbwwA+0p2YZiGjLUO5CHHLc8BeeSV5GkI -iIyUJSKRw1adzjLt+yVhIRWWtMF9IsR0WEhFjIfNAHitFi0TYhGFeEEwgmCkT/oDXqdWk/60ZERB/chGkI0gG9F2iDuTC66rWcgUcETBOBCPnAseuTP2eIDBFFmj9YuE5CQIyZ3OYupqKrWOSBRUipAEIQlCEkvWYQz7W0qXNd49kJMct0IHZKJXU+gkoERBmYhKDlt4Osui7xeFhdRZ0gb3qRDTZyEqMR42xri2lQRao+MFUQmikj7pD3j9Wk3606ISBfUjKkFUgqhE3yFMrpiuZiFToBIF40BUcjaoxNgDAwZTao3WL6KSk0AlH3TWUFdTqXVUoqBSRCWIShCVWLIOY48AWEqvNd49EJUct0IHZK5XU+gkqERBmYhKDlt4Osurx4lfDbHVYNTkXTOfZGtfW273RkyuhWzEeJwMYNnS8DCKRTQDBGEIwpA+rQ94/VqqddMcRFPuSD+QfiD90LcEk2uoSz3DDPjQdArEHeeCOz4MgP7ycW486dAULPKN0+AbOiumS2VpAG1oyhKBBgINBBqWvGIAqJdahGGWoWsXSDCOWpL3A7LPSyVpCF5oShGRxWErTWdZ9H4pWEiCtbexPuFh8iukFsZDZQBWlkfIRNhCEiMILhBc9Ml9wCvRcrlPRy4kikd2gewC2YW+K5hcBF1uG7bhhcQsEF+cC764N4LpDSa10tYsEoyTIBj3Ogufy5VpFWFIlIkQAyEGQgxLdmEEv1tKXqXvGMgxjluVA/LFy1VpHWRI1Igo47DFprPMeb8YLCSp2ttYn/IwORWiDNOh8tEIX7aSmEo7RhBlIMrok/uAV5blcp8OZUgUjygDUQaiDH1XMLmWudw2bKMMiVkgyjgXlPHRCLg3mHRKW7OIMk4CZXzUWblcrkyrKEOiTEQZiDIQZViyCyMo3lJyKX3HQJRx3KockM9drkrrKEOiRkQZBye2/wNQSwMEFAAAAAgAAAAhXB5Q03zABQAAcjgAADcAAABh -dHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2FfYnVuZGxlX2VudHJ5X3NoZWV0Lm1k7VtRb9s4DH73rxDQtyLOmqTrbivuYe06dMDdtlu7vsqKrcbCZMknyc0y7McfJdtpclUTxykCNDVQBK5EUeRHUv4IQwfo8+Wn8OvFhy/X6DJ8j84KkXCKLoRRM3SVUmqC4DplGsEfQbEUWnKWEEMTdMs4J2MQ1lYM3UrlNCgyDWGKorFTpfvok7GrhTQoo0QXCtbSO5ZQEdN+EBweXhliCv3u8BBFKSa4XIepNQE73VhRkswiEK3MU3Lq5N+ewNhHsANUjpenjmDmm12GjEQkz/lsPgoSaMpMiuhPpg0TE6RloWJqPaLzxedXN84kcJa8EinDOU2kwX4L+7G+i4Lg4ABdlarOOdGa6iD4XY/EdgT9rhCGJ5gKwxC533fu32gMmKRYKhynhAksb3FcaCOTGSAQS5VEID0YlrIQi6SIDbtjZoYzaqjC9GculbHr81QauSjNMjKhdkaDHnAZT6X64UxflJI6k6UqRWtVpdJFqfxy/X66AMgZyMDkuGA88Xigp5Rza0vCMio0k8JKZwCT3zpDs5wqyBXlPGEiLsbEwBOXk7mcjcGlnKJrib5rGgQhsvmBTAqpQTm9I8Kg6I7wguLDCBKaF5nQLnlJnUK3SmbVAsJtPrvE6KESkx5yWPYQLJmb2a/3ieoUx8REPUDUWSwdDrBKuEEmtFEF+GwwA0SmKRWg/N+CwboeIiIBbFzSYLtxZJV/LYwzicSmqIxaSFpEzPKSnhUWSENdRi75/5xRHTk3TQrCpad9h9b7W4ilsx5iEQRRFI2JToN8ZlIpRkjHiuVGv3Jq8NpCyGcPVqpCYM4yJghmxsIBkbZysJMz4CNT2qDjo7o0bNFUhf4bfSsEelBD5YkBD38zrW0Bg97M/n9jAzuP6lKJPf5rcwtOrvDs++cPf12ER0cDm00RHIzuXAzt -HBQknDICamgBATZJIfdIAhaE3wbhUerWNSniiEwJs0fPEoRuZiGBTh9kz2mZufYArh4zmrAiw4Jk/xvh0pwupATOSqjcHhtpiTwIDbdCqNnR1RqjpfKq3FnakgnQSzjOrnCc+QRuIVfr6dUYttbrQ3W0Faqrj/gnRfOOaQZvfpxDRrOcmftEqmdg38TaVycs5cQeALb0nX21vMwNiwETo4jQOVFQOwCTgmMOJNdgvyMrfJE63ipSq1+zTxopuxUnfCk7v+gM/5g8FKiys5pejX1rvT40X2+F5io68qRYwkaVr/cDzrc1WD26zofFyVZYrKJdW75zQAYOsyKH0pkjAoQqNkomMAvFp+49dHXGHJ/LKRRXYosPKJ6ZVQLainP2q6xFu5W2cjEUM4QOXuBrMN2xNb5IvdkuUg3J75Nm8HzThifsA3kfDn9shcM6Uv+k/i9uFq/xfUnW5/fbdn4Pj18MTRwcbQdRxxO9PHHQsj+pYe2I4s6I4qBlo1SHqmOKy3C27JBqOPeKKg5aNiE1GB1X3BlXHLTscOah2heyOGjZ3tRAPFu2OGjZLbwZvhy22LKRqCHq2KKfLbbsU2pYO7a4M7Y4bNkv1aHq2OIynC37pBrOvWKLw5adSA1GxxZ3xhaHLbuceaj2hS0OW3Y4NRDPli0OPf1COkuUnFA+zzngAJCT/GV9eR56GogGyHTc0MsNh56upAGaHSXcHSX0NEUNItQxwWUUPT1QAxT3igCOPM1FAww63rcz3jfy9CtNIrQvdG/kaVEa+P9sWd7Iw/NX+fuCvhyPPMy/CTQdz/PyvNGG/UT3pXjnRG+0YWPTfSH2Mr3Rhh3NXn4ZHm3YNHRfhHfP9TbsSPbuS/Dxhu3Is/wCHLr5R35fnyACrxKLD+H1bTnEBDq/uulXN5nOJAwTNasu4ZU37aTgs8WreLq6ChQ6Q5BzGJFYSa3djbwmF/FOy9tF9o4PgnzOe8s6WWZPRap6sFLZy0// -nPfQxO5d3leKOWEZIgW4A8vtRagqdPMNYNje2ekH/wFQSwMEFAAAAAgAAAAhXEqQSe3DCQAAH9cAAEAAAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2Ffc291cmNlX3VubG9ja19idW5kbGVfbWFuaWZlc3QuY3N27Zxdb9s2FIbvB+w/CL2W63y1aZGrtRvQAttatNtuBVpiYmK0qElU0uzX71CyHDesJIoUmWo4d7ZFihTfV4f0Ax5u6jzjNGFZXJRMlEzex2Wdq++klCxtL0m2o4VguYwrUZcpTVJOqipORV4JzjIiaZbsr1wzTmNJyhsq4TPlWdXVuSW8pkkp7qqY5ZUs6x3NZVLSf2pW0iw+qt/9qArE9AurJMtvvmqAcC7uHjUqCloSKcqEpJKJ/Mcf3q1+Wr358/eff/1ldXJyGp/Gv797//GXnz/8sVJX0i3chOY3NMm3LCloJmSyZTfbhAuSQXurT6erk208ViyGMhuap9sEWobCLE/EdZLWlRTZPTxIKsoshhEi66O+Vuu2Snu5Wm8TsrbonKqX7Kgk6v59jT9Pq1vVAXq1oxmrd3AL2X3MyY7G5/E14RWNn71RfYqqLaUyjm5pnokyKkH3Er7Cx+b+K3G92t8/evv5r+fROvpVyOit+CmONkJKTiNONpRHbEdu6Lfr7fsFVX9rutFVLLZCijji3f0G6j7b9xlcBB3/yElKI7mlcJnwqCR3Ef2i+r1uu7++E+XfzXNFREI5VkUFkdtYVcmjlEna/ljBcDRXomtomxIYDQ7mo1l0bOiI5VEj6JE0oMOxyys16M+fPbLgWXzmzYLwKmY1+P4WXmBlCVom7RAoW7YDq5vwuubcyXvjrTbuOy4GY9CK9vbox6ipuxctjlLC2QbeZXiLwQ03jRMyVhWc3LcmaWyQp/AQIA18awLWMk1xDu+fL1M076CSooKXRoXQwyP7MEOxva8YSJdAdC9oE4P1httoRDnZ -sZwcitArUcimriwJ1CYlhKL75LpsQ/nVLavYBuaFAnRnBZMqmnW/wW2z5oEvWuHfq4eOCl6DdG3r0YPSoOA+sDVjsyI54dDrah/nVEx6//WF1jNHFXcsLQXcubg/qvQHTJCrSpIdjFB76+iromswTEmbz3R/y/5qXQ8Pw9g1tER/X3gMeqLaiTbqtI+srL6PId/oazusUFTWJcSLfCO+rOkXqA1SJzBp7atW1i+A6g6H0CXvtf48L7Lr+OF6FwQ/dA+wV3i9d9s3w9sS1X/hUf3iXbiJrq+tJpwV7w6T2m+j85g8fuX/r5PaS4+L7aouCs5ACtBgUzOeDSyyjy67LbLbO6mZtGt9vxBV7zXlEKZLkdFkBxNTyQi/auY3tRoHn1CY2uBaRvMKXn1Yeqt1U10IJe+VmhcYZ/+2c6H681Kp8ilMdWCJVHCY1rrluepDtzwHAYturT22yv6kJk26/wGq7h+hXWSngqh/Vwd/bh5aUXU/f/gYQe9zycARJazxiQSvdLcabvdz11Am0ubPXvOQ8XETzS2On2XRC/xLj2u56o5yrpZSGQQQcFLrlh38Dfe7qjNpt4mCh4Ldqg1iQKteuyJ7tKJqoyP8ZT84T91zfWjlYdG2TC+88hgCJd01rKMum9U9y9N605APNZQePDDUXqP9cYH0QfeuXCsxRLQNPaj/eCpsp9NFSv3aRuqzCwOtVaGngUvQMtKlJbnw9MRmqW3swsB8qbMfAiZnX5zaLEqMfREIMXV+QMaEjEm3uBVYN7b490KZuncAMZNmgHOvBggCmg4RDknTFOUvvK69w7KmzgIImxA2jTv/hdd1XXDc1JkfeZOdHayQu7EdghGnzgaInAbVvrRR+/LMQG1V6GmQE7SMyGlRLnxls+w2dmFg5NTZD5GTsy9e2yxNjH0RCDl1fkDkhMhJs/iZFW03tvj3gpy6dwCRk2aAU68GCIKcDhEOkdMU5c+8rr3DIqfOAoicEDmNO99q -r7q580Mjp878iJzs7GDF3o3tEAw5dTZA5DSo9ovHam/vs1LcULXEbCcDmOBhmuD7jWx9l/0kzA13BrnSoqz28vHa2sFqM1IkA48hPHIWX9tE7SD+DKjIQHQkREiIdB9rcNzBxyF4kIHREQNpKr+eUWVn6GMSq5D1TJD3/GTGRe98ZMdAZwQ6CHTG7a3tDXex95z4xsDhSG3sNNfwtYPmszAaA60RzQxKej5FUrWdq1dTPwlnI91BOrMot2kneji5LRCfwYSy2fTXNh476e8Z0WDiGDKafitPAs2jVn5qSoMJYr1CX84qtFdQg4lgVgpr5204KRyG1WDCF8Iac4dru6rdHB4K12Bil5PsF5MQ9Kjs3okNJnAZqaodRz00pmo7VK+qfhK2RrqDyGZRbtMOyHByWyBkgwlZs+mvbdx10t8zssHEK0Q2/VaeRJ9HrfzUyAYTrHqF1o6OdhLaK7LBRCorhbUjK5wUDoNsMGEKkY25wyftZR53eChkg4lRbrJPYtGjsntHNpgAZaSqdswzpyQ7yivj4u7RWd79BfwkQY11CKnNkgz3QjtjwtFwM3IbI6chuHG2gLZB19ECM6AbI+mR3SC70d2sYWhHN4egN0Z2R3yjaa0dyeyotTPAMYtbSHCmiKydAOEo8nwMx0hthDgIccZNru13djX5nBjHyOfIceyU1wC1o/KzkBwjxRHlDAqrHZ88PKhq49SAsn6Spka7hDRnUZ7TzoNw9lwwnoPJU7O5QNvE6+wC70gHU6iQ6fQa+uVESG1g6KenOphI1Su3duyxs9yewQ6mU1nprJ0S4axzKLaDSVUId8x9ru2Mdvd5OLyDqVVu4k/E1wbiByA8mGBlpK12XPHwqKqNVgPa+kmyGu0SIp5FeU47TsLZc8EQDyZbzeYCbdOvswu8Ix5MuULE02/oieTawNBPj3gw8apXbu1IY2e5PSMeTL+y0flSO1jCWedQiAeTsBDxmPt84h5qE5+HQzyY -iuUm/kSObSB+AMSDCVlG2mrHHuci2QfOpI3nx+dYf/uin0SsoY4g01mUybTzJixNNiPJGXUXQhxn2bVNv5ayz4BuRuVGaoPURnewBqMtHRyC1YxaHDGNpq92pLGlvs5wZjw+IZeZIqx2eoSlsPPRmFGFEcQgiBk3trb32dbYc+KXUW8jebFS+5WGly3VnoW3jKqMqGVQTO244v4BVdugetT0kyg12BWkLYvymXZChLXPgvAWTIyaTXltI6618l6RCyZDIXPpN/EEWDxi4qelLpgA1SuxdiyxtcQewQsmPVlpq533YK1tCPaCiU4IX8y9re1Ktvd2GPyCyU1ugk/AyCOCeyYwmNBkpKd2/HD/iKptSj16+klkGuwKIpgl+ey1dqCDtc+CIBhMXJpNeW2jrLXyXhEMJishguk38QSCPGLip0UwmKDUK7F2tLC1xB4RDCYlWWmrHclgrW0IBIOJSIhgzL09YU/xmLfDIBhMPnITfAJPHhHcM4LBhKM+Pf8DUEsDBBQAAAAIAAAAIVzU7mAWOQYAAPkvAAA3AAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NvdXJjZV91bmxvY2tfcGFjay5tZN1awXLbNhC98yt2JjcPSceym7bxqXWTcQ5p3cTplYRJSMQEJFgAlKyOP74LgJAUW7YxkinLPngsEgtg38Ni981w38Cf55+Siw9//HUJ58lv8FV0sqDwreGi+A4XpPgeRZcVUzCRomuVtVHWJpkS3lGQYqaANVpAIRolOCuJpiVIMkvGjFOoSFOK8RiuuqbkVKXwSQMu1wgNNSWqk2hMp6ykTUHTKDo4+KqJ7tT7gwPIq4xkbrOssw5lLTqUSUrKeW5MbztiZo1Gv+DQ2aoz/d5m9Nd3OPjhminNmkk/AMZRO/oWBz8zpdaN4czozRv43b2+kExIphlVUXTjn+ZwA58pacz0m95SwQ0aJEnyHuw/8A/49ggf -FNVdG0PRKS3KeYzbMl7GgKwhq0V3RTQTDbRSTGlDkCOccvzOzh7hz/Y8BqFqwQnH7d00PIeyKzSbGofodSukVstZx2ZWNVesIBx3UC0tzA4xqBnlHD2PoaSc1Kwh7r1ZUkuClkTiIc1B0kLI0iw5OsElDSl91JxxopRjpH9TmDd3uVglIb/CVatMyKyoCGsyMc56MjK3U47WRyNnu4otq6mmMnMIzfy2ElqsWrOaTKgZUbgOQstmQn5XFaV61crw55aS1C/lFl21as8f3091bcsZ2uCgPcc1CDzNWclq2iik2FjXSNN67zStWyrxSkiLpI8J/MXFZGFnzuAjk0rDyVvP9a24/NI1cOdYvpjL664WXpMbuCRyQjXGPOX2gH+4Re4m2guxNqZh3as+ynPMMjbJJJhAEjxozmmDZ9NULGtpKXRWsUmFmEiJ3CRfjpK3lUEXFBwmpHPj42lNS9bVuIz2PxtS07wfJ4d9MrF3+tAt3UfzIeaaww2cNPNMYBCz/n1OpoWa5os7uzEXYcE/um16D/xxx/lWqB93Z4n7eBvcD1/jEwtvJWVZM3oqWm1yXLaau7KxJDbdnU6ZYlecZi2eEGuZNtHj3+HSpXFhKOJ8+s2W6fcutCeKmYeT28ibuPqxBLyyLjqMpacUZgXMQg16fSWuD+k1LtogCE6u+hXVxowsXbjjZtqW4yfg4aH0PXIGgx33PVsvT3irDPlQ0bF3g3KMMSlKilUG3WCEn9rLwmzlaSneExwrTTHSc8yb5mZ3LcYkK0+VmcDZf+5ioTlRxr7Ae4MICsHvy60rjmyXW91K5vJ7nH1OXcTFVrkluBz/YOzTyFAhE+LVE4XPo/ritlExFOiHPNkW7OjkJcgJ9HInesKzsS+CwuMeXlF45K9GUnjqdqIpPHt7Lio8JwOqCs/Ec8iKxZEPpCs8ttcqLDx/QymLBX/7JS087F1oC0/BHogLD3tIdfHz6CWoC/RyJ+rCs7Ev6sLj -Hl5deOSvRl146naiLjx7e64uPCcDqgvPxHOoi8WRD6QuPLbXqi48f0OpiwV/+6UuPOxdqAtPwR6oCw97U3VRzUspJtSkJBfaWKQw6PlefAF52LmttUQA9l1IiACU2ymHAJwvQjAEELW1Tgjg6hnlQQADG6qCANxPLQZCjnMDDRCA5CWW/gC2Nqn4IWztrtAHgNy2vgcAHrisB4Acopo//xeIR7wbtJ7v8otDCM7hKvqL+sIQQtWgNX0PviiEcDBAVR/qC0LQkT5xXX/JXwxC+Hrqyv4MXwhCYA5Z23f0RSAEZlh1tx2Mt/5+egcEk6whn3DfVQysgbOv/6R9G+a5mMGlgG+KRtFRChecFBR0RUFSnCPJrG/JjcFlkhhspYhhQXEMQoKtv4kYJ339dW2XRNulijVtmS3RVRqNUvjIOIfc9kTnMeS+yToj2jwKC13YK4rbNual6fDNMbtr2eG5a7xsOcwq2qCH/3bMNGgjxHUJtz8Qu5ey1KXRcQpnTDvICrXKvc7CGGHSKZVz4EyZQb3SfYrze7CGMge+0B3hfA7mFpo8nkYnqe1rzdu5rkRzDKqQrMUEL7sm48zU1gx9kTZlpC0WDgOVU7cwq80qVMbw91lsG9sn6GPfQ80Jq4F0eNhQYrEtKTJCbOe6OcfUtYILjAAi532HvO90Nz3qq6jVkse+c97CwerPLHpDhgLR8Lltji8Fde3xBe6ERN7pkj9deK7u+Kq0Of1+Pxdy9rpYQ/vYH1b0P1BLAwQUAAAACAAAACFc+yeeZWEEAAA/DQAANAAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9zZW50aW5lbF9wYWNrZXQubWTFV21PIzcQ/r6/YiS+IbwJObir6ItEoW2Qri0C2q8bZz3JWue1t7Y3IRU/vo+dF1A4VJ10cB+Idr1jPzPzzHgeDuiP8ZW4/uXyzzsai3O6ZRu1ZUPXsv7EsSgODy9llALL -fkWR287IyGeHhzQZ/BXYh4H8t/eDS1f3LWzC4MIpvh+MhqP3YngqRu8GsuuMrmXUzgaRbPDASkxXIjYsepwhYBIaFwcKSAPb6Kpj5WLVVLIKG3+qLXRZh8UEXt1KvDO10uoZh/gNPArZg2rrwdaxG7cMyZvjUXrhWndMxtWfsoePR0kzr4xsK+OWygWufLaskmW1GFajSVHcNTpQl3kgPM2cJzhIM+1DJFmzMb2RnpTG3ihqZ6OsI239K+kqb7MuEi+0Ylsz9fhmyLM01LIMveecI5KeCQ/sWZVFcXBAvz9+pRRRUTzQTW/pge50y53TWH+gcx91DRbwjaVyPU56gKEQgj7ziy8TVFsuNoFiE9ZVtQMPdl7BmypF4J0RN8di2Eywa0gNfiefN0sGLSvdtxWc4bnXcfV916wCqAU5UU61wdIXwY5OMu7o5K2BP4wy8IfR6wA3K+XdHDWLitNW2xdT/ZLh60DvpfttwfdS/vXBDVqiemx4NDr+pAKpz9L+sulrwe+l/u0d2Ev/azhQN9IYtnN+cnCj582LNPzfhtd1ZY+Sb+vMHj1fz5k0XJLQ+A2zvCgEXbi2S9NnvVvsdpPyehYpujzzWhnrhtXLN6N3S1rq2GRrTGamuJtT0iqMvPXM5xKY1zIErPzTY3KGdDZ7LY0A4oItdeMN9g8/0rA8HqaF3mrMtgXURZ8mqtj4QBv854e60Dojc8wJHnaqr6NePEaG00+pY1+nEfsFJ1tHCx30FGO3y6JBRwRw9HQ9IFWJlSMKS6iEdBzQRsMt3BEpztdc1kAUagcCcrSnR9ld18VEHEUvbUj02HpFPyWD74bJo6tZznNqWppJbUKiFKe6rDakWsgkNsDdWPxMbCBPvAN/rQ5JRULHjMUFWe49MOreRCiNtezY6KWPUEG5OOCMVklw4obQyeGdbtrdE1k9rRWToPHmFk+ken2PbbBPcfLuXh91dayWi6qWwZ1UquV2kstwQxCy2sgA -wGH5npZxx1Bun7Pr29scNTKbw0JJzrxrcza6fmp0Sv0mMrGJjDY9ApRfk3QTtZG6panrrZJ+dZaYC73e9cj681qpWWdFWFkcD0JSkgfI6CBlL9FkHJpVASvTiBZIcjEEAN2g3KEQaYIKcV5VfA9pOCEjpwyycqNgoUf6oSpbyMh0wqADS4xaW0jTo9KmPEuFESEXc0lmABm2ylHtZOWau/MZ+uipcCyK4xIhG5PTo57/G7F2JKvRNWRZjEqCiM8bdlaAlDb5m9jxvQ10cft3lsMTTvsSu4/XUjIou9WkLN6VyIPAO01CP59Doz8xs3wfq6caOO1JJatQggquIeUN4sFKakVte/QYbhHk4ihVcIiuK4v/AFBLAwQUAAAACAAAACFckd2ipsUCAAB3NQAAOwAAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9zZW50aW5lbF9zYW1wbGVfbWFuaWZlc3QuY3N27ZdBa9swGIbvg/0H0bPM2lDoIafBBt1lG2N3o9qfIzFZEpKSkn8/udnSJcjWZ7u3fYeS2vg18vPCC08QvdNQq5b7vRl+wukGHMBE7qQIwKPqwVmVrj04rRoRgQsfVfMnCKK1+xi4FKa1XVcbGyG8f/f18cv3z5++/aweq4+VsXVjRVRmV/cg0v8mequrH3fVrayUUVEJzdEJ/jeRHuS3TPI7nn+cu8etDb3VQqt43Ka77b6J6jBcHFRQT+kTnIdGORXTZ53vBQltm961Dc+g9fDSzosUtGbbgha9MmK4qENjPWytSzCErqMXJjjhwTTHc4DfpPdb37LG7p01H4YXsoSNqV7sgD1Bl17BEjomugieBSt+cRYlGJYqSDfMvgevGtYp0G1gyrAIqaN03Js5kLt05jmIT88TYDRgJ4/h5ZQqnRFOR8PjzqUJPg7f5n72hqTIxYhs7okzivOsGRkov+4IMUYyXrEkA/GxKSH+CIAPm9lbkiIXW/KwIc4o -zrO2ZKD8uiXEGMl4xZYMxMe2hPifAcpj6+0OdP1yQmUwcjOdyejNWIBQTytOAfS15BBmBObipBSgT6sOVVBCOKo7hVBOeIg2hvbMYclqD5HGkF61LQj5oRZKEEcFqBDKKRDRxtCeuS5ZESLSGNKr1gWhQ9TCAFGDaGsjVe2gtbHW9jn9ieE7ppSolMpI0XiEgF8AzyxMEfe1GhFsJOziyBTRTwsSFYHBOCpJxVhOk4g5lvnsqcnKEvHG8l65Nghloi4wIEe1qRjLiRMxxzKfvTdZfSLeWN4r9wYhUdTFCWQjhdZgdvAPDKl2EiNTuGxGqUpBqiBTQWaDkAVcSxbhX4C/OEnIMqa1i6qZi3RUwZDhnIhRC0taWDhQWTWjBpY08CYbhZA1amcu1FFxQ4Zz+kYtLGlh4UplhY4aWNLAm6wUQvH++3Z+A1BLAwQUAAAACAAAACFc5cohfKcEAAC5TQAAMAAAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9zYW1wbGVfbGFiZWxzLmNzdu3Y0W/aOBzA8feT7n+w9rCnpEcChXY8oZYr6BhUbaXTniI3McRSYuccQ4//fr9AixrNTsKChJH8MG10sZOYj/bVfjlOs4QENHLEmhW/YSFpuP+JpCnJOGXSyfdXkQ2BD4JkCQ2xJE6WYMZIFIScSUwZEcUq+BBRSTlzcskFXpEgxixKKFsFjEuSFxdI2CfffYTd/ltTAZsIgiO+lvmff8wn08fx/eLFnbgjl3HYHstieUrw7laCJ+6T53ZilzK4E06cxisc9V86HRQ7H5t5TrFLx3PnC/duMXqZzh/c7+MR/HnuduAO0/n0ZTqaOSmWYUwilJKIrtO/IrKhIUEfO375h5AM7Q8O0QhemMotgpNAh2NFOcmwgIOMhkiQkIsI4VCucYLeT85BUmCWL4lwdivhIkIziQ5HnKNXsuSCINieCHgpeBicrwVJiwO++gKvy0I4evi6 -EvT09R72J0myTrD4eOqQrzPO3p9ziBhHCd3AW8BluZNNhjxPeYITePZhcdd1KOmm+LChOX0FEhk8E82ohLc4/CyHU4ngYYb5G2xTHPVSwIvB8w4jkuCUMlx8CHJ4ZTLkmSweL9i9KpwHYeH2sOAYDEvY90QU9lu9Q/B1EP6ezi0D4xhk8Tbf7URhH7JbfhoUqo3fiXR1RB4nP56nd6MZ/KPxbKWYJMXvHZ0PWKLz4fd+DUhPhcLv2YKYC+KohNRxKEXkWovBVsRICi0yUgejIiR9LRNbElO1DPyjSwJLdEIG/q8lGahUDHxbEnNBHFWSOg6lktxoMdiSGEmhRUnqYFSU5FbLxJbkvFribST4iiTBbhfKmsy0qtc4ur9WzLU8+G/pj/unxcN45s5G3yEgc/euNNfK+VIicCHo/xbCGSEoEtKGweeIeJ4Owb4hloAZBGrT0QaEPh6er+NRaodVYoAS7RyrZpHehmKW5XVVIEqzLIvBEAxHZqOeQikcPS0EWw6jGLRKRz2Kinhca4nYepgmRTu7qlmk16GYX3l9lYjS/MpiMATDkfWop1Cqx0ALwdbDKAat6lGPoqIeN1oith7nkJIQHAUspkFGIi6DhL/BL1zcq2peVbfK0V+gmlndurPx6N6FW7j7e8wW/5ZmVp2rPnqTKCMihK8B7S769vj8jIr7WBhngaFISVsWn2Pid3Qo9i2xJMwjUZuVtkD0YfE9HZdSV6waw9Ro51u1y6qsKGZcvq8CUppxWRwG4jg6M01olELT1cKwpTGWRcvUNEFSEZueloytjclytPOw2mVVWhQzMf9aJaQ0E7M4DMRxdG2a0CjVpq+FYWtjLIuWtWmCpKI2Ay0ZW5vzygljnCSErcinbzamq7jJDK3ZWqfuMsU8zb9x7yaj2Ww8fxgf1JTmad6Vr6byytcswmILX2m6s8CFlXNGOYoendJNqUy3OjX7MFkzF2KmNlanFKTPVrej81SqlmV1Cay0 -Y7qGi+sxKUZ2XU8lqDSys3ouRc9vlqy5nc8t6/paOTZml+XmJDVrrqiiZ12tKRu0i6OlnQQ2XFzPSTEV7PZUhEpTQavnUvT8ZtCa2ykF7VorxwbtstycJGjNFVUEra81ZYN2blo/AVBLAwQUAAAACAAAACFcep5UZ/wDAABoJAAAMwAAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9jaGFpbl9vZl9jdXN0b2R5LmNzdq2Wb0+rMBSH39/kfof7ASChhY3t5TJ3dcncjJrc+IpUVkcTVgh0Gr/97ea/oT20pTUzqcApfX57Tjx5QRjP2DZoyb4u6XHVHE4XSCNY/nZFsD2tK8bFx1P0mco/GlqXLCeCBnVJOKfbLK+4kPvR5lhVy/ukkVcfX7/WRLyviWAVzx6JyIvjw3u6ZYd9xsmefqzLSgR5dajlY1WTvdCyPJ2OlpS0b7t+ruWuOWkaJl8sHxUN4e2TXO+pKKpjSU7Z80fJ+/pYUvEtOx1Dfk43akkoqobsqHx7fjpi0FaHJqfZE5PcDRWHRoIGW/rM3gh4JWgbfL6yFUQc2t+/1lfL8GZxsbkPr8JZON/MwyhCgbz6dZFXMi+5Cd/Jg5JTdk1VhrcojIqQcXkyUppXBOqbQfSnCD42Q8FxlwiF64080ux+ub4MrxfH463DSL5huV7eL2er4NtPTWVOctuGkvIzXDUitkB8YtwX4NtW73gYwvu7XDvBxRZwdfHayt6QyvK2pvnJJC+oqo3fwWMI/Obq4W45n63kF3znwJ+YEuDEWmBZAlHj5KfCiQoVJ14cHtlgWkmsg+xoPAIRXT0e2wA6iKzD7VF5DMJ7cjk1hUixtcuyBOJO8U+XUxVrir24PLHBtHJZB9lxeQIiuro8tQF0cFmH2+PyFIT34zKKuhDF67apdrTMSrKXqnGTyaK/JoBuK6YLJP/hPFzcbi4Xq3A1u5YKr8O5n+kCIStQhc4umOdCIwRB -OvqMsBWiVmgXYFhphCF8T0bH5hTgrKEpgtkV8waKVcB+5g2U2MFaaq1H7YidgKCuZo/sMJ3U1kP3yD0CI/Bk99gcBJw+NEUwvWICQWMVsZ8JBKV2sJZ261E7dqcgqKvdEztMJ7v10D12T8AIPNn9bSIrKdlmvGBZTbeVyMrqRf6S42Z984iuKoAfUM0k03C1mF2EX8ddbf75mUlwZImrENwV9lxxHEGojoZjZAmqVdwVG5YcIygEP45jbEMCTijasr4EFFMKxipsP1MKjm2RrUU3Ae6oHoO4rq4ntrCOspug9+iegEF48n1kAwPOLNqyvgwUcwseqbj9zC14bIts7bsJcMf3MYjr6ntqC+vouwl6j+8pGIQn379Nc3lBypLyHT07b8F2hckkY1Yb6B5TTDV4Es6vZqvVYn25+MzC01QzHRSAogV84neaYQrBO/ZCHA1C1zaEzyDg1ogjKBY/nREjeypw/jEs1meimIVipArCzywU42EhDGwP8wjOGyTGYACuHRIPw/fSIuZh9DRJDEbjqUsSezBwajIs1qeimKDiRJWEnwkqHg0LYWCXmEfQ6ZIRGIBrl4yH4XvpEvMwerpkDEYzoEv+A1BLAwQUAAAACAAAACFcU4631Z0EAAB3DwAANQAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9jaGFpbl9vZl9jdXN0b2R5Lm1kpVdNb9s4EL37VwzQWxDlw802u3tznbQxkNpB4j30RDMUFbGhSC1J2TGQH79DUrLVrpXILhA4IjUzfDPzaM/7ANObSXJ3fTWbw00yggdalJLDLX3k0gJVKYxzKhToDMaVdTpdDwbzXFgoKXvmDkrDS2q4BRsdc3TRWQaZNmA4lUAZl7KS1ITwBae2MrzgytkTmDjASEq7Zj8FvhQpV4yfDAZHRw+Ousr+fXQEC4yVrglGJfEgUh+0QLMRc2LJgeGOSKnjwUGKQihKqHwikhak -5Kl2ROpVqi0nyzMy9J4P3CwF44j034pb1zrJaVJvEp8GaQMPnjFdGerk/T5+wt1Qq0RnCYu1AqNX27f/KIERQx1MpcL++RD37zgCV0/gDFU246bxGHz4ALPKlZWDL0JyOxi8wsg4kVHm4BXuqMvhFfeSJIH6E1eLukARGmF2ucC3CywMPVW5qCuRE0p+MjyJhj4A81kQnZE6i7di/GrbCvPDatXbrTb2fsgobVzwjI/2Peci9a6+XIG3cGeQRnzl6zXWyqE1Nxiu7lksIgtPc1HgEUL5el4vefiPLqlwQqtfi9v16UFjU5Oz82Q6S8az0Xwy/Zp8ux7h8zQ5S26SyXQyn4xuQ05438J1S7yL0oRp6rD7nmH4rJzRMrk/T87yRCiEQWXw2m3oX51B7g1axgV1LMe7VPBUVMVpygPHa5cW3GEX3C+T6d5gM7xtPaFuTPsC/dgF9O7m+8NkPLrFAj/sibfM11YwvNlC2ZIz3+9+6Dsc++ZysSuX4cVhJBle9GXJ8OJgmvzRiXhvnni8fYjSoN2bKZ86sR5KFQ95f640CfwmWS53pXM5PIwsl8O+ZLkcHkyWPzsR700Wj7cPWRq0e5Plr06sh5LFQ96fLE0Cv0eWc/xC/H51P/t6fZvcjr4hQabJ+O1fn3ydGv3EpZ+QsNfqjd+fLtPdv0BWZ87jNuJlB9DzLqAdFHkH5pYjPUBujN+GOOyC+DYz3kHaRY0euDtcd2fhJ6HPkqpnnBu5TC3MNU41fvhxHK4q44fNeT1sDgYJRo9TfEoe14uf1tS11tSfSh49HYlIw4vISaJowdtrqaMf01WJLji1r1AFNE6GS5ymt6dt1vVpjBojuPFuzUiMV8blunFnHOf9lnu9btyb+Y3gX3hZxhc4LBr6hAOvZiGVuKkrwzjJcMBGY1cZxeMx/p7FjFGgcBz6fVXv+Y9YfLivwkSewJUOCsahTHBAoyLwc/8xlNgCjBYaE2fQydUxoDB6DL1p -aQSgdpcE2gQvNfY1juvWB2BaSlpaDvWdOw20Pm1IkmxJgtG8ZIFHjtoJhQ5dgR/HATfNunUCNliiVINCWNvWIpBFBq0Eio0yCpVjmH/GRCr1rPRKHYNdK5dzHKlDcpl4wSpiJGqeUcu0zqCM8dIfFavcFoNBKGFEzA+l5LYlIIV6RvQoNsFpTNc6UwUH/uKlgT9QFNhU8NZ4WKC+rlRKDSrVRlltar5JS+onlLcI0wPbVBxmSq63AH21/gcyVCJI2yWVKBCxz0ZjkSkGOA6KOeKPiLwqxXZV6O30iprUy7+TwX9QSwMEFAAAAAgAAAAhXIlo2M13CQAA8BYAADsAAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc2FtcGxlX3N1Ym1pc3Npb25fcGFjay5tZJ1Y224bORJ911cQCDAPgdqaeBe7i+Qh8EiZiQHb8VhOZvepQ7EpNcfsZocXywry8XuKZF9sJxlnXnTp5qXqnKpTRT5jF29Pi8s3q3fX7G1xwta86bRk67BplHPKtOySi5vZ7LpWjnX4yTorO26lY7eyrYxlLs4o3DjjU5DO44djvK1Yw720imtWKSe0ccHKI3bqGdZrjWeN5PSoYvJWVbIVMk6iN5wJab3aKrxcr9ZHs9nz52vPfXAvnz9nH9O+5bhvCctELcVNaSWvDh8x/ER4dSuZwJKqgh1xolaNannJ9a7UvCk7WRlfarOvjJPl7c/lMc28tMYbYXSc0dYqDxsm5dfD+HWtuk61O+ZGCytTwo/S4VUZWq8wOkJWCtNulW1c+SkYDxeSJ1wI2XkOCEpXuRI2lyI4b5IrV6GNq744pj98z2TrrZLx2fHxf8iERJ3mG6nj43/8C0+XaQlmzb5/OHv2jF2YVmjVKgFiCFTZYL3Z7FLztgXeFArJLJBoJfgYh1/9tJozLqTWQXMLAisVmoUwoQP3/aS98jVmMR3xx1iXeWWq9UABe9Sh4S1D -BPFWNVg3OHkUbTvvI2Y1RMxs9oUtTYMdYCb7wq4MPP3CwG/AOG38a/xDkLCN3BrY6zId9PgtNtZEDcjAJKxUFAX75ifen785IQda6RzLfsFM+SmoW67JAKml8NZUstgrMLrvR31hFcJYyAIMey48Q3Q6b+HPgp5Yo/HEbgEehn48SPeRvnNUVLIjYFpPDy9MvwlAR6ZIAOYN3GOd2Uvky6s+n+S4yZhrhDVvD0xoCXTb3cLRC60+c0pMhvRVFbL0KLq7NsQgQ2wjLwgiVh8qa3ZS04JW3U2Nzd/ID8pX7N11WkkbwaddwcUrdiNlxyp7IGMrvKx7ChxpB+2xtaaJ2+BP1cNHrFEcRqaycUuuBVnngt7SxErlWTBCEThMWOMcVr/BRj9g6BbO6qxmCZUN96Jmp6u08er8zTnRTt+LX18cswVbnr0okPl3hxz0WH7YnLyjZZ3hN+Prh9ases641smkmHiOqS3FP7Fqovg5hALbKFPzz9xWJjgyhfIohZYiUge6k8FRxF9ertcUGZ20UYthoWmrkHSwq7mTT8RoDiZ5RbtsLSIZa80JrMKq1sVorhQ9pAGQXWOreXR/X0tfY4WtlXJqB1UPRB2RqxLREFSgoEgCM9VnvCG/HuRadJpXtYzriEAOtDJYkDfigVSjN1YSNLTwxsBfLEQ6hCWHgP4OJUBbm12UOGeCRY6CFE6ICL7R8tUDOcPiScGQfn8iU8fkc7UJuqJcVVDNAK1L/p0MmhmDpHceNlC8cNBzcEoY1LAmWoEcQBVECRT6L/VimUoKuzU6NHLOcpRIO8cyDVhAVbJynkW4GCKLjVUnaXau6hMdpQAlB0iaP6S3lwgEqngkwFToSZ7zq2gKEbKIxY29vzojaU61adIk5OexWiYlj+H6FHXOODt2LqFOgvTK+869XCx6ClwT3xwJ0yxyfBTBLWgRAvAvCzMh+h4hgVBGJlqS9OyOlbG7QSsErDAWPylK8BPuhY5yhmKd -33KlU9QYyoe9wmqywcO45tWvv4OWO5902sO+Oj7P4H8GspsAyZQpcK7x6p1rjEbI+APyZDPxGfPM8A57fsXp7w6NnPgiF+7Fk/E5cTdM3lF2KK8PQ+KPjUFK0iJr4RDtMcoGrVr0VWehc/ZjzVjyAaknUJSl7qPYaGOqBf0KkCD5OJCTA6g4sOjQ145mY1W1k+zS6EMD636zqDQTRCKpRwJTMSDC0YdQQdlHlXMyer/f3xs7Qfkeik8HsQ+yFFxIuYY+oBsQVyjAFs2x2iiia6wMlHd9mxUXRvil+W1oNpTx7lG20crzWPoAL8QqFjyX5ED0HSKJrs31iJq+bGgvX+dKa9VBFdZq13C2BM9sGTTpCjKRBAzZnIyN614nANk6JZB7AKSjVbiukKd1RPP9eiHbRU43t+jxTyKf9onBxAvX71Ngn56owo37/O0sR17vZM/rJMlfUZYjdqhZ8TV+7OpYLY31ABGZgDUaatA48N61Y5KbWC1Ytj8L/WB/7ySLmmoENZxrKHg6PUViGpbHJBJO0T1bL2/YEmWNs7eSa18LYosgJxqocqxiFzowcB94lZcg0I9E23v74+poWuQ933oq9wRSseeojnAul0dAFq1cnFyeLBnVVpgjUmyhGdhKG/tYgo+CnnL7t7NLOl9EqPuOyuKws1x/oOIebJtg+CP8V7GTrruW4mlO78OdQi338l5R+CGXf4nlGLRQfUbDfVi8+emM/IQGYU0ES05VJh3sST1lgoeOUwkQbcjURJ68kyJSTRUjZ1/Otev3H9j6/SoPfJKHPty6UBGhn+tipLUIP54QcNJJavESo1buIOjewOPT9buUBom2XvR76ogqG9pSVYWWt1L3sUsncOqHnDDU9vWnAJ11+vLdxf8Grx44SxFwprboN4SK1wPfkBOcHw60W6T373gcoS4SPxtLddwJNLGxw90ipDd0+RFDHjRSfqOdxaaOdLKB9jtKdgIgX4gkANDEBunyyYCa -yiJ2CjhFwBLquvrOamipfu9vT2azgv0BzWUHE3Kb9s3qer+hpN2Gs1Xf+i4en2od+f3gaN+Xlte0e83R1uJdMxbw3GGmypGObfhqfczqPohjPndv52xsN+bjQST+o/k49u9I4nGkoKIEp9OuqAj3z2uEmaMTic81LpeuyemtSKe3dBZx96150MzSJisTYc1DnlxBO1AYD1HYhMaRm9bE9v90NewzuThxeb8I5beack83UrtcjWuMKMy2+HpZBigHCrSfWT1nx/+kT5r172NWT5lb8jbrJZFB6KXjl6V0jgna+1giTFsUMc/tTvpyq6SmdzFWS5qZqWqheCEezqlBs34Swq9jAF/JPxOH7Cpgv1kCeehY6DZiPD3Nv3F2mveXQR6wBxkBDu1Na/bt9Hw2HHwfbDIE/Xf6y/ut06Tr7jVhuCHIQTA5IU25mOztrQS7eZlx+PxeULnozOPbUgqsmIiPbkKn3tEVj/IQ3rwN3UOgT8bozhiNL2QCWIlihW3OTs9PL07uazFpU8U9jx04NBxBXxkROY3ze/rISqQemllSa1ZJocjQdDf3C3K94vYwvRGm884jGfnKtW8CNd/MFXRJq5IY0aWtRkmd3gs/uP1FgJo7HI4RAQdmsEC8kJge2flWUuPZUVxSIMGNwYYR0f8DUEsDBBQAAAAIAAAAIVzZCMOH5AQAAEkMAAA1AAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NwbGl0X3Njb3BlX3BsYW4ubWStVk1zEzkQvftXdBW3FPZCKJbdcAqBXVJFSDYOe5Vlqe1RoRnNShobU/nx+1ozkxhIasPCxR59dKvfe61WP6L3b0+nF29en1/R2+kxzVvv8nRuQsv05hObLrvQ0IXXzWRyVblELT4J/5pW2vulNh/JrSg0TBtubIhkdNOETCZsOBK2FLeRtQ1dTjM6zWItO2rWqYtsiTfOcmN4NpkcHMyzzl06Ojig -RZJYVJJYlByrxMtugU3HJrsNy1HWWZ25bPeudo1W2q+V17Vq2YasfNjakFhtnqhDsbzsmuL86aEM9Ja4ydFxmTs8/A2TF9rFMnwhg8grjhJkO04/n0wePaI/HHvbszWZTOmMrQMjMpmOaCExLR7TosZ0V6tG1/tDH7KMMtctR6CNrIxMtG+Va1x22g+jFfCU75Dq4DXO2o07VH2eavVx/dVqsdhfM6GxnbD1he1cmfqb1cF2XNu45JYezEc2rnVZIAHpSehaZMQNVKioTJlTzoodezY5Bsuqhkkc0IzeUsXWuqbElrbsPb7VKmojeSaTliEeIpGxaB8Lc6HNziC6HHWTWh2RLrsvzFyt1/AeumgYSDxiFZlu9RNZcVaaTK7LN10Pog1pez0iuxlfBs/4m0sM+H8NGpJchmt4mE6ndM/v0TjAtkWuWO3J4/VSKaPrZXQW4bbB72qOah1xtKp2NoY1+wUcXFVM5zd29E4vJcDRkC56Q/pTDLGyf1XE/NmvMtmO4NWXy/cFNuqVVM24FObeQM7GjaBQNt4VwbP/iiC5da21t7CvlNwMrTKnLPnwIIrOHJKnhTZzcUQnyCU66bxcp0FZlJKlK2GjTtBV75zmHDfOcPo+Qp/8CJy7iP0J4T9AhsMX/ycRGvcRl2/pgtwqQYDZe5PhvWymVy6c9pvL9If58V3RPC+TLGVHx51qmG1C9WgyLnIp8UNQXxN2D4Xf4r+LEtdkXqPOAn6IKGeuZrV1uVKpW8rZUkVKdD+Usvdx9hN0/g6Gn/7+EIalMs4rLWXxkv/pXOQaz2CSh+xVyNVQAhPVXcoEQhJiYXp3enb6Hk95J5W+xJp03aKmM/ZnAl72aXanj8jA29BeeSZ5ExPlSstqCh4H5ECuSTl2Eg3xJ7CWE6EWl+JOYlb8n6PZCOXpxNrgHxCNuDVBQhKto96qocUo6GYmbWjJK6nmuOprFlcnlXbNNKymBm6C3fXupB3JbrWjbQWl -xxehAmQv7YrG3D50cVQ6ASo63HRAMEDYGfnWBiRhekw64hkDiseCKjJsDPIykaQj2iM0VRbNUHn7yIf1rCh1XqCK7pcdbEWl/lkrXddtdkOpIJ2UzPuddGXuVr006Db1CNkTyKEYtqmXschyy++HxJT28GwrbqikOzBx7SBRn6v9u09Dxv/SVrskr7SYyVsLuHCEXgA0oBXMZN0KYYu4Q3bIaccJ12r037cV+86HGWQDyHIZwAYNU+VaEfYl2VD6SchODCJx1qBYG4InbWJII/xZ6dUgPi33kxQkhsLmw9JnuAl/nZT4e66mPVelPdYd5IzuM0vcYw8NPcGcM6nI81LEGRvhoWjtN8LQ/VXoyiWeTP4eO+t2rBTGa1enETmoAqc63eEJlwWU9fcPKYIO2gsVQxrsA+zvYqvB1Q2+Xgg5C5gsIjaCzm40XGM/3xw4m/wLUEsDBBQAAAAIAAAAIVzPxCwnSAMAAOwaAAAzAAAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX3NwbGl0X3Njb3BlX3BsYW4uY3N27VhNbxs5DL0X6H8gep4Guy12i8KnNodtgKZdwO1ZkCXaQ1QjTSWNs/73ffTYiZ2kcLYfl2BuMxRJkXzvgWP3VrIR33TsxRpnoxdvK9+Y1hx9yo1LQ5/iscPOtvPoNVNOgZviUuZdOJ573nuOL6W1mb3J/HWQzB3HWhrPToqkuK8jxWpdNaXaOpTry4+sT5/Ulk0qXQo2SN2YYBcGBXaLLH7Fpk9h03E2q4xo0258TisOzd2g5lPL9PHaRO9hOpnmfO9A/44O9I86NKVHjl2jL/9udFQz0qaGzkTb3byEVGdUues5o5vMxs2of2ckShUbts9Lifp0UO3u1HQo13xZHZ1tvW9OMCw/uCrro7i5cd2ts13ceLIGCouArjMA6QWDViAVkC0C4mfEgV3NybPpcJq3xe7DSsveS8T15YpDwJNZZkAGZGfk -OdgOl+mb2XIE9fdVHK6v2cbSgxfRbQ5CpLOAoKQhO0ah4Nazt6m2NFKuUDeUSqi1cF4zvb+4vPjwhvKghRKYSsV2Pcpi+FcC1BzK2YzupsgMCCIdXEQKVqHaWj0tKSB/TSSx1DwoZ4n/61OuhVIeyyQN0/QfI6MvhRVHu/SYuNOsLmlBVelvrwwmW4adBM5cWdOClxgLKJJXjEznrZX4PC2fO2RJfjNmEw9/WW7oqhW3b4Ra9BvYE1vYDvtGnrmSkrakJCg4pkoO/qi5Ssd9EpUg2Qws0EKjLWVGjAPAha6ktmmoZIHgWrbwUUirs2cNJr/krGI+pP1eppmt3xy/3a/ZPY8KBlKzuAdq9E7Y5d5Al6PhSIwvJzFOYpzEeCjGIqvO2uChldaMmxd3VGXK6UX6/eDmUkA3AMJz9aFzsI/Oh6DKgjThSfNqF7JVsjLj0xhHczBHHJr+Nev3j0nxk+InxT9U8Xf26e9U+P9b3i9eTVKepDxJ+dSXdJQvYMRCks5ROaOfzg/7mr439IMa6a2ki9GonvR5/uZYnH9N4pzE+YjFWbQvb/PGRGZfrv+H6oONtzSKO8HCI4+nT27vuntW7el1eNoD7fEKcGDqKYPa6NloU6YMCy1I6da8mH4GT2J9zGL9xR/F967F3/lh/ON7+M/Xk7QnaT9iaf/sHv4GUEsDBBQAAAAIAAAAIVwujATOnAMAAEIHAAA2AAAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX21hdGVyaWFsX2Rpc2Nsb3N1cmUuY3N2hVVNbyM3DL0b8H8gfJbtTbpoi+YUxClSYNMGSO8DWaI92mhErT7seH99SU3GXuxH9+A4oxEfHx8faUNDpIChqEQeVfQ6BLSdxWySi8VRUNqUqn3nqXQJP1WX0Kps8/mh2+KOEna5dzG6sFe9/qyT7Sh1vQ7W81EXqOB89nh/C0dXAuYMhionBkogMAftmQOgR1MSWVwe -XbB0fLulLB6cwaWhUJgN5LrNJemCazlh4nySdtqgWtw2shP6wHeS017BHmnAkk4KmNJ0HUpCXQbJPNRcYIuQ0FCyaGEsCqQoubBaqBNmdUCmlVieyP+Ian/TRDo4kyEghxYSpEhHZHVuwLpsPGW80D7zamR0OIHxqAMLtc7ywrvPWqRnNtnZink1nz2TdXUA7fcucLTqTzbRHr1gJfeqphed14NjqO46mtIdD53Rmd53dsChVSCfp0QHZ4VQjN5hgufNc6PCPb6BF8QINp2kAssvpyZCxqgb/V2iAYQAP9hJ60kpkF4L4zvtjVDO1e8kyrq3EOVELDCJcmbgF0zq6vdfYHgE86MQETFiypzOBbh6hc3j/SNwh7ixvmm1+nl1OxbIQ0xjGaLvVhfTw18bZtsAGU++139eXcMa7j5cLWOi1xMMKOKrM2NRo/mI9Mv08s154xMEPeAk6dlcrI5YQkp4WN5ComO+YbnAuwOCQe8zaPacC8ZX9uClpM1kIe39WBeK1BncDmpuJiPRnVvEKbeOxhGkmqUkQR5nR4yxP7uPq3663/zz7x9Pz8+TwDLwfNVWU4RU7HXmqXq3+hWOBfiCkQ5foti2VnFWGQEurBmj9BxXt97lno8C1qQ5ffWlcm2etGUOi3Npi++1S033GJEHXkhJ35bJhdyG3jo5lAvjwI5jfeyRkycOQvyiIHBZorNQd6NRIzPT3n2qVPJqMZ99GIfmq3XUhNO2x4ZiKqqxmi8U5W3E58xCxBXQLbFsDMN7rmfAaUzV/QOr9d0s0+n/4oioZ6xvbMEd97R3PD5sycpNEmNo0dPorcevTcawfR10kI30kTt32Ue5p+pl+V1MOJ/dSlT1Oo1+n3RTYnXNFjllZ8j0ODQCPPyFbVwc7zTpLq4jyclbVBva+KCA8kCeTwvv5LPj2lNbitwintLApegdk4N30Cu4fi9/5f1v19C3IRJK+UfbeXFHYefSAAfydcCWqAmcFPMc -2B9aXDlCBlqeJwe0MRhLyy8dgBH621+F+ew/UEsDBBQAAAAIAAAAIVxbATCKaAQAAL8bAAAwAAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX2JlbmNoX3NoZWV0Lm1k7ZlfTxs5EMDf91OMxBvCSVigUHJ3EoW7o9KpRUD7ujHeSdbCay+2N2kqPvyNnWwSSPgTqaCTLhIsXns8M57feEjsLfhy/pld/Hn29RrO2Ql8Qi0KuCoQfZJcF9IB/XAQpqy48DBCz26iiOfuFpR0HvrGgi8Q+tLSGxeoVK24jeocai81qhZ89kGTNh5K5K62mAMOZU66sJUk29snwsshgq21O97ehl77m0Pr2vxnbdtnRtQlaXLtU5Pjj3baST+wzgFL99q8qpQU3EujHQsy1MCc3YwZucRq0sFIxBXGt3PueVsXMqswNz4rMp4FaxmPllvCDXvkxyUfNR4GdeCxrBT3+I5O8VG24IHLGhcaFyeMTq++v59PkXnmQlrMAlXrmAQR124a/FJc3wK5D6TeSnTgDWWFUkEiTY+SZGtrmmDXYWKS3MMV3sE9BF33cGK9FAqpdS1LrIyk8NPYgj56w7tahuS5CcZCz4WilCuMytGSMVQ5dZJixtgxxD/Lz0cDJL1L7R7thLgRGGUu0yYThsKlBwEGtckFo9jlLusUvSC9WiAMdaCg5+5HelAosVtiLusy07yctZXx3YAVLffEORPd6jyTWnrJVWj2paaGcaVRXEk/bsay8qsrs9vB4lCUnQ2QH3kdMvrBrKtMlA+HprPiwFA6eaMwqywKWUkfnG76iHme0yK7bkQbO6y2b8OOMbqbo+IlqQkvmRPGYtdUhJD0esu1q7gl2OP5BGdqK5BMR8hUC3DCKl0j+un+S+FP9zfxXy/+e2vE/zB9Kf6H6Sb+68V/fyn+xTi3ZoAqixakXlF/nhJ5pgKFqP//4tzEx1j6h0bzcszoY4cj57rOo5VK -/pyoJgHugoQgD403wqgHuTsHdrAWsKZkPUfsqaK1QfaLkH1YC1lT5Z5D9lSd2yD7RcgOl5Ap5Hk2/2SqzIh+eVjQQmF8WmhTGt8e2tGa0Jri+Dy1TXl8Y2wf18TWFMjnsW1K5Btj2+0scRMFVwr1ABewFHJQrKiUL4lu6uU7EFw+engNwaZsvgbhpni+NcPlA4zXMGxq6GsYbirpmzIMJ5N/k+/wlxG1SxIGp+HE2yIgFwWUPGjlCqwZAR9wqZ2PZ940IGiV9F2eTU9DYPoNAfhEwpEZ8LPzTK5zsDg5isUW2bngzlFPPNV0M0Mst3KIGqpzoFbfw2+/Q6dF1Z46aiLjYIjW1a6xtqxpTjnaXAQ4V3kAFVJYya+X1GkDU6ywgHpnsb/BvQMN74nXaWcHFnlPeg92ol+LtOGPMHDUCdbPTLwr4PmQa4HhIPmcfQITbhVOQfZp7hjCZ49IpM+lcuG+oRVB/hP6L80oclzzC8TxROskR+aBmsbFQaXqGIyVi1251rjUR8sMq1zTt1Dw/7POhUr2js4FyF/whw+btKQsItC9Xu+GuyKpxr4weg+csLLyrl2ifVhXV1ywtKrx0rw78WgSbV5+iyQKjIVrI3j5OmlJKelAS9vHP9I9uyVbSzstOfkXUEsDBBQAAAAIAAAAIVwZguYz9AQAACEMAABCAAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX21pbmltdW1fbWVhc3VyZW1lbnRfY2hlY2tsaXN0Lm1kjVZtT+M4EP6eXzESui+oaUs5uBV3Omnp7omVllsOuPuammRKLBw7sp2Wrvjx99hp2rR0WSQaEntmPC/PM54j+vvqS3rz+dO3e7pKP9K11LJqKrplodJrFq6xXLH2NC05f1LS+SS5L6Wj3FS1ZefYkS+Z5tI6TyJnpRolbLTloCc1K5LamyjlKqEUQ7C2IvcyF4r4mfPGS6NpIXk5pC+eYF0bT1V7 -ekG8kAXrnIdJcnx854Vv3MXxMc3EUkgc8JhZOJtVW2fdDIL/TMltZctMZHBDPHEG20GjWAWp20ZHgZMJPi6V0E9kxZJgxEqOO5PJhyCHRc9VrYTnaHD0r2PrRuJ7Y0efTN7Ec0dTU/DzaDKenKfjs3RyOhJ1rRBnCNClQQYvXKQPqxT5SBvYSCHiSuNHhfBipEuZ1VzAxeAxXNmJK+tcGOZuMUuSoyP6aJFHxem9rLg2CJGuBXx/TpKXbo9e6NbEf1+NKJAwvG3EHT7uvKlRUF3IWIgXqKZpSr3nBe0sQWCmTZYbEfMPF/GOlBk1g0glfF6ibhUXsqlGBeqXM60FsD+Ov3JAk1/D87cJlVjp9lF91MSLB3hsLFXSOZwxoAfOBfK1sR4AKKx0SGzYMxUDZwuhZNH6V64Kax5ZZUpUALXue+jM3AdDyNNP/erspEarVac0F1K5rU8tf5BNtiCFj+VeOxWYouem0QWvHVPAXratszJL/GJdgmvj4TktQRC2eaBdtHxxc3dHQS3uj8fnBx2NAkDS0lF9RYWViPHP8fBkTAvXRTkg4yqjkCW/GoWKN6DhAh+d/NkvA9jgoog5d0vwOQAGdibjARUck9nGh7WzQSiRt0I71AIcXdEf4+GHcRtoXga260fuRVvKx7If7slwcjjch5AyYVfrOguPg2L0J5OD0XtQ2tPmSBJuayJWTs5J+rZwv1NhYoupramMZ0J7ukqn8DowaqqErNKplW2D+kuyKlygU3yLZFoG1qA76kim5BBRYgJ6Cc7myBu61F2WVzHwEEZco506vFYEeL18pbpePaCMPsIbMUTAIQkUVsnMYxvutRQ01/BsFXvVzVxu7NbMOKToZLf+UaLVbJmOuvqNBvp7A/faHcLOjqQWFf9AFHWefj1JUZrnVbcWxFt9U8eqZH3MZfN4mxi97+5aeBegnfDa3oYOXYG+uSp7etwr0VbsldqmPHuKXYH2Veur9qS9E0DZbnut -+cpSJ9Kx8nXc3QKEN9SNKgvpJBpqhu6Uy1r6PkTWe9TbGyBlTWy/c6Ec79ro2sMrA+iNbIOj2wZywEy4whh8BgCzPNg4DVfGFpEjqfPmoYVYTxZZoI6hN9YAtQIjAd2wpXA3g5NJkgZ8tUNDJvwsfJuob2yGP/EI83FV4oKx8crOZBFXnGnQgVAZxe29Om2sDczAGHFlvKvx6/eAz9YiLBs7wR7/9zn4A9gf5s1hCBzCzftg+B6Mv6/jvKeh/QRqb6HoTWC/3Z3e3RfiGb1C95YPobKdr+YANcrekimMxfSfUA0DDbPZ7EG4MqlXvjT6FA3RyhpDoG10pmTwNZM+GIULw3oV5KPJy/W91E3S3WQdGBhcd6FZiziDtnfXkO7LHr3AEwEEk8BsAlyW7OLM5KUCWlMMfEJTGIlbeNbCuTCOD/C4DI/pAO0YscyNwuyRNvWAhC7WU3y8j8IFSKLBODhM/gdQSwMEFAAAAAgAAAAhXEMbFsXRBgAAdBMAADEAAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9hbGdfbGFtX3Byb3RvY29sLm1k7Vhbb9s4Fn7PrzhAHxYoLN+mt+0sFkiTzqRAPAmaTF8ZWqItbihRICk7XvTH73coSrKb7qIL7MMAOy9BRPLcv/ORxy/o/PrX7Pp8ld1+vLy5p1tng82toStZF3azOTt7+bJfe//yJT3UpRaNKmwQ0myFkZVo0rbYzcXyAecvIKoLGVQUMLrStRxPR1lj94X1ahC5s63LFamdLlSdd4LdyVq1ThqRtya0TonyUDi7VUYs58vXR5K/f75moTKExr+fzZp27afO51PrtjNVz3JbB1WHmXRB50aVoTIzaHgzC/mseB3y+fLt/N0/zs7unay9gesUSkXQYrQvVUHwHkEElSEEXeu6y9b727s76j2iSoXSFqTrYOn60+rTb+d0lZ2Th11dY79QG4koPO01DraBglMSW1syOign -OT4K0m0VzkgPfdJjqSBjcwlxGeT07OzFC7oej39WuW4Undd5ad3Z2Vf6RStT0Ff6Ik2r6CtWsiyj9BdfD30kYi299g/YWlKjkMI60H62GyId4zoV8zHfLHf7+ea3my/n9Pstfbn+8it5W+i2GhRMaLWnv9Hb1/R4KZEV6iSpkTDXKc2d9d7o+lE5Vrh49xNVK0KwOSvyrdmwI4VmV7r/PGS94iTT4okuVx9XnSb4iVTamtX4g0NSVVbpJ5xsnMpb562bHVmbwIgPXakYGs4ao4oslDp/rJVH7q0pJrSgknrNyWNbF20e9E6JppQ+5iG3VYUEatRoRMWFAZatp9srWszntIf7rvd/0JbAxEo+wmOzdoBQdmVNld3tpasoHZic5q7lDNzpbSWzc1M4nZd0DTDPk4vKjO1irCyQDLYwn76hfRhqPboa1W2sQ+UMsXSWpCPkONXcC8+rV3FMmnuzlE7m/PHPmKrequ/M/pXAB7SYLr9v/kg6+WEbNKk0E3QANuvuf9ahjMpRq7xUFS9yA9WF77wZaif2Gsy1F20VMfV6TijyK9QAkDrSPktBZg5adxIuQUM9oj4oH/zPgEBVjYuNVrnyXcbWyoOsKKnho3M+y8gZU7puzeOJ2z64w1EzeBXapgsAQBWp5StkSDDUNKcz1c/ulKv1tmTY5u26AyU0cRPMflksCeaGWLiMvWtIY2zMtYJH6lkSj2ymTKqqSfwicrb809vkYU+HIHEHXZUEVYtIrU8hJjtDDh5v5VHhCIS6BRf8ffkOcDpQqW/vLrIC1d4hRbl1sRjELI9w8gPfJFWD4NYarHgA8oNcG/U8h5wOejeHCPicMcDMyHx7D/cjg18mvuWdF0MNReopkfr+h0gzWS9QoQR6DheZg5a2AeKHXgDbWFcIALqViToHyzjk9BNLDmzaO7Ns8iD2OwFasq9EUanqG9kR3h2uGdBdUeIt2WAjdZ3YcDslLnx2iFEGesTV21/bfKzm -67xpDGqBZIvadtf0CUsJ67CK5kEWcEl7VIdFVemHKLyslJD4VrLoM2F6NQP9so/HxkH71UpcyLubVwJKFk+CIS0SjQvQOKcliEUpTsnYc85NTzpwD4TMzX2ifVxTDYgmHh1dE6AVAagWhu/hjtZit4gasbB89AXtxfovrhes++nwvTJ/v20i9mI+xocTHj99sf6o6Os8BWD+RzCczudvfgyKA82JVIhjHhQdh4lnnPXfYzS1/58wHWEKzsYziIMZsVqiFP9/YMVt+idY/8hg7XDo6b6UgVYt3vIfIF3xQATZ1Zhx3P4ZPfAw+sD/HOFQF3HlO3jtDo4eH30jvPjZXCGtKHQ6jc8NUNp9WI83oOTXS39GVDe+Eo/bb7ejzMnmMF+cSN+JvHq+naSHzZ32mm9vnnh0o0Mfc7/OL7c4DPCi3+OFeIL8mCcVkddV1KMcnYb0ZBaBp2NUHCP64Uiwf3l9wkPQwXqI8j/EFvFmhMhGsVL1H+cU7eMgstEO5U4DNsvjYZtLvLhJh/7M8bDyF3861KSWjwOFxxxu4ozoldupYTZYa2vstnseYyDX9TT128CQ6Mbo7TdjDexLPFkdz5DxIQvw4l3Oo8Bx7TLwhm99dpzQ6FCwTzqP7148yaAqBpvlRuoqxjrtu9Q2I9ewH+f1IdYgvfUxFW7ChFLpqS89ntOp7hM6rvWEh4cTZzZSG84WW/LQ/GF2lV2QLHb85ufGmqZG/GDbupDuwH12XyKP4+8cUEU9bZDP5WaD2Sja5uD633qmEPxs9x6mNIYWNkxdwJDdqZoNUltjk+dR5SeoYMDfro3p06WfjD+VcPiShimhGxub8uC7WQQZtG3ybKN55o8/xvCGoR2D1E+7OGBkn/VQiSg7hl+qCOaU8ue4ytfkcDz9yPRvwDA9+xdQSwMEFAAAAAgAAAAhXBfcmTXNBAAAVw4AADAAAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9yZWNp -cGVfbG9ja192MF8yLmpzb27tV01vGzcQvedXED5brqS4aZGeXNuti9qIUedWFARFjnYJc8kNyZWsBv7vecP9kGy4aAH3EiAHHbQ782Y482b49vMbIY6sOXovjnxtZUsmZKlcJZ1qpAtbExLJSNq2hL/6Xm7mcnl0zF5aeWONyiR7f2cb69Xk3EONEHu3VkXyWW6UY2cbvGyVvlcVPc0BENZbf2gHjMWAEUMOOjj5T5lPBvu4KavcJTZXOtvN01OtQ5S1VDIhNevJ9S7lVSSVgme/jzUJY5MOG4o78amjjkRU/j6Js+tfZ9dnN7Pby4sPHwXOPONDC5VEhs9apUwpi1blWuSwVdEIJQytySe7cjCwEa81OTfTwWfkJ1Jns1pZZ/NOaKdsI1akVQdQm0UNYGORfxaeuqjg1rncRRK0sYa8RmhvBBokIrEPPdiEc1Xianb23dXsZ/zORYXWpZP+pKMfTrvmGv2Jh1znUtQ+hhxiyHpnYqjIyeV8+X1xnyxXUaFlTfA2h4h4T0wmvwEv25Q6YpP5aGJADI/2bexw9mJrQbGGFFsuj2D4V0nZULKVl1nFijLn/PlZmEblaB9Kw10FZgJlJNWy1VluN1KjtafSNNSMGTSka+WtLkQpx5mlsM6lp/e3SvThfhLgCUWBrBJKYkQTTOe6xB33XUPRagHSqmPhQ+aHo6NwajWwiycoeNP1ZGzR0zIB85N3YguuUNSIIQqj3t/e3QlHyhyLRA5tR8R1DE1hV9utnE01Hj3jggvKoAdThyIxu8socaDLK2D29RAhCvrUWcwaxxyfauY3ZdQA4GoF2rPh1uYaLzn0WOqnJEg5otbVjoMw+Z6dCNXgoxSGLk6Wz17VtqpnQ+ZiFTpvFGZNhwZrQ4FUY6gyMrJMhhzNyioIL4xOh6F2aAV6ufNIPKM9h5PAqbjgq5lBAbk+IoZtwrymxHx7LHzL1LSOSYTBVSjxS5Qb+cVTHIObLF5Ly0N/VF/f -e0pJdg2jnM7ne6u+Ay1eDjWU68jrrm/5i4bghcSsYkePS7OvI5Zp2zqrFTaU9KFfsHuAMWcszpbajPWBwmCf5dIGqtN0qqQakgr/0XVeuiEaZHcApWNIyVl/z/keJrH48W1zI8/V3YdTCaDFg7y4ubyRace7BTvBPnCpslzUEpXpmT2hYudGkODv/u5Amhgw5KmfRNg/o0IwNt2nKEEMiXVg3H6Oyo4wtmt4UZWJLTn9slhyjPPrBeM/7EYUFL9Tbu/LLCIE4kWq2fvtD0fl3eNA7FKlg2swbMdWvp5NPSaa/j/T6mQ+f/ffqcXXp8eYZzkUktegZTAGXhHu4rLvebM2WAuv4dwwiN9o92+0w63nsPxxvD33eBd/DeRbLL+R7+sk33S5hmIAMNw7dCBAL0JRUL3aGiQUJHdFSVifwyS2DjoGNU3ODMIWEH8Qrm3NSuYguV6HpXLzg/hQHkntBs+icMRgBz40XV/mY2iEfAwt0rX8h10Pw0I8dUirp5DI+GwoirsoCQibSSqOUntK8HeidpJSs+Dd7rjIzVEF9cKPwz0RR9PEChXRTofYmEfNQpAeNFrMuR/qx95vCvvbmjWQWDl8wXAxqYqsmNbKugSdmUM7ngUySRTZGQPgG3xKQJIBm6VTrznFoDlPijx/8/jmC1BLAwQUAAAACAAAACFcidp3g8ACAAAaCgAAMgAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X25leHRfbWVhc3VyZW1lbnRzLm1krZZLT+MwEMfv+RQjcatkUsJrF05QkOCwgAq719QkQ2KtY2f9KHTFh2ecPlHJbiPl0MSp/zPzm4xjzx7c3dyyh+ur+ye4wzcHP5Bbb7BC5WwUDQaPjjtvzwYDmCjE3KZlylNLs0KhnJBgTAZaNYK65BY/CVKl02ruMU+NfrXB4nrKpedOG7AbznWac8fD/L13tXcwevzVzMQ/LRob87/exFc68w1aPNI5 -vsXJMDlhw2OWHMa8rqXIuBNaWRY0NMCcPc+YK5F58sFIYkvt4hAoVqVIa8y1SxXlvaRsnO9ndjqJor09GOPcKcJIT9HwAqNojH+8oHyg5tbSTSLPwSyFFmo00LyJMziMond4CGOg+9fyd5IwxmBxpacbdhGeFuPLjfFoMZ6jZboi3Jx8junNNqGM0Ea4GcnGXsE69pOosNZCuTCzyukdLowTmcTmX55r71Y8Z/AJq+1K4gMaT2gVNYuIETyjWmaaKqGK8FpprJzRko0P2LCcwDLBIZSwsP7aIEgrzIWvUiLHImR2XpczS/QypbXzLGSTLEEkHSCSow2K5KhPjMMOGKfJBsZp0ifG0RZGOcuNLuiDlLwSSqgditJm0gXkuBNIa2H6QDnphNJanD5QTrdQwqaQrnckqV/px3NaAv8oULtRF5hvHWFai9QPzveOOK2F6gfnYLjFk5VcSlQFbngvRVHuULH/mXYi2953dyFrLV+vbNvb8S5srbXsjy2cnLckMbVB1zQLUcSaiMuWBUKbAtwgUN8AL8JYBzlmwoopAs9QSi+5gYoOUCO4ZOH755mDrMTs937j7DIOR3XlyVJpF7oc40C8NGHmx38I8cKFXFCzFTXo0DzMwdkavAitQnB+Qa0Dl2C9WM1lkouKgghJ7PPexMKy6YLQ65yDnSnKhs56SujN+aAIGeKqEzMUHq0NzRNoJWf70QdQSwECFAMUAAAACAAAACFc8JVl4UMFAADoCwAANAAAAAAAAAAAAAAApAEAAAAAZW1haWwvY2FtYnJpZGdlX3BvbHltZXJfZ3JvdXBfaHlkcm9nZWxfcmZxX2VtYWlsLnR4dFBLAQIUAxQAAAAIAAAAIVwn3C9fIAgAACgQAAAgAAAAAAAAAAAAAACkAZUFAABtYW5pZmVzdC9hdHRhY2htZW50X21hbmlmZXN0LmNzdlBLAQIUAxQAAAAIAAAAIVwMjL9FOAkAALcXAAA0AAAAAAAA -AAAAAACkAfMNAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc2VydmljZV9yZXF1ZXN0Lm1kUEsBAhQDFAAAAAgAAAAhXBUjdI+4BAAAo0sAADwAAAAAAAAAAAAAAKQBfRcAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9yYXdfbWVhc3VyZW1lbnRzX3RlbXBsYXRlLmNzdlBLAQIUAxQAAAAIAAAAIVw8oJM42QsAALYwAQA1AAAAAAAAAAAAAACkAY8cAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2FfYnVuZGxlX2VudHJ5X3NoZWV0LmNzdlBLAQIUAxQAAAAIAAAAIVweUNN8wAUAAHI4AAA3AAAAAAAAAAAAAACkAbsoAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2FfYnVuZGxlX2VudHJ5X3NoZWV0Lm1kUEsBAhQDFAAAAAgAAAAhXEqQSe3DCQAAH9cAAEAAAAAAAAAAAAAAAKQB0C4AAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9zb3VyY2VfdW5sb2NrX2J1bmRsZV9tYW5pZmVzdC5jc3ZQSwECFAMUAAAACAAAACFc1O5gFjkGAAD5LwAANwAAAAAAAAAAAAAApAHxOAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NvdXJjZV91bmxvY2tfcGFjay5tZFBLAQIUAxQAAAAIAAAAIVz7J55lYQQAAD8NAAA0AAAAAAAAAAAAAACkAX8/AABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc2VudGluZWxfcGFja2V0Lm1kUEsBAhQDFAAAAAgAAAAhXJHdoqbFAgAAdzUAADsAAAAAAAAAAAAAAKQBMkQAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3Bl -ZG90X2hfYV9zZW50aW5lbF9zYW1wbGVfbWFuaWZlc3QuY3N2UEsBAhQDFAAAAAgAAAAhXOXKIXynBAAAuU0AADAAAAAAAAAAAAAAAKQBUEcAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9zYW1wbGVfbGFiZWxzLmNzdlBLAQIUAxQAAAAIAAAAIVx6nlRn/AMAAGgkAAAzAAAAAAAAAAAAAACkAUVMAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2FfY2hhaW5fb2ZfY3VzdG9keS5jc3ZQSwECFAMUAAAACAAAACFcU4631Z0EAAB3DwAANQAAAAAAAAAAAAAApAGSUAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX2NoYWluX29mX2N1c3RvZHkubWRQSwECFAMUAAAACAAAACFciWjYzXcJAADwFgAAOwAAAAAAAAAAAAAApAGCVQAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NhbXBsZV9zdWJtaXNzaW9uX3BhY2subWRQSwECFAMUAAAACAAAACFc2QjDh+QEAABJDAAANQAAAAAAAAAAAAAApAFSXwAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NwbGl0X3Njb3BlX3BsYW4ubWRQSwECFAMUAAAACAAAACFcz8QsJ0gDAADsGgAAMwAAAAAAAAAAAAAApAGJZAAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX3NwbGl0X3Njb3BlX3BsYW4uY3N2UEsBAhQDFAAAAAgAAAAhXC6MBM6cAwAAQgcAADYAAAAAAAAAAAAAAKQBImgAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9tYXRlcmlhbF9kaXNjbG9zdXJlLmNzdlBLAQIUAxQAAAAIAAAAIVxbATCK -aAQAAL8bAAAwAAAAAAAAAAAAAACkARJsAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2FfYmVuY2hfc2hlZXQubWRQSwECFAMUAAAACAAAACFcGYLmM/QEAAAhDAAAQgAAAAAAAAAAAAAApAHIcAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX21pbmltdW1fbWVhc3VyZW1lbnRfY2hlY2tsaXN0Lm1kUEsBAhQDFAAAAAgAAAAhXEMbFsXRBgAAdBMAADEAAAAAAAAAAAAAAKQBHHYAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2FsZ19sYW1fcHJvdG9jb2wubWRQSwECFAMUAAAACAAAACFcF9yZNc0EAABXDgAAMAAAAAAAAAAAAAAApAE8fQAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfcmVjaXBlX2xvY2tfdjBfMi5qc29uUEsBAhQDFAAAAAgAAAAhXInad4PAAgAAGgoAADIAAAAAAAAAAAAAAKQBV4IAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X25leHRfbWVhc3VyZW1lbnRzLm1kUEsFBgAAAAAWABYAgAgAAGeFAAAAAA== - ---===============3708708170734746000==-- diff --git a/data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml b/data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml deleted file mode 100644 index 2c49382..0000000 --- a/data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml +++ /dev/null @@ -1,126 +0,0 @@ -To: info@materialsmetric.com -Subject: RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Materials Metric) -X-LIMINA-Candidate-ID: materials_metric -X-LIMINA-Non-Evidence: true -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary="===============0029337424494743983==" - ---===============0029337424494743983== -Content-Type: text/plain; charset="utf-8" -Content-Transfer-Encoding: 7bit - -Hello Materials Metric team, - -I am requesting a feasibility review and non-GLP R&D quote for a small acellular biomaterials measurement package. - -Study summary: -- Active material route: limina_alg_lam_pedot_lowdose_v0_2 -- Runs: 12 -- Raw measurement entries requested: 228 -- Articles: no-coating control, alginate-laminin hydrogel control, low-loading ALG-LAM-PEDOT lead, high-loading boundary comparator -- Timepoints: 0 h, 24 h, 72 h -- Required outputs: sample-level pH, osmolality, conductivity, visible precipitate, visible shedding, swelling fraction, delamination score, optical transparency fraction, raw exports/images, and chain-of-custody by run_id - -Important constraint: we need one result per provided run_id/sample_event/target_field. Pooled averages or narrative certificates alone will not satisfy the study. The compact bundle entry sheet is preferred when one raw export/report supports multiple values. - -Could you please confirm: -- Can they execute the entire 12-run H-A service request as a custom R&D study? -- Can they include pH, osmolality, and conductivity, or should media tests be subcontracted? -- Can they return raw exports plus chain-of-custody by run_id? -- Whether you can fill or accept the provided raw-measurement CSV or compact bundle-entry CSV schema without changing column names -- Minimum sample volume/coupon count requirements -- Expected turnaround time, quote range, and any sample-prep constraints - -Attached/package files to review: -- reports/nhi_pedot_h_a_service_request.md -- data/nhi_pedot_h_a_raw_measurements_template.csv -- data/nhi_pedot_h_a_bundle_entry_sheet.csv -- reports/nhi_pedot_h_a_bundle_entry_sheet.md -- data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv -- reports/nhi_pedot_h_a_source_unlock_pack.md -- reports/nhi_pedot_h_a_sentinel_packet.md -- data/nhi_pedot_h_a_sentinel_sample_manifest.csv -- data/nhi_pedot_h_a_sample_labels.csv -- data/nhi_pedot_h_a_chain_of_custody.csv -- reports/nhi_pedot_h_a_chain_of_custody.md -- reports/nhi_pedot_h_a_sample_submission_pack.md -- reports/nhi_pedot_h_a_split_scope_plan.md -- data/nhi_pedot_h_a_split_scope_plan.csv -- data/nhi_pedot_h_a_material_disclosure.csv -- reports/nhi_pedot_h_a_bench_sheet.md -- reports/nhi_pedot_h_a_minimum_measurement_checklist.md -- reports/nhi_pedot_alg_lam_protocol.md -- data/nhi_pedot_recipe_lock_v0_2.json -- reports/nhi_pedot_next_measurements.md - -This is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal QC gates. - -Thank you. - ---- -LIMINA candidate_id: materials_metric -Vendor source URL: https://materialsmetric.com/ -Bundle zip attached: data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip -Bundle SHA-256: 6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35 -Official contact URL: https://materialsmetric.com/contact-us/ - -Boundary: -.eml drafts are unsent outreach convenience files. They are not send confirmations, quote replies, measurement evidence, or material suitability evidence. - ---===============0029337424494743983== -Content-Type: application/zip -Content-Transfer-Encoding: base64 -Content-Disposition: attachment; filename="materials_metric_nhi_pedot_h_a_rfq_bundle.zip" -MIME-Version: 1.0 - -UEsDBBQAAAAIAAAAIVyK/2dfAwUAAFALAAAkAAAAZW1haWwvbWF0ZXJpYWxzX21ldHJpY19yZnFfZW1haWwudHh0hVbbbhs3EH3fr5inogV0SY0CLdSHwnXSJIDdJrbbPC4ocqRlzMuGF8n6+xxyV4rkyC5gWZcdkuecOTPDe7+gG5E4aGEi3XAKWlJiYZs7n4Nk+vf2ekFdSn1czOd2H2lr4Ex6O2/u8vIzy7Sg278+Lsh5N317/YGEZGOyEYG6nQp+zWYqfe69o3fTS7IsYg5s2aVIPz4F8FPTvMNqfx7ZpGnek7AU+EvmmLRbk6AVNtRLbXTa4cFG85aEUwc0tz+8pi/ZJ6aVDwiPVhhzhHGp/YHbMTjqhXwQa541zV3KakcxWyvCbtFM6VImvWHar6Pgc+IFGW21E60w69YI2/asfGqN3yofud28ai+w9Da7uKCf60exPTkQr6A57tmxWtDFxW/luJC0NByLxJBSVOLSI9ybCeE4nJp4ijO10+6g+rcQYJgaL1RZd3n9dnp9eTP98Ob1P/dkWKgJdXrdHQKWPjsFolhuexFE8gEY7rXl3mskbUGvqJvQxS/l/68X1BUqgKwDK4IQfS4xUdjeABNvAKR/NyEfrTeiZGlSgKlcNKzfNhr5M0x9YKl7ncDl24+xY1VgTShukbICcBUE1no3IcWVsyjfKEofsND3EAs5SUG4CPzs5O5oSYDo/Nj7kOJcW+Q3TqpdZCe0m/rVVOaYPNK9hJuya7WC52yJF0gRgEdsDBkWtGVyXCg7RspiNrAMB7DwG63w+7B6PgjRQgeX5kmENad2pdmoGX3w3iBQbDgUIAR/OhGgeDGXZGR9BSoJT4Qpp2w1nOt8grhJx9WOUgeBijlndI+PNWEy0RIJhHTFT7siICfSsci74lCStO3YDbAPYswDlzeYvK/akAUfDeC0EQZuRBVc+WwU7Xwm/CxiOc6tdLClIK6EK2B22I0laqEiw/nwBLw+ -hRS19iOHjZa8dzgJMKMquK11Wrn8cbyfdtJkxd85qKbsxEUQL3YVomWlBfpFBI0lBMrLWghQhtXJ5oFTDu7YEqCW4wteKMs/dYzVoSohsdWqZKW0Fim5T5X5Nw+I7fS4xK/u/iuhp4maDokqz6Ls2AokOoFKKkDceih2k62DOyxHQLhBndtsxyKjTXnK87HJ4g0nhaEia5vFijePPRf+VBiLUEqcEkp6MvZGFMuaB1mF2+2rF5bpjzwfm+YyJQGMaj52x8Ie/kx+bL3FDIOV4tx1euyBXSvaMfftmPuZVQhVIokncZCsPZ4RbWJgQRXMZNycXzLI2FYZ2+r3MfY8kjPhz4GJdRK22RkvH/YLrXB6VSi8dMjpyqLWcMhz4qBWHJsa+BKefdzYVZ5AObdiCDRiySY+H1Yt3/pVO1r+RW7fBb/EbDgfRWh1jGjB/69FjxJv0c17bpF497wYTwOfZbcf1K3SURpfvPWyQzA0umNrnA+zQxke2xXasHwwOj678HA7CD551PVZenUSImvFO+XiMPscvTu7nePHdFIvZb/mvkPDxx/amvF1hO+GBisDM+4I6xl9YsJwrOPk5Dp1uNTEjFE83qukEdpiiqJPl/6GWaZ8+L2MQO/MbpiDpcOyKDM7nF5santY1VGZAzo69nfY/+MVrctwmxW4wj2UhorPf47Xj0WDSyWhG2qDET2ciH7bi8NVD+nfT++hiY09KVZitQArpTJH0W1jxVon5Y6Ur8yHXokxdGDNpXE7zCg80LjZcbne1TnB6pRUL2Kk6/c37/++BJdZ8xVQSwMEFAAAAAgAAAAhXCfcL18gCAAAKBAAACAAAABtYW5pZmVzdC9hdHRhY2htZW50X21hbmlmZXN0LmNzdn1XyZLbRha8O8L/gNAZlGpfZk4aaWY8EXZYM3L4yqjlVRMWSHAAsKX+e2cV2Iukbh86GgAJvpdvycw6h/XQ05dhWZc+3q209MshCG36eRrpxx9m -Ok/zurw5HYb9mfK07g/7sF9ovh0S7Wf6/4WW9fUx9+t8od4wy3uushXWhszJ5Wy4TEyUWELIxpMpwlghknIiq1B4JB+1wb13OVpcS9+/+jAPxzDfdWOIb9I0nWkO6zR312h/645hnYcvfZdpHG7xYRyRdpfCOcRhHNah3i3rdO7mS/sknDJe/oPSOkyn7eHrVz/+kMMavgE2h8/7I4XlMtORTuuyX+l4HsNKr9Nyu2HkXhrZK8NjssnqyGQQhjulMgN8F4tMMTsD/NolClklzpUuPlIUSgWXLEWZ+t8O1I3T6WZXpvnYvfv4e7dOXRnGsfs8rAekG8ZuOC0IWRNpEHB7vmK4DSNK8fpZDPFyyiPt8dZ8t18OROtj8tYxZnrPWCw6KSuCCSRCjCyqknWQ5IOi7DULQMJ0CIXFrEQOOTktM55FKVz/YaZC80y5S9PxHNLaAJTWo/Uyn4bTTTedqJunzx2616GsO2Cjbsvt792wdvTlDFALUAH4imos02VOtNugdS3xLpQVr+PRAKAA/vqliXwG9P1QcqU06z06lrJQUaFhiVsTpPMyMym0jUQsh+C1YDnFGIsp1rmkJOqEVmKAo+p/uhzDaYe+5Dpv1960biwNee1dxV2h3Fflp93bK+SuZbaher5tG/z95TRO6dM9HoQcSt2whw5qXXcsFCyOz8VwspKVnIRNmQVjYmbJ5yABhQkhLCUWcGE087Y4SyIJiUL0v4R0GE70iOc+Ei7O54pjvpz2Q35zTSuNYVmuWJY6qgm4p9YWTMG1da3FZxDK0uZ1DfMNelgGGvPyYue+xo2yfXrsnBCO94xIJstyLMlEIbihAnA2OKWVcTomo9BJnm2m4GTM0buQfPSCIsriyredm24re9HnbiqNUoY6x7VT30zpBmJLr2v46S9QoL+o59gAPBk+KT3vDVdkMHWkCkvKMMmJXKiDhzE03plQQIbCl2yiLtqQ1BmLqp0Bs2gd+v9RGs60qxW6 -5nofr9vibakGcBV1B1y3SUSLVvry0rjdJ7y99cykcWmc7YtHuYuxThapYolOYVWEAFcjPedBFKV4GZlIMqXsfBEyWMmT5Azkn2L/6mMLsBvpFuk+jNl69zhkdZ6uaeBLpxWMPa9DGqnv1uGIeg/tWWPxkKfL+hJ9X38EukHj8pSynbc9MwV1Fqi/E6wwC7Lzympm8N9x4XW0hRsHsjZSOm2BBJPHRCSn0CVqunRa6wy9WedwWsomPV0LV7lu2bj72of/vIf0QDxOp8aTeBP1nrfHV3zXGwB7aNppWl9Up3TAT+ynsk8XyFu+e0TopWC90Kw45QylFJRgRlgZA9BaVvlMsFRKFBHKq6UlFSHDEIOcNQCXFHTqX/0D2X7qWpjdVHbXMN092g1jW/6KcKUuX+aa9BlLEebG0D16NEJBqV4kGs4PnavCUIE9v0DfYXvYIK99nwJ0KkvlYk5FM2liKWiWNSJbKVXOENmCa89J8cKYdC6wpLUUnnEtdf/qGxJ4sitTKV+xed/FVoaNt150Dy/wwDaByyUeh2XBC18zmnZW9EljMQhq6lMJlrAr0oVgnFEK4uRNiCA2qZi2jLi2QVoAMRagVElCA8zvhLTnXQlpG5lTwuwMCZZhi797jF97kw6UPvXVNtE84Et5WNI4VZPT1493y2E4d81bbfgbmeBZ04E4gQ3hxv4C8xmma78kGLV9nffH1mGXeh3AFQmCJJRLHD4icu6hwTaanKxIjuMzGTjP1R5xTbKkrHzGxMIjRt//K4xjRBHhGChdWhNqlCa6LfRa0zxSHgJGl4C7Km3FkKbLuX77cLfU4ryBq7xprHNlkS6keYKs3bZyvmCnvkP3sHSgP9HzDI9gUnBwgMzYKOAArfEQaGFchPom+AhrOJQ5W0NcaEg3HKMWPsIbgx+/k+IWcdciXlMDyw910dCbNpUdxGi4OTWLCqt7CFXCrlp2fVjxZ8hGnYGX+OR+IPaPA/GENJ12vc+g -P1AhKFMQ58ZLuIkQTVBJKCwYKBW2MXlpvfKwkGStcJA5y9CxqMz3PqNSB6whLO1j0K4N6IjGbU3ddvPJDFcwH99/bI3Dry0v63CkUzp8YwAtZzDsYENyxrMsnYkxC1kgsXBKhTSUQEaZPVoERQiwuzbiq/AQFZzgPnDT/3o9htxvXYt0tamN9tewfOqmOYMn2wLVA0iah1biF/M9Ym+Pl+PTQ8f+oRpPFonpPgkIrkamFscKZbkyvjhNkWdcWZYM0tbMaW5t5gZeXXCCh88cwk0ll/7d1ZU+VhsOCMZmOO5qno0/NtLbtucCh48+/fddd5jW5Yy/Z2GE8QaKe9yf52md0jQ+ZI0zHesTvIFOzHsOX02cYRU4lt5zx7MUHGvPtYGPszhrBKZRfumzMSFwLL9W5d771KPPUIbUvf3537uf3/6y+/DP97/+1t0HvWfy73d4bu/vm7u8ZXvx+o8FKrWV1cBKixSDh4LHpLkwEasplLfaKchlcEgwEFhKwM7AQyfG61xkyy0rOiofn7HSW8SuRsRpIGDSqdSpbUcDNABn1g4Sma8chYPBND5f2hPs21fn0YfaCrivHidNbZPiOD+HCEeDEzSIRga4FpzbcFLAAUcXW4JSMNK8+TOTcKApMmrBVf/u2mJkPB0RIF/d5ZOQTfOR3J9QSwMEFAAAAAgAAAAhXAyMv0U4CQAAtxcAADQAAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc2VydmljZV9yZXF1ZXN0Lm1kvVhtb9s4Ev7uX0GguC+FZCfudrdIrwekTg8tsN3tJrn7qtAUbXFDkVqSsuMiP/6eoShZdpzednE4oLFdcWY47/OMXrBfPn7Kv3y4+vWWfcwv2bXkOv8suW+drKUJ7Ea6jRISB3+00ofJ5LZSnjVc3MvA8GvrVAjSsJV1jBsmH4J0hmum+TJjwmp8W8eDdRkDxVIaUTHbyPhoyj4F5jrBHj/A -xoXUutXcRW3qvSKeWaN3b5mKtxobGGe+VYEvlVZhx4Tmqp5OJi9f3gQeWn/x8iW7g8hyVwRbpEsKuqMYS70Dw6UIaiOZ4KZUJQ8ysmpVK8MLrteF5nXRyNKGQtttab0sNmfFnDivWxMvOp/Tf/iWQaRT0vdGyZJO5/M3OF60zpFDf1tE+VXBC2UCv5cFjCmipndvmXTOOv/u/M2rt2zLnVFm7d/Nf5hMXrzoQyBL9pnjmofJJGeXLiihpb9gd8YWwvIADrIQv6GL1XcZ7tqVzq6lJksURI7PNC4uTKX2FuKPl5BCp6LiWkuzliOSSq2rgQYq3KpaNha2QIkzVmVs/gN9/jRnFU6vZaOVgFdxej6YoRysWPCmix48Fm0ZYu8tv58pI9ol7LGG2RX7/OGSbVUw0nukVdtY4ymhSNaGa3Ks1FLAqlLmW2VKux3IeGCvfmKLKa5oPo5zCumItJXI25LxFRKXSY70DL1BxPGrr63mMcW+k3NhTdlSav0F3vcOTg4rJXVJViLoTlovUDhM1XwNzyP5VyslFAkMluEMIn0lSwpLxkoZYx3dlzG/hWfjc7o0OG58w5GNYkeX/WxDruVGatY4u5GGG9Q71XMtS9XWGevzh0p0TVWT7Z3dezljKblI30Y2QeHM29YJ2d1KNiDYX6NKM+6JRLAKR6TZNKbGldSoRMeXmjLicfx/9oj8EGCK2j2yW+7W6EAc+b/iIrBHkOd5zg4+8Wxh60ZLKhptzTqHWTVzqNRxQBY3/ybxWlOpxtO+jiuOxoD8Qt1lPUtZ8JANPazAv+iUjCnjg2tJYqHKLBlfrJROHkCdQ+S2Qrd08N+GI9a49w49h89G9YXOAB0O2lQRJMxAFU2F39wdGWaNzJ3d5tAo7y7N6VK2bOFbGW3ZUWrAXY/si5MrNBmwCQggzzkZWmfQ0kN1wcCoSSCDQITRkTfG0mAWeb1p9O7djpxChgkVJAuVTKIgu1ODRUbKpJjhnYTn -TEbilfBlJwKtcWkfZqK3seh4i2hLEW3Ze+KGE9WsS0SGlqVixxCtD7bc4boPdHt3PKNKYDVvPFVNNLQ1XbiilPiT2iOEwPpPV1lMMZFOhiLNYGtqbFmqEyRY6PzR4Iy7rnWhg4nqOZujroVdFUnXvU2fhlzCSG2sw/wjyVT8yKFHRsOm+Yg0HNpTVHtoONlAjuJCK/UN6pX0GaShXUBPj/GOeKGzVl20DK/j/EKSoD/gCM4cZXK0pB/ymCfLIgmcdXpfyY3qDNd2TUVlkHrt0gcV2vgY4vq2ctxDRo0meo0qahgB5Hn4H2VAdYe6iHhiX3IY31otk9OBELSKkxLaIUoq6F3UHIGJyh6GoeyVxlhbT+uSTDmYVP+kRhw7UvxF/rdbCsOV9MKpJl560IEuRi3obhwYeJE8V98UosY9gA74iM8O4neCEc01qCes6ekJZoIyA5mgGVlitNJTqg4q13EPRP83ITGOZkcRB8sg5oyq5vxguqTREzm7yMKLYeBAh2mh3r5EDigp254hRXQXP5/nGEkPu/4ZkXf8lqYHnDGeZcXK8Zjkx+om4oPBx3riJG+ooz5AGPzF/fooRHuyJ2xDeI4Y+wAdszYfu5uObgBC6Y8T5xNJPUk/1Z/a3T8AcU/UsYzqpxBE/gp/ozQYg64RLVXtopOwUV5hHBfoHUI1wN+jJEtnbHSGknWtpGCuuPbyUEYPV54IqDmBBdJ+ADTHYqg+b4Jt2HWbwEKCwrE441c8pqUDYY8DAPj+aaWOC/UZCE0+ooaETtAl4ow6hpAsEVB9pV/oPNgJQkQshKCU91H9pRS89XKQE4evU57wKc5sTT4G0FBlp8mzkB13ebsKJAgrwEiDniOnPak/XnGl/f72bs/D+JIOMQppQsXrCVWblcWYlUmFb2wGVFrTH9k2EEQQ1Dii5IsvNzeM2HAev3xFbRL5WjoFnf9xNj0/Yxvfaz0eX7ODBpboX/8tG6XAkMqQMz87xLj0 -7HUcCQdF/vez6Zuz1Ev/2ypDSTidnzZqSY7hgFFd3Aj4gTwADwc2CGbc7wljFNSK9tUYhLestHFtRUOrLeElixV3MUya39N8Tumcs6uOnGAGluI+kxIY7QZ2g5YePYN6sw64NDbQjN2+B2xpzb2xWwL/O4Nmj9rI0GIehtFJWyeyuKQpj3Rx99L56f5eTribbBLOjlautLsQlumA5Vv6AlI6wIwRUs0SooqTZRYiXi/iSjO6xtZwkLF5Krs+M+CufaV0TyJicf1EJlB5jH8iFH2aRSWakYdrx9YNJRBfMyBuJ14mxHcNMYy8DZV16quMK+dSW3Hvwfh+RgFcWY3SyNumW2FuOuR7mfaSGMojND+AeSzts38BgfkZ/9q62ZUVEcr42QKg6GE2P5v/mJ+9zuevZgS4CWySGTnR4Ics8+UuR2hzlLbLQYJyC7Pv3iagYHQHTb2nMPviJHB9Bo5DVILxf1bQX0L9z1zTgbuL51Des5oR4oPIhHJbQ/HtyWpu1Er6Z7T/JkuvKo+vlwpH74r+XwHHXUV3b69FfPP2zZDuCaa/Yy4RE42eGjANhSjuCVGfZu3Jxjk+sCRhVBuX8W1HWup3k8l1awiHehqkNdxW+vRChMDpkAVxBT1e1+kdJPXFEquCuKcEtpFra909ur+QF5PJ3d3dkvtq0uxQvuYV66C6n2E0lNIV305EejM3bXbfxXwitU5IiMvznxDQqQIJwCfd9v4/qp8nGqma6qU4mdvdvDllRy3d4TA90WlO8f0hjpgGZ5OhgC0i5PJBhadq9k37WFMqDyP1SWe3wHxFepk7avFF974YHMiSmJzv0+ROb7iH/E3bPHr/fujFsTBlt9UIqsJiLPM0SapdYymtIxYMSrPfFjmAKTfdK24XMRH3NEIuM5oj9LHI4guq/ThJ7+oq2W+HpDCL9kwn/wFQSwMEFAAAAAgAAAAhXBUjdI+4BAAAo0sAADwAAABhdHRhY2htZW50cy9k -YXRhL25oaV9wZWRvdF9oX2FfcmF3X21lYXN1cmVtZW50c190ZW1wbGF0ZS5jc3a9mFFr2zAUhd8H+ycO3cpgz2MbdC/r2PZuVFtNxGTL2HJL9+snJx2NS43uufeqpWmDG31XcpPzwRnnvnZtNZlu8La2d7aPVTTj3sb61lnfVnfGz7aaexerzpppHm1bm1iFwY4mhrFO32a/rHL9FMe5S0+PwDCPjU0Mb6s+RDu9ffP96tuPr1+uf++udp92faibYKLr93XCpud9HIPf/Xy/e3dIg6JpTTRV+mGr0xdrfWdbN3d1bzoNjA9RQom2O960dAvrpqo+S/az/GkewvF/J9iS9bZJ11tbd+lOj854Cc2bzvWuX94Sgx2iS9jW9pOLDxLqtGzMu7/pheHINtMCb+phDDE0gbPltM24HHa4qo4P5vIwdcEbfzxgdz11F3/2bFa62s5NdHcn2q+LpoNZt67nH+q0WONIJ5LGgYbDw+Qa4+sULkN6q6Z3QHXnJneTsmoYbeMGF48RcRMe3wda9Olg2zYtU0RP99b75eW3ozldqZ6eKfBbe/wAnj4nUxPGdF8efynQw/KZS5fiaNJFM9q+eRCf5PKDMOxXAEHav8RhxP0KI8v7ZzsSBP6KJE/8FU4v8ldY9cxf6JLQP18vjshzmDglFxg/959Wq5xKKfkXVMHoz+El2b/FVgv/rQFK6b+FLxL/Hy+F8b8CCOL/JQ4j/lcYWfw/25Eg/lckefyvcHrxv8Kqx/9Cl8T/+XpxUJ7DxFG5wPjx/7Ra5VRK8b+gCsZ/Di+J/y22WvxvDVCK/y28IP4PD+0Y9tbX/8MC7nqohKwAQNCmAagcigLoe8o6gIqiSoDKQy1A5TI1kMHnPUAEECOTSCOmZoaWUwFpuc7BIBlkWGIbCPh5HTDgoA8YEyAhMPiFjEBshMgIkROgVogMkloBbYbILA0viNohMriAGWgNEZWgEKGMliiHk9gBbopoMKWTFRWE -vC/i0BUVodIZcQYUkgSxNyIjRJKAuiMySCoJtD8iszQkIeqQyOACkqD1SFSCQpAyuqQcTiIJuE+iwZROVlQS8laJQ1eUhEqzxBkgkIS3pq37g0vJ0YaYYvc+Pcxym+ntEp2R1QSM2vQEnUQRBbKvrCnoMKoq6ETUFXQyUxbZAXlbkBHESCXziKma5eWEQQRoHQ9SRpYmdoZoQl4aLDxoDdYMSBusCcW8QeygAIjQHFAPBaDk7kC7KICmYw9RHwWgi/iD1knRGSoRy+il8kCZQ+BuiopTO19hjcgbKh5fVSQqLRVvRDGVEJsqACJUCdRWASi5StDGCqDpqETUWgHoIiqhNVd0hkrQMtqrPFCmErjBouLUzldYJfIei8dXVYlKl8UbIVBJczDe235vz6Ye3P6Ad1ooKSsVJnDTLCiPohd8j1nHoEiqaFAuahuUz1QOcUzeOyCIGM0glZjQRGpOQxBG98CQkIhMsZUU5uTVJBgC+kkwCZKUYE5hUxFbNBil4iqoUYOBWrZC2zWYqekrUdMGDyhoLFrrhpIUI5zRwFGxGtaC2zgMqnziVxGXvJ+TTCmgLpWuTjKosLyIvR2MUpEX1OHBQC15oX0ezNSUl6jbgwcUlBet50NJikHO6PyoWA15wf0fBlU+8avIS94ISqYUkJdKOygZhMnrH1BLAwQUAAAACAAAACFcPKCTONkLAAC2MAEANQAAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9idW5kbGVfZW50cnlfc2hlZXQuY3N27Z1dc6M4Fobvt2r/A5Vr3M5Xp9NF7cVMz2x1V81MT03P7i0lgxKrBgOLcNKeX79HfAXHYAkhEX+crr6IjZAEvOeVzANHi3UcRtRnoUvSNNq4PFlnAfUfWETdFSV8ndHQJ7mbpDQjeZL58J880jh3WczzbL2CP8XecZJT7j6RaE39kOS0+nNFQ7Ze+VGSb38Rk1VdJKerom5oyQ+a -UsQPknWaxKLu8jsa0SDPkhC2Qv0ZI1G1ISIrFrNY9Cylac6gREhjzvJNVYCL4hH7m+QsKYoRLsoFfpoleRIkdUXpZx8qyl9qhi8eWNx8TPgqiUgEFdfl/NVXvvL/etwtUOz3anOQxOE6yNnTVg3f/GDVVaCqobX5iXG2gIuVZjRgKctfTnO9hS9pGLK4bpA/0yiCj/5DRgJx8PUFosU5K88HD5KsricRpwVazTMS85RkNA42LzunGUsycVqzdXFdSAalS/HkbEXThIEsKgEFEeHczUn2SHM4FBqFzaf6WKP1KuZ1+fLLLHnmbWFl9H9rBgpsy7L+UhTY+p5+ZzznLomi5BlE21YyFM02oANQGXdXjHNxUhgoj78IuzzIf/7j8+yH2Y//+e2nX36eXV5euS6omcxblfH5Ak7LEroBJy7k86VP5r99/vL7zz99/XMmdg6W0AUaP1I/XjKQZJjk/pI9LiEKiLg4sz+uZpdLsR/oPCeifh/2EQp+8IM1z5NwU9X+LuBPbs+/K1ejVVdWzIUy5fHBKenplTgl1HsJbW83qIsSOxHv7ZjCjftAIk7dix9Fmw7ol+au80TjMMmcDCSVwUf4s+jJLHmYVT1xPn377ztn7vyS5M6n5AfXWSR5HlEnIgsaOWwFFtW9X3VeYddfi17UO6ZLsALXier69ux7UfUZREpd8kwgjkFNi9JIC6W1ndPbcU5v0Cny2hKvpOte/JtFkZPEkegUiZy6vXlGnxgF9TtFNdx10nXu5EvqZOTZKWtyRE0OyZ12gIgyscNp7hTDwL82lDskDh2IdIcHGUtzPi+2tGUDAm4ftV9cvXfp5t3Fqyi67oqih3UUjQqeLbeESKIZWIBQTDESiOu5L3yurYWPvF9bRaSDgycZHK5LJV58ahVwinadsl3XAU9ni6zwe5D4YyHvkPE0IptS+YW24wAuTOiIT4XBj1f61hyh6ziGHOgpRMKNlUhIlxtejNtwvlMaNMO6 -uFrPSfZX2Z09wXBjLRgKKxaC2OmPuzsL8fbOP7yO+Y/XM/PpLNo5VfL6pkSeypTotoyNL+IonTRac6c6Tqc5ThFr1YBWnIwZAUXD9eLV+CbGoi/bG8qwbe24YkGWQM3pprXTnzDnmsGcBqbPYVm1s1V0Lua9tPibVlX271b3sBFQ3ZANC5jo6pyCYdxWhrG9b3m1YDoGv5rAqeNF8n1Ov8PlFmYJc6BqwOHajtL6JVPqQFzQSkNp+DD9oCo6VI6lr/vjvvRV+jvNk/xOq4bSr3VjVRDMq4DsHCRtBIj2EZyC5N/bGSM/H9Icsa83sGHnZoT36mZEPd/7VTrFy9tW/1bzvd4DOQWt3nXeH1izKDRyf6CsScye1tBFVrhf8Rt0jwfbuy/QdAI61D5Gd/fWnNd/U87burnnqd6c296r75agJ7sl6KneErxt7kyII63vTHCIpfo2g+wGwx9ickOrL2DX6uyV9xeChIjgakJ18dKK2Pfb198d6HWcswfYxXUWJA+WTVX72/1WNxQmQRGLxUG67SaKKtrHYvjexsQX6xSc5IOVUa+5AxzCUADntDx/K8L5W/8wVOmZ23cDe/f7q2pQLH+JvfolVY6OoNUm3EQ786bllx9rdobAne6egmDvrQi2TYPgnLI4WC+KEwxX7m3uhu/rkdsFr7a/a4RZ71dqEKxrQRt5vp6rlTNTK1rc6t0p6PCjJURzffsmjAaalctSFEJKg5TGZCBdXZo19Dp+Jsc0yhGEoAZBTV8wdIL/8cHwFqRGOR6Q1SCrQVaj7xnXE7Oa2lSmgzXKVoK45lxwzZXhRxqakXIaXqOsaCQ2J0Fsrm4tEZtatxMhG2XdIrRBaIPQxpKZGH5UofaQN6A26n6C3Oa4Ndv5yMJ4zU4IbpS1iujmsKXYybwNoJsP12+CbqBZuS5FIUQ3iG6MBpJhFl/Hz+ToRjmCEN0guukLhs4HAsYHw1ugG+V4QHSD6AbRjbZnXF9OjG5q -U5kO3ShbCaKbc0E314YfcmhGymnQjbKiEd2cBLq57kwjYADd1LqdCN0o6xbRDaIbRDeWzMTwYwu1h7wBulH3E0Q3x63ZzmcXxmt2QnSjrFVEN4ctxU7yLUE3y02YJY80akYgmBXDCBXZSYi2vzW3bzMmQEM+YzxaBjB3hSAximVGhAlCGIQwfYof8Dq7guJNs5cRokfSgqQFSYu+MdwbJC0KzmEGsIzwC8QpZ4NTBjx4oDLmjacoI2SLzOQkmMlN50v9EmaiIE4DqGSEOBGMIBhBMGLJMQY8FKBgFIZ5yBjTQPpx3MIcsIqAgjANQY8RgkTEcdh66yTEIxCHhYRikub65YcJxJByGA+YAXhaJU4mwxzSSEHQgaCjT/QDXgFXEf2UpEOqe2QdyDqQdeh7w91ErMNsIrBRloG441xwx40hxG8w4dco5SLxOA3i0fku/AjiYTCx1yh9IvRA6IHQw5JpGEL3lhJ4jfMN5B5Hrc3bAXn5VbQ5AfiQahLRx2FLTmfZ+32CsJCQS9Jcv/4wAReiD+MBY4hNW0m8NSpSEH0g+ugT/YBXqFVEPyX6kOoe0QeiD0Qf+t5gct16FfOwjz6kloHo41zQx60h6G8wYdYo5SL6OAn0cauzGr2KPi2jD6k+EX0g+kD0Yck0DGF8SwmwxvkGoo/j1uaAvPYq2pwAfUg1iejjsCWns5x8REnYaixKnts5z8yntpK15/YXwPRWSD9Mx8z7AYRaKVSM4o+RwYIABAFIn+4HvCqtpHvTBGSk9JGBIANBBqJvDybXg1fyDzMQZKRrIAY5FwzyfsADAGrj33gOMlK8SEJOgoS811nlXUmiBlDISIkiDEEYgjDEkm8MAPtKdmGYhoy1DuQhxy3PAXnkleRpCIiMlCUikcNWnc4y7fslYSEVlrTBfSLEdFhIRYyHzQB4rRYtE2IRhXhBMIJgpE/6A16nVpP+tGREQf3IRpCNIBvRdog7kwuuq1nIFHBEwTgQ -j5wLHrkz9niAwRRZo/WLhOQkCMmdzmLqaiq1jkgUVIqQBCEJQhJL1mEM+1tKlzXePZCTHLdCB2SiV1PoJKBEQZmISg5beDrLou8XhYXUWdIG96kQ02chKjEeNsa4tpUEWqPjBVEJopI+6Q94/VpN+tOiEgX1IypBVIKoRN8hTK6YrmYhU6ASBeNAVHI2qMTYAwMGU2qN1i+ikpNAJR901lBXU6l1VKKgUkQliEoQlViyDmOPAFhKrzXePRCVHLdCB2SuV1PoJKhEQZmISg5beDrLq8eJXw2x1WDU5F0zn2RrX1tu90ZMroVsxHicDGDZ0vAwikU0AwRhCMKQPq0PeP1aqnXTHERT7kg/kH4g/dC3BJNrqEs9wwz40HQKxB3ngjs+DID+8nFuPOnQFCzyjdPgGzorpktlaQBtaMoSgQYCDQQalrxiAKiXWoRhlqFrF0gwjlqS9wOyz0slaQheaEoRkcVhK01nWfR+KVhIgrW3sT7hYfIrpBbGQ2UAVpZHyETYQhIjCC4QXPTJfcAr0XK5T0cuJIpHdoHsAtmFviuYXARdbhu24YXELBBfnAu+uDeC6Q0mtdLWLBKMkyAY9zoLn8uVaRVhSJSJEAMhBkIMS3ZhBL9bSl6l7xjIMY5blQPyxctVaR1kSNSIKOOwxaazzHm/GCwkqdrbWJ/yMDkVogzTofLRCF+2kphKO0YQZSDK6JP7gFeW5XKfDmVIFI8oA1EGogx9VzC5lrncNmyjDIlZIMo4F5Tx0Qi4N5h0SluziDJOAmV81Fm5XK5MqyhDokxEGYgyEGVYsgsjKN5Scil9x0CUcdyqHJDPXa5K6yhDokZEGQcntv8DUEsDBBQAAAAIAAAAIVweUNN8wAUAAHI4AAA3AAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX2J1bmRsZV9lbnRyeV9zaGVldC5tZO1bUW/bOAx+968Q0Lcizpqk624r7mHtOnTA -3bZbu77Kiq3GwmTJJ8nNMuzHHyXbaXJVE8cpAjQ1UASuRFHkR1L+CEMH6PPlp/DrxYcv1+gyfI/OCpFwii6EUTN0lVJqguA6ZRrBH0GxFFpylhBDE3TLOCdjENZWDN1K5TQoMg1hiqKxU6X76JOxq4U0KKNEFwrW0juWUBHTfhAcHl4ZYgr97vAQRSkmuFyHqTUBO91YUZLMIhCtzFNy6uTfnsDYR7ADVI6Xp45g5ptdhoxEJM/5bD4KEmjKTIroT6YNExOkZaFiaj2i88XnVzfOJHCWvBIpwzlNpMF+C/uxvouC4OAAXZWqzjnRmuog+F2PxHYE/a4QhieYCsMQud937t9oDJikWCocp4QJLG9xXGgjkxkgEEuVRCA9GJayEIukiA27Y2aGM2qowvRnLpWx6/NUGrkozTIyoXZGgx5wGU+l+uFMX5SSOpOlKkVrVaXSRan8cv1+ugDIGcjA5LhgPPF4oKeUc2tLwjIqNJPCSmcAk986Q7OcKsgV5TxhIi7GxMATl5O5nI3BpZyia4m+axoEIbL5gUwKqUE5vSPCoOiO8ILiwwgSmheZ0C55SZ1Ct0pm1QLCbT67xOihEpMeclj2ECyZm9mv94nqFMfERD1A1FksHQ6wSrhBJrRRBfhsMANEpikVoPzfgsG6HiIiAWxc0mC7cWSVfy2MM4nEpqiMWkhaRMzykp4VFkhDXUYu+f+cUR05N00KwqWnfYfW+1uIpbMeYhEEURSNiU6DfGZSKUZIx4rlRr9yavDaQshnD1aqQmDOMiYIZsbCAZG2crCTM+AjU9qg46O6NGzRVIX+G30rBHpQQ+WJAQ9/M61tAYPezP5/YwM7j+pSiT3+a3MLTq7w7PvnD39dhEdHA5tNERyM7lwM7RwUJJwyAmpoAQE2SSH3SAIWhN8G4VHq1jUp4ohMCbNHzxKEbmYhgU4fZM9pmbn2AK4eM5qwIsOCZP8b4dKcLqQEzkqo3B4baYk8CA23QqjZ -0dUao6XyqtxZ2pIJ0Es4zq5wnPkEbiFX6+nVGLbW60N1tBWqq4/4J0XzjmkGb36cQ0aznJn7RKpnYN/E2lcnLOXEHgC29J19tbzMDYsBE6OI0DlRUDsAk4JjDiTXYL8jK3yROt4qUqtfs08aKbsVJ3wpO7/oDP+YPBSosrOaXo19a70+NF9vheYqOvKkWMJGla/3A863NVg9us6HxclWWKyiXVu+c0AGDrMih9KZIwKEKjZKJjALxafuPXR1xhyfyykUV2KLDyiemVUC2opz9qusRbuVtnIxFDOEDl7gazDdsTW+SL3ZLlINye+TZvB804Yn7AN5Hw5/bIXDOlL/pP4vbhav8X1J1uf323Z+D49fDE0cHG0HUccTvTxx0LI/qWHtiOLOiOKgZaNUh6pjistwtuyQajj3iioOWjYhNRgdV9wZVxy07HDmodoXsjho2d7UQDxbtjho2S28Gb4cttiykagh6tiiny227FNqWDu2uDO2OGzZL9Wh6tjiMpwt+6Qazr1ii8OWnUgNRscWd8YWhy27nHmo9oUtDlt2ODUQz5YtDj39QjpLlJxQPs854ACQk/xlfXkeehqIBsh03NDLDYeerqQBmh0l3B0l9DRFDSLUMcFlFD09UAMU94oAjjzNRQMMOt63M9438vQrTSK0L3Rv5GlRGvj/bFneyMPzV/n7gr4cjzzMvwk0Hc/z8rzRhv1E96V450RvtGFj030h9jK90YYdzV5+GR5t2DR0X4R3z/U27Ej27kvw8YbtyLP8Ahy6+Ud+X58gAq8Siw/h9W05xAQ6v7rpVzeZziQMEzWrLuGVN+2k4LPFq3i6ugoUOkOQcxiRWEmt3Y28JhfxTsvbRfaOD4J8znvLOllmT0WqerBS2ctP/5z30MTuXd5XijlhGSIFuAPL7UWoKnTzDWDY3tnpB/8BUEsDBBQAAAAIAAAAIVxKkEntwwkAAB/XAABAAAAAYXR0YWNobWVudHMvZGF0YS9u -aGlfcGVkb3RfaF9hX3NvdXJjZV91bmxvY2tfYnVuZGxlX21hbmlmZXN0LmNzdu2cXW/bNhSG7wfsPwi9lut8tWmRq7Ub0ALbWrTbbgVaYmJitKhJVNLs1+9Qshw3rCSKFJlqOHe2RYoU31eH9AMebuo84zRhWVyUTJRM3sdlnavvpJQsbS9JtqOFYLmMK1GXKU1STqoqTkVeCc4yImmW7K9cM05jScobKuEz5VnV1bklvKZJKe6qmOWVLOsdzWVS0n9qVtIsPqrf/agKxPQLqyTLb75qgHAu7h41KgpaEinKhKSSifzHH96tflq9+fP3n3/9ZXVychqfxr+/e//xl58//LFSV9It3ITmNzTJtywpaCZksmU324QLkkF7q0+nq5NtPFYshjIbmqfbBFqGwixPxHWS1pUU2T08SCrKLIYRIuujvlbrtkp7uVpvE7K26Jyql+yoJOr+fY0/T6tb1QF6taMZq3dwC9l9zMmOxufxNeEVjZ+9UX2Kqi2lMo5uaZ6JMipB9xK+wsfm/itxvdrfP3r7+a/n0Tr6VcjorfgpjjZCSk4jTjaUR2xHbui36+37BVV/a7rRVSy2Qoo44t39Buo+2/cZXAQd/8hJSiO5pXCZ8KgkdxH9ovq9bru/vhPl381zRURCOVZFBZHbWFXJo5RJ2v5YwXA0V6JraJsSGA0O5qNZdGzoiOVRI+iRNKDDscsrNejPnz2y4Fl85s2C8CpmNfj+Fl5gZQlaJu0QKFu2A6ub8Lrm3Ml746027jsuBmPQivb26MeoqbsXLY5SwtkG3mV4i8ENN40TMlYVnNy3JmlskKfwECANfGsC1jJNcQ7vny9TNO+gkqKCl0aF0MMj+zBDsb2vGEiXQHQvaBOD9YbbaEQ52bGcHIrQK1HIpq4sCdQmJYSi++S6bEP51S2r2AbmhQJ0ZwWTKpp1v8Fts+aBL1rh36uHjgpeg3Rt69GD0qDgPrA1Y7MiOeHQ62of51RMev/1 -hdYzRxV3LC0F3Lm4P6r0B0yQq0qSHYxQe+voq6JrMExJm890f8v+al0PD8PYNbREf194DHqi2ok26rSPrKy+jyHf6Gs7rFBU1iXEi3wjvqzpF6gNUicwae2rVtYvgOoOh9Al77X+PC+y6/jhehcEP3QPsFd4vXfbN8PbEtV/4VH94l24ia6vrSacFe8Ok9pvo/OYPH7l/6+T2kuPi+2qLgrOQArQYFMzng0sso8uuy2y2zupmbRrfb8QVe815RCmS5HRZAcTU8kIv2rmN7UaB59QmNrgWkbzCl59WHqrdVNdCCXvlZoXGGf/tnOh+vNSqfIpTHVgiVRwmNa65bnqQ7c8BwGLbq09tsr+pCZNuv8Bqu4foV1kp4Kof1cHf24eWlF1P3/4GEHvc8nAESWs8YkEr3S3Gm73c9dQJtLmz17zkPFxE80tjp9l0Qv8S49rueqOcq6WUhkEEHBS65Yd/A33u6ozabeJgoeC3aoNYkCrXrsie7SiaqMj/GU/OE/dc31o5WHRtkwvvPIYAiXdNayjLpvVPcvTetOQDzWUHjww1F6j/XGB9EH3rlwrMUS0DT2o/3gqbKfTRUr92kbqswsDrVWhp4FL0DLSpSW58PTEZqlt7MLAfKmzHwImZ1+c2ixKjH0RCDF1fkDGhIxJt7gVWDe2+PdCmbp3ADGTZoBzrwYIApoOEQ5J0xTlL7yuvcOyps4CCJsQNo07/4XXdV1w3NSZH3mTnR2skLuxHYIRp84GiJwG1b60UfvyzEBtVehpkBO0jMhpUS58ZbPsNnZhYOTU2Q+Rk7MvXtssTYx9EQg5dX5A5ITISbP4mRVtN7b494KcuncAkZNmgFOvBgiCnA4RDpHTFOXPvK69wyKnzgKInBA5jTvfaq+6ufNDI6fO/Iic7Oxgxd6N7RAMOXU2QOQ0qPaLx2pv77NS3FC1xGwnA5jgYZrg+41sfZf9JMwNdwa50qKs9vLx2trBajNSJAOPITxyFl/b -RO0g/gyoyEB0JERIiHQfa3DcwccheJCB0REDaSq/nlFlZ+hjEquQ9UyQ9/xkxkXvfGTHQGcEOgh0xu2t7Q13sfec+MbA4Uht7DTX8LWD5rMwGgOtEc0MSno+RVK1natXUz8JZyPdQTqzKLdpJ3o4uS0Qn8GEstn01zYeO+nvGdFg4hgymn4rTwLNo1Z+akqDCWK9Ql/OKrRXUIOJYFYKa+dtOCkchtVgwhfCGnOHa7uq3RweCtdgYpeT7BeTEPSo7N6JDSZwGamqHUc9NKZqO1Svqn4Stka6g8hmUW7TDshwclsgZIMJWbPpr23cddLfM7LBxCtENv1WnkSfR6381MgGE6x6hdaOjnYS2iuywUQqK4W1IyucFA6DbDBhCpGNucMn7WUed3goZIOJUW6yT2LRo7J7RzaYAGWkqnbMM6ckO8or4+Lu0Vne/QX8JEGNdQipzZIM90I7Y8LRcDNyGyOnIbhxtoC2QdfRAjOgGyPpkd0gu9HdrGFoRzeHoDdGdkd8o2mtHcnsqLUzwDGLW0hwpoisnQDhKPJ8DMdIbYQ4CHHGTa7td3Y1+ZwYx8jnyHHslNcAtaPys5AcI8UR5QwKqx2fPDyoauPUgLJ+kqZGu4Q0Z1Ge086DcPZcMJ6DyVOzuUDbxOvsAu9IB1OokOn0GvrlREhtYOinpzqYSNUrt3bssbPcnsEOplNZ6aydEuGscyi2g0lVCHfMfa7tjHb3eTi8g6lVbuJPxNcG4gcgPJhgZaStdlzx8KiqjVYD2vpJshrtEiKeRXlOO07C2XPBEA8mW83mAm3Tr7MLvCMeTLlCxNNv6Ink2sDQT494MPGqV27tSGNnuT0jHky/stH5UjtYwlnnUIgHk7AQ8Zj7fOIeahOfh0M8mIrlJv5Ejm0gfgDEgwlZRtpqxx7nItkHzqSN58fnWH/7op9ErKGOINNZlMm08yYsTTYjyRl1F0IcZ9m1Tb+Wss+AbkblRmqD1EZ3sAajLR0c -gtWMWhwxjaavdqSxpb7OcGY8PiGXmSKsdnqEpbDz0ZhRhRHEIIgZN7a299nW2HPil1FvI3mxUvuVhpct1Z6Ft4yqjKhlUEztuOL+AVXboHrU9JMoNdgVpC2L8pl2QoS1z4LwFkyMmk15bSOutfJekQsmQyFz6TfxBFg8YuKnpS6YANUrsXYssbXEHsELJj1Zaaud92CtbQj2golOCF/Mva3tSrb3dhj8gslNboJPwMgjgnsmMJjQZKSndvxw/4iqbUo9evpJZBrsCiKYJfnstXagg7XPgiAYTFyaTXlto6y18l4RDCYrIYLpN/EEgjxi4qdFMJig1CuxdrSwtcQeEQwmJVlpqx3JYK1tCASDiUiIYMy9PWFP8Zi3wyAYTD5yE3wCTx4R3DOCwYSjPj3/A1BLAwQUAAAACAAAACFc1O5gFjkGAAD5LwAANwAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9zb3VyY2VfdW5sb2NrX3BhY2subWTdWsFy2zYQvfMrdiY3D0nHspu28al1k3EOad3E6ZWESUjEBCRYAJSsjj++C4CQFFu2MZIpyz54LBILYN/DYvfNcN/An+efkosPf/x1CefJb/BVdLKg8K3hovgOF6T4HkWXFVMwkaJrlbVR1iaZEt5RkGKmgDVaQCEaJTgriaYlSDJLxoxTqEhTivEYrrqm5FSl8EkDLtcIDTUlqpNoTKespE1B0yg6OPiqie7U+4MDyKuMZG6zrLMOZS06lElKynluTG87YmaNRr/g0NmqM/3eZvTXdzj44ZopzZpJPwDGUTv6Fgc/M6XWjeHM6M0b+N29vpBMSKYZVVF045/mcAOfKWnM9JveUsENGiRJ8h7sP/AP+PYIHxTVXRtD0SktynmM2zJexoCsIatFd0U0Ew20UkxpQ5AjnHL8zs4e4c/2PAahasEJx+3dNDyHsis0mxqH6HUrpFbLWcdmVjVXrCAcd1AtLcwO -MagZ5Rw9j6GknNSsIe69WVJLgpZE4iHNQdJCyNIsOTrBJQ0pfdSccaKUY6R/U5g3d7lYJSG/wlWrTMisqAhrMjHOejIyt1OO1kcjZ7uKLauppjJzCM38thJarFqzmkyoGVG4DkLLZkJ+VxWletXK8OeWktQv5RZdtWrPH99PdW3LGdrgoD3HNQg8zVnJatoopNhY10jTeu80rVsq8UpIi6SPCfzFxWRhZ87gI5NKw8lbz/WtuPzSNXDnWL6Yy+uuFl6TG7gkckI1xjzl9oB/uEXuJtoLsTamYd2rPspzzDI2ySSYQBI8aM5pg2fTVCxraSl0VrFJhZhIidwkX46St5VBFxQcJqRz4+NpTUvW1biM9j8bUtO8HyeHfTKxd/rQLd1H8yHmmsMNnDTzTGAQs/59TqaFmuaLO7sxF2HBP7pteg/8ccf5Vqgfd2eJ+3gb3A9f4xMLbyVlWTN6Klptcly2mruysSQ23Z1OmWJXnGYtnhBrmTbR49/h0qVxYSjifPrNlun3LrQnipmHk9vIm7j6sQS8si46jKWnFGYFzEINen0lrg/pNS7aIAhOrvoV1caMLF2442baluMn4OGh9D1yBoMd9z1bL094qwz5UNGxd4NyjDEpSopVBt1ghJ/ay8Js5Wkp3hMcK00x0nPMm+Zmdy3GJCtPlZnA2X/uYqE5Uca+wHuDCArB78utK45sl1vdSubye5x9Tl3ExVa5Jbgc/2Ds08hQIRPi1ROFz6P64rZRMRTohzzZFuzo5CXICfRyJ3rCs7EvgsLjHl5ReOSvRlJ46naiKTx7ey4qPCcDqgrPxHPIisWRD6QrPLbXKiw8f0MpiwV/+yUtPOxdaAtPwR6ICw97SHXx8+glqAv0cifqwrOxL+rC4x5eXXjkr0ZdeOp2oi48e3uuLjwnA6oLz8RzqIvFkQ+kLjy216ouPH9DqYsFf/ulLjzsXagLT8EeqAsPe1N1Uc1LKSbUpCQX2likMOj5XnwB -edi5rbVEAPZdSIgAlNsphwCcL0IwBBC1tU4I4OoZ5UEAAxuqggDcTy0GQo5zAw0QgOQllv4Atjap+CFs7a7QB4Dctr4HAB64rAeAHKKaP/8XiEe8G7Se7/KLQwjO4Sr6i/rCEELVoDV9D74ohHAwQFUf6gtC0JE+cV1/yV8MQvh66sr+DF8IQmAOWdt39EUgBGZYdbcdjLf+fnoHBJOsIZ9w31UMrIGzr/+kfRvmuZjBpYBvikbRUQoXnBQUdEVBUpwjyaxvyY3BZZIYbKWIYUFxDEKCrb+JGCd9/XVtl0TbpYo1bZkt0VUajVL4yDiH3PZE5zHkvsk6I9o8Cgtd2CuK2zbmpenwzTG7a9nhuWu8bDnMKtqgh/92zDRoI8R1Cbc/ELuXstSl0XEKZ0w7yAq1yr3Owhhh0imVc+BMmUG90n2K83uwhjIHvtAd4XwO5haaPJ5GJ6nta83bua5EcwyqkKzFBC+7JuPM1NYMfZE2ZaQtFg4DlVO3MKvNKlTG8PdZbBvbJ+hj30PNCauBdHjYUGKxLSkyQmznujnH1LWCC4wAIud9h7zvdDc96quo1ZLHvnPewsHqzyx6Q4YC0fC5bY4vBXXt8QXuhETe6ZI/XXiu7viqtDn9fj8Xcva6WEP72B9W9D9QSwMEFAAAAAgAAAAhXPsnnmVhBAAAPw0AADQAAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc2VudGluZWxfcGFja2V0Lm1kxVdtTyM3EP6+v2IkviG8CTm4q+iLRKFtkK4tAtqvG2c9yVrntbe2NyEVP76PnRdQOFSddHAfiHa9Yz8z88x4Hg7oj/GVuP7l8s87GotzumUbtWVD17L+xLEoDg8vZZQCy35FkdvOyMhnh4c0GfwV2IeB/Lf3g0tX9y1swuDCKb4fjIaj92J4KkbvBrLrjK5l1M4GkWzwwEpMVyI2LHqcIWASGhcHCkgD2+iqY+Vi1VSy -Cht/qi10WYfFBF7dSrwztdLqGYf4DTwK2YNq68HWsRu3DMmb41F64Vp3TMbVn7KHj0dJM6+MbCvjlsoFrny2rJJltRhWo0lR3DU6UJd5IDzNnCc4SDPtQyRZszG9kZ6Uxt4oamejrCNt/SvpKm+zLhIvtGJbM/X4ZsizNNSyDL3nnCOSngkP7FmVRXFwQL8/fqUUUVE80E1v6YHudMud01h/oHMfdQ0W8I2lcj1OeoChEII+84svE1RbLjaBYhPWVbUDD3ZewZsqReCdETfHYthMsGtIDX4nnzdLBi0r3bcVnOG513H1fdesAqgFOVFOtcHSF8GOTjLu6OStgT+MMvCH0esANyvl3Rw1i4rTVtsXU/2S4etA76X7bcH3Uv71wQ1aonpseDQ6/qQCqc/S/rLpa8Hvpf7tHdhL/2s4UDfSGLZzfnJwo+fNizT834bXdWWPkm/rzB49X8+ZNFyS0PgNs7woBF24tkvTZ71b7HaT8noWKbo881oZ64bVyzejd0ta6thka0xmpribU9IqjLz1zOcSmNcyBKz802NyhnQ2ey2NAOKCLXXjDfYPP9KwPB6mhd5qzLYF1EWfJqrY+EAb/OeHutA6I3PMCR52qq+jXjxGhtNPqWNfpxH7BSdbRwsd9BRjt8uiQUcEcPR0PSBViZUjCkuohHQc0EbDLdwRKc7XXNZAFGoHAnK0p0fZXdfFRBxFL21I9Nh6RT8lg++GyaOrWc5zalqaSW1CohSnuqw2pFrIJDbA3Vj8TGwgT7wDf60OSUVCx4zFBVnuPTDq3kQojbXs2Oilj1BBuTjgjFZJcOKG0MnhnW7a3RNZPa0Vk6Dx5hZPpHp9j22wT3Hy7l4fdXWslouqlsGdVKrldpLLcEMQstrIAMBh+Z6WccdQbp+z69vbHDUym8NCSc68a3M2un5qdEr9JjKxiYw2PQKUX5N0E7WRuqWp662SfnWWmAu93vXI+vNaqVlnRVhZHA9CUpIHyOgg -ZS/RZByaVQEr04gWSHIxBADdoNyhEGmCCnFeVXwPaTghI6cMsnKjYKFH+qEqW8jIdMKgA0uMWltI06PSpjxLhREhF3NJZgAZtspR7WTlmrvzGfroqXAsiuMSIRuT06Oe/xuxdiSr0TVkWYxKgojPG3ZWgJQ2+ZvY8b0NdHH7d5bDE077EruP11IyKLvVpCzelciDwDtNQj+fQ6M/MbN8H6unGjjtSSWrUIIKriHlDeLBSmpFbXv0GG4R5OIoVXCIriuL/wBQSwMEFAAAAAgAAAAhXJHdoqbFAgAAdzUAADsAAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2Ffc2VudGluZWxfc2FtcGxlX21hbmlmZXN0LmNzdu2XQWvbMBiG74P9B9GzzNpQ6CGnwQbdZRtjd6PanyMxWRKSkpJ/P7nZ0iXI1me7t32Hktr4NfLzwgtPEL3TUKuW+70ZfsLpBhzARO6kCMCj6sFZla49OK0aEYELH1XzJwiitfsYuBSmtV1XGxshvH/39fHL98+fvv2sHquPlbF1Y0VUZlf3INL/Jnqrqx931a2slFFRCc3RCf43kR7kt0zyO55/nLvHrQ291UKreNymu+2+ieowXBxUUE/pE5yHRjkV02ed7wUJbZvetQ3PoPXw0s6LFLRm24IWvTJiuKhDYz1srUswhK6jFyY44cE0x3OA36T3W9+yxu6dNR+GF7KEjale7IA9QZdewRI6JroIngUrfnEWJRiWKkg3zL4HrxrWKdBtYMqwCKmjdNybOZC7dOY5iE/PE2A0YCeP4eWUKp0RTkfD486lCT4O3+Z+9oakyMWIbO6JM4rzrBkZKL/uCDFGMl6xJAPxsSkh/giAD5vZW5IiF1vysCHOKM6ztmSg/LolxBjJeMWWDMTHtoT4nwHKY+vtDnT9ckJlMHIzncnozViAUE8rTgH0teQQZgTm4qQUoE+rDlVQQjiqO4VQTniINob2zGHJag+R -xpBetS0I+aEWShBHBagQyikQ0cbQnrkuWREi0hjSq9YFoUPUwgBRg2hrI1XtoLWx1vY5/YnhO6aUqJTKSNF4hIBfAM8sTBH3tRoRbCTs4sgU0U8LEhWBwTgqScVYTpOIOZb57KnJyhLxxvJeuTYIZaIuMCBHtakYy4kTMccyn703WX0i3ljeK/cGIVHUxQlkI4XWYHbwDwypdhIjU7hsRqlKQaogU0Fmg5AFXEsW4V+AvzhJyDKmtYuqmYt0VMGQ4ZyIUQtLWlg4UFk1owaWNPAmG4WQNWpnLtRRcUOGc/pGLSxpYeFKZYWOGljSwJusFELx/vt2fgNQSwMEFAAAAAgAAAAhXOXKIXynBAAAuU0AADAAAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2Ffc2FtcGxlX2xhYmVscy5jc3bt2NFv2jgcwPH3k+5/sPawp6RHAoV2PKGWK+gYVG2l054iNzHEUmLnHEOP/36/QIsazU7CgoSR/DBtdLGTmI/21X45TrOEBDRyxJoVv2Ehabj/iaQpyThl0sn3V5ENgQ+CZAkNsSROlmDGSBSEnElMGRHFKvgQUUk5c3LJBV6RIMYsSihbBYxLkhcXSNgn332E3f5bUwGbCIIjvpb5n3/MJ9PH8f3ixZ24I5dx2B7LYnlK8O5Wgifuk+d2YpcyuBNOnMYrHPVfOh0UOx+beU6xS8dz5wv3bjF6mc4f3O/jEfx57nbgDtP59GU6mjkplmFMIpSSiK7TvyKyoSFBHzt++YeQDO0PDtEIXpjKLYKTQIdjRTnJsICDjIZIkJCLCOFQrnGC3k/OQVJgli+JcHYr4SJCM4kOR5yjV7LkgiDYngh4KXgYnK8FSYsDvvoCr8tCOHr4uhL09PUe9idJsk6w+HjqkK8zzt6fc4gYRwndwFvAZbmTTYY8T3mCE3j2YXHXdSjppviwoTl9BRIZPBPNqIS3OPwsh1OJ4GGG+RtsUxz1UsCL -wfMOI5LglDJcfAhyeGUy5JksHi/YvSqcB2Hh9rDgGAxL2PdEFPZbvUPwdRD+ns4tA+MYZPE23+1EYR+yW34aFKqN34l0dUQeJz+ep3ejGfyj8WylmCTF7x2dD1ii8+H3fg1IT4XC79mCmAviqITUcShF5FqLwVbESAotMlIHoyIkfS0TWxJTtQz8o0sCS3RCBv6vJRmoVAx8WxJzQRxVkjoOpZLcaDHYkhhJoUVJ6mBUlORWy8SW5Lxa4m0k+IokwW4XyprMtKrXOLq/Vsy1PPhv6Y/7p8XDeObORt8hIHP3rjTXyvlSInAh6P8WwhkhKBLShsHniHieDsG+IZaAGQRq09EGhD4enq/jUWqHVWKAEu0cq2aR3oZiluV1VSBKsyyLwRAMR2ajnkIpHD0tBFsOoxi0Skc9iop4XGuJ2HqYJkU7u6pZpNehmF95fZWI0vzKYjAEw5H1qKdQqsdAC8HWwygGrepRj6KiHjdaIrYe55CSEBwFLKZBRiIug4S/wS9c3KtqXlW3ytFfoJpZ3bqz8ejehVu4+3vMFv+WZladqz56kygjIoSvAe0u+vb4/IyK+1gYZ4GhSElbFp9j4nd0KPYtsSTMI1GblbZA9GHxPR2XUlesGsPUaOdbtcuqrChmXL6vAlKacVkcBuI4OjNNaJRC09XCsKUxlkXL1DRBUhGbnpaMrY3JcrTzsNplVVoUMzH/WiWkNBOzOAzEcXRtmtAo1aavhWFrYyyLlrVpgqSiNgMtGVub88oJY5wkhK3Ip282pqu4yQyt2Vqn7jLFPM2/ce8mo9lsPH8YH9SU5mnela+m8srXLMJiC19purPAhZVzRjmKHp3STalMtzo1+zBZMxdipjZWpxSkz1a3o/NUqpZldQmstGO6hovrMSlGdl1PJag0srN6LkXPb5asuZ3PLev6Wjk2Zpfl5iQ1a66oomddrSkbtIujpZ0ENlxcz0kxFez2VIRKU0Gr51L0/GbQmtspBe1a -K8cG7bLcnCRozRVVBK2vNWWDdm5aPwFQSwMEFAAAAAgAAAAhXHqeVGf8AwAAaCQAADMAAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2FfY2hhaW5fb2ZfY3VzdG9keS5jc3atlm9PqzAUh9/f5H6H+wEgoYWN7eUyd3XJ3Iya3PiKVFZHE1YIdBq//e3mv6E9tKU1M6nAKX1+e048eUEYz9g2aMm+Lulx1RxOF0gjWP52RbA9rSvGxcdT9JnKPxpalywnggZ1STin2yyvuJD70eZYVcv7pJFXH1+/1kS8r4lgFc8eiciL48N7umWHfcbJnn6sy0oEeXWo5WNVk73QsjydjpaUtG+7fq7lrjlpGiZfLB8VDeHtk1zvqSiqY0lO2fNHyfv6WFLxLTsdQ35ON2pJKKqG7Kh8e346YtBWhyan2ROT3A0Vh0aCBlv6zN4IeCVoG3y+shVEHNrfv9ZXy/BmcbG5D6/CWTjfzMMoQoG8+nWRVzIvuQnfyYOSU3ZNVYa3KIyKkHF5MlKaVwTqm0H0pwg+NkPBcZcIheuNPNLsfrm+DK8Xx+Otw0i+Yble3i9nq+DbT01lTnLbhpLyM1w1IrZAfGLcF+DbVu94GML7u1w7wcUWcHXx2srekMrytqb5ySQvqKqN38FjCPzm6uFuOZ+t5Bd858CfmBLgxFpgWQJR4+SnwokKFSdeHB7ZYFpJrIPsaDwCEV09HtsAOoisw+1ReQzCe3I5NYVIsbXLsgTiTvFPl1MVa4q9uDyxwbRyWQfZcXkCIrq6PLUBdHBZh9vj8hSE9+MyiroQxeu2qXa0zEqyl6pxk8mivyaAbiumCyT/4Txc3G4uF6twNbuWCq/DuZ/pAiErUIXOLpjnQiMEQTr6jLAVolZoF2BYaYQhfE9Gx+YU4KyhKYLZFfMGilXAfuYNlNjBWmqtR+2InYCgrmaP7DCd1NZD98g9AiPwZPfYHAScPjRFML1iAkFjFbGf -CQSldrCWdutRO3anIKir3RM7TCe79dA9dk/ACDzZ/W0iKynZZrxgWU23lcjK6kX+kuNmffOIriqAH1DNJNNwtZhdhF/HXW3++ZlJcGSJqxDcFfZccRxBqI6GY2QJqlXcFRuWHCMoBD+OY2xDAk4o2rK+BBRTCsYqbD9TCo5tka1FNwHuqB6DuK6uJ7awjrKboPfonoBBePJ9ZAMDzizasr4MFHMLHqm4/cwteGyLbO27CXDH9zGI6+p7agvr6LsJeo/vKRiEJ9+/TXN5QcqS8h09O2/BdoXJJGNWG+geU0w1eBLOr2ar1WJ9ufjMwtNUMx0UgKIFfOJ3mmEKwTv2QhwNQtc2hM8g4NaIIygWP50RI3sqcP4xLNZnopiFYqQKws8sFONhIQxsD/MIzhskxmAArh0SD8P30iLmYfQ0SQxG46lLEnswcGoyLNanopig4kSVhJ8JKh4NC2Fgl5hH0OmSERiAa5eMh+F76RLzMHq6ZAxGM6BL/gNQSwMEFAAAAAgAAAAhXFOOt9WdBAAAdw8AADUAAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2FfY2hhaW5fb2ZfY3VzdG9keS5tZKVXTW/bOBC9+1cM0FsQ5cPNNrt7c520MZDaQeI99EQzFBWxoUgtSdkxkB+/Q1Ky1a6VyC4QOCI1M3wz82jP+wDTm0lyd301m8NNMoIHWpSSwy195NICVSmMcyoU6AzGlXU6XQ8G81xYKCl75g5Kw0tquAUbHXN00VkGmTZgOJVAGZeyktSE8AWntjK84MrZE5g4wEhKu2Y/Bb4UKVeMnwwGR0cPjrrK/n10BAuMla4JRiXxIFIftECzEXNiyYHhjkip48FBikIoSqh8IpIWpOSpdkTqVaotJ8szMvSeD9wsBeOI9N+KW9c6yWlSbxKfBmkDD54xXRnq5P0+fsLdUKtEZwmLtQKjV9u3/yiBEUMdTKXC/vkQ9+84AldP4AxV -NuOm8Rh8+ACzypWVgy9CcjsYvMLIOJFR5uAV7qjL4RX3kiSB+hNXi7pAERphdrnAtwssDD1VuagrkRNKfjI8iYY+APNZEJ2ROou3Yvxq2wrzw2rV26029n7IKG1c8IyP9j3nIvWuvlyBt3BnkEZ85es11sqhNTcYru5ZLCILT3NR4BFC+XpeL3n4jy6pcEKrX4vb9elBY1OTs/NkOkvGs9F8Mv2afLse4fM0OUtuksl0Mp+MbkNOeN/CdUu8i9KEaeqw+55h+Kyc0TK5P0/O8kQohEFl8Npt6F+dQe4NWsYFdSzHu1TwVFTFacoDx2uXFtxhF9wvk+neYDO8bT2hbkz7Av3YBfTu5vvDZDy6xQI/7Im3zNdWMLzZQtmSM9/vfug7HPvmcrErl+HFYSQZXvRlyfDiYJr80Yl4b554vH2I0qDdmymfOrEeShUPeX+uNAn8Jlkud6VzOTyMLJfDvmS5HB5Mlj87Ee9NFo+3D1katHuT5a9OrIeSxUPenyxNAr9HlnP8Qvx+dT/7en2b3I6+IUGmyfjtX598nRr9xKWfkLDX6o3fny7T3b9AVmfO4zbiZQfQ8y6gHRR5B+aWIz1Abozfhjjsgvg2M95B2kWNHrg7XHdn4Sehz5KqZ5wbuUwtzDVONX74cRyuKuOHzXk9bA4GCUaPU3xKHteLn9bUtdbUn0oePR2JSMOLyEmiaMHba6mjH9NViS44ta9QBTROhkucprenbdb1aYwaI7jxbs1IjFfG5bpxZxzn/ZZ7vW7cm/mN4F94WcYXOCwa+oQDr2YhlbipK8M4yXDARmNXGcXjMf6exYxRoHAc+n1V7/mPWHy4r8JEnsCVDgrGoUxwQKMi8HP/MZTYAowWGhNn0MnVMaAwegy9aWkEoHaXBNoELzX2NY7r1gdgWkpaWg71nTsNtD5tSJJsSYLRvGSBR47aCYUOXYEfxwE3zbp1AjZYolSDQljb1iKQRQatBIqNMgqVY5h/xkQq -9az0Sh2DXSuXcxypQ3KZeMEqYiRqnlHLtM6gjPHSHxWr3BaDQShhRMwPpeS2JSCFekb0KDbBaUzXOlMFB/7ipYE/UBTYVPDWeFigvq5USg0q1UZZbWq+SUvqJ5S3CNMD21QcZkqutwB9tf4HMlQiSNsllSgQsc9GY5EpBjgOijnij4i8KsV2Vejt9Iqa1Mu/k8F/UEsDBBQAAAAIAAAAIVyJaNjNdwkAAPAWAAA7AAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NhbXBsZV9zdWJtaXNzaW9uX3BhY2subWSdWNtuGzkSfddXEAgwD4HamngXu4vkIfBImYkB2/FYTmb3qUOxKTXH7GaHF8sK8vF7imRfbCcZZ1506eal6pyqU0U+YxdvT4vLN6t31+xtccLWvOm0ZOuwaZRzyrTskoub2ey6Vo51+Mk6KztupWO3sq2MZS7OKNw441OQzuOHY7ytWMO9tIprVikntHHByiN26hnWa41njeT0qGLyVlWyFTJOojecCWm92iq8XK/WR7PZ8+drz31wL58/Zx/TvuW4bwnLRC3FTWklrw4fMfxEeHUrmcCSqoIdcaJWjWp5yfWu1LwpO1kZX2qzr4yT5e3P5THNvLTGG2F0nNHWKg8bJuXXw/h1rbpOtTvmRgsrU8KP0uFVGVqvMDpCVgrTbpVtXPkpGA8XkidcCNl5DghKV7kSNpciOG+SK1ehjau+OKY/fM9k662S8dnx8X/IhESd5hup4+N//AtPl2kJZs2+fzh79oxdmFZo1SoBYghU2WC92exS87YF3hQKySyQaCX4GIdf/bSaMy6k1kFzCwIrFZqFMKED9/2kvfI1ZjEd8cdYl3llqvVAAXvUoeEtQwTxVjVYNzh5FG077yNmNUTMbPaFLU2DHWAm+8KuDDz9wsBvwDht/Gv8Q5Cwjdwa2OsyHfT4LTbWRA3IwCSsVBQF++Yn3p+/OSEHWukcy37B -TPkpqFuuyQCppfDWVLLYKzC670d9YRXCWMgCDHsuPEN0Om/hz4KeWKPxxG4BHoZ+PEj3kb5zVFSyI2BaTw8vTL8JQEemSADmDdxjndlL5MurPp/kuMmYa4Q1bw9MaAl0293C0QutPnNKTIb0VRWy9Ci6uzbEIENsIy8IIlYfKmt2UtOCVt1Njc3fyA/KV+zddVpJG8GnXcHFK3YjZccqeyBjK7ysewocaQftsbWmidvgT9XDR6xRHEamsnFLrgVZ54Le0sRK5VkwQhE4TFjjHFa/wUY/YOgWzuqsZgmVDfeiZqertPHq/M050U7fi19fHLMFW569KJD5d4cc9Fh+2Jy8o2Wd4Tfj64fWrHrOuNbJpJh4jqktxT+xaqL4OYQC2yhT88/cViY4MoXyKIWWIlIHupPBUcRfXq7XFBmdtFGLYaFpq5B0sKu5k0/EaA4meUW7bC0iGWvNCazCqtbFaK4UPaQBkF1jq3l0f19LX2OFrZVyagdVD0QdkasS0RBUoKBIAjPVZ7whvx7kWnSaV7WM64hADrQyWJA34oFUozdWEjS08MbAXyxEOoQlh4D+DiVAW5tdlDhngkWOghROiAi+0fLVAznD4knBkH5/IlPH5HO1CbqiXFVQzQCtS/6dDJoZg6R3HjZQvHDQc3BKGNSwJlqBHEAVRAkU+i/1YplKCrs1OjRyznKUSDvHMg1YQFWycp5FuBgii41VJ2l2ruoTHaUAJQdImj+kt5cIBKp4JMBU6Eme86toChGyiMWNvb86I2lOtWnSJOTnsVomJY/h+hR1zjg7di6hToL0yvvOvVwsegpcE98cCdMscnwUwS1oEQLwLwszIfoeIYFQRiZakvTsjpWxu0ErBKwwFj8pSvAT7oWOcoZind9ypVPUGMqHvcJqssHDuObVr7+DljufdNrDvjo+z+B/BrKbAMmUKXCu8eqda4xGyPgD8mQz8RnzzPAOe37F6e8OjZz4IhfuxZPxOXE3TN5R -diivD0Pij41BStIia+EQ7THKBq1a9FVnoXP2Y81Y8gGpJ1CUpe6j2GhjqgX9CpAg+TiQkwOoOLDo0NeOZmNVtZPs0uhDA+t+s6g0E0QiqUcCUzEgwtGHUEHZR5VzMnq/398bO0H5HopPB7EPshRcSLmGPqAbEFcowBbNsdooomusDJR3fZsVF0b4pfltaDaU8e5RttHK81j6AC/EKhY8l+RA9B0iia7N9YiavmxoL1/nSmvVQRXWatdwtgTPbBk06QoykQQM2ZyMjeteJwDZOiWQewCko1W4rpCndUTz/Xoh20VON7fo8U8in/aJwcQL1+9TYJ+eqMKN+/ztLEde72TP6yTJX1GWI3aoWfE1fuzqWC2N9QARmYA1GmrQOPDetWOSm1gtWLY/C/1gf+8ki5pqBDWcayh4Oj1FYhqWxyQSTtE9Wy9v2BJljbO3kmtfC2KLICcaqHKsYhc6MHAfeJWXINCPRNt7++PqaFrkPd96KvcEUrHnqI5wLpdHQBatXJxcniwZ1VaYI1JsoRnYShv7WIKPgp5y+7ezSzpfRKj7jsrisLNcf6DiHmybYPgj/Fexk667luJpTu/DnUIt9/JeUfghl3+J5Ri0UH1Gw31YvPnpjPyEBmFNBEtOVSYd7Ek9ZYKHjlMJEG3I1ESevJMiUk0VI2dfzrXr9x/Y+v0qD3yShz7culARoZ/rYqS1CD+eEHDSSWrxEqNW7iDo3sDj0/W7lAaJtl70e+qIKhvaUlWFlrdS97FLJ3Dqh5ww1Pb1pwCddfry3cX/Bq8eOEsRcKa26DeEitcD35ATnB8OtFuk9+94HKEuEj8bS3XcCTSxscPdIqQ3dPkRQx40Un6jncWmjnSygfY7SnYCIF+IJADQxAbp8smAmsoidgo4RcAS6rr6zmpoqX7vb09ms4L9Ac1lBxNym/bN6nq/oaTdhrNV3/ouHp9qHfn94Gjfl5bXtHvN0dbiXTMW8NxhpsqRjm34an3M6j6I -Yz53b+dsbDfm40Ek/qP5OPbvSOJxpKCiBKfTrqgI989rhJmjE4nPNS6XrsnprUint3QWcfetedDM0iYrE2HNQ55cQTtQGA9R2ITGkZvWxPb/dDXsM7k4cXm/COW3mnJPN1K7XI1rjCjMtvh6WQYoBwq0n1k9Z8f/pE+a9e9jVk+ZW/I26yWRQeil45eldI4J2vtYIkxbFDHP7U76cqukpncxVkuamalqoXghHs6pQbN+EsKvYwBfyT8Th+wqYL9ZAnnoWOg2Yjw9zb9xdpr3l0EesAcZAQ7tTWv27fR8Nhx8H2wyBP13+sv7rdOk6+41YbghyEEwOSFNuZjs7a0Eu3mZcfj8XlC56Mzj21IKrJiIj25Cp97RFY/yEN68Dd1DoE/G6M4YjS9kAliJYoVtzk7PTy9O7msxaVPFPY8dODQcQV8ZETmN83v6yEqkHppZUmtWSaHI0HQ39wtyveL2ML0RpvPOIxn5yrVvAjXfzBV0SauSGNGlrUZJnd4LP7j9RYCaOxyOEQEHZrBAvJCYHtn5VlLj2VFcUiDBjcGGEdH/A1BLAwQUAAAACAAAACFc2QjDh+QEAABJDAAANQAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9zcGxpdF9zY29wZV9wbGFuLm1krVZNcxM5EL37V3QVtxT2QiiW3XAKgV1SRUg2DnuVZantUaEZzUoaG1P58ftaM5MYSGrDwsUefXSr33utVj+i929PpxdvXp9f0dvpMc1b7/J0bkLL9OYTmy670NCF181kclW5RC0+Cf+aVtr7pTYfya0oNEwbbmyIZHTThEwmbDgSthS3kbUNXU4zOs1iLTtq1qmLbIk3znJjeDaZHBzMs85dOjo4oEWSWFSSWJQcq8TLboFNxya7DctR1lmduWz3rnaNVtqvlde1atmGrHzY2pBYbZ6oQ7G87Jri/OmhDPSWuMnRcZk7PPwNkxfaxTJ8IYPIK44S -ZDtOP59MHj2iPxx727M1mUzpjK0DIzKZjmghMS0e06LGdFerRtf7Qx+yjDLXLUegjayMTLRvlWtcdtoPoxXwlO+Q6uA1ztqNO1R9nmr1cf3VarHYXzOhsZ2w9YXtXJn6m9XBdlzbuOSWHsxHNq51WSAB6UnoWmTEDVSoqEyZU86KHXs2OQbLqoZJHNCM3lLF1rqmxJa27D2+1SpqI3kmk5YhHiKRsWgfC3Ohzc4guhx1k1odkS67L8xcrdfwHrpoGEg8YhWZbvUTWXFWmkyuyzddD6INaXs9IrsZXwbP+JtLDPh/DRqSXIZreJhOp3TP79E4wLZFrljtyeP1Uimj62V0FuG2we9qjmodcbSqdjaGNfsFHFxVTOc3dvROLyXA0ZAuekP6Uwyxsn9VxPzZrzLZjuDVl8v3BTbqlVTNuBTm3kDOxo2gUDbeFcGz/4oguXWttbewr5TcDK0ypyz58CCKzhySp4U2c3FEJ8glOum8XKdBWZSSpStho07QVe+c5hw3znD6PkKf/Aicu4j9CeE/QIbDF/8nERr3EZdv6YLcKkGA2XuT4b1splcunPaby/SH+fFd0TwvkyxlR8edaphtQvVoMi5yKfFDUF8Tdg+F3+K/ixLXZF6jzgJ+iChnrma1dblSqVvK2VJFSnQ/lLL3cfYTdP4Ohp/+/hCGpTLOKy1l8ZL/6VzkGs9gkofsVcjVUAIT1V3KBEISYmF6d3p2+h5PeSeVvsSadN2ipjP2ZwJe9ml2p4/IwNvQXnkmeRMT5UrLagoeB+RArkk5dhIN8SewlhOhFpfiTmJW/J+j2Qjl6cTa4B8Qjbg1QUISraPeqqHFKOhmJm1oySup5rjqaxZXJ5V2zTSspgZugt317qQdyW61o20FpccXoQJkL+2Kxtw+dHFUOgEqOtx0QDBA2Bn51gYkYXpMOuIZA4rHgioybAzyMpGkI9ojNFUWzVB5+8iH9awodV6giu6XHWxFpf5ZK13XbXZD -qSCdlMz7nXRl7la9NOg29QjZE8ihGLapl7HIcsvvh8SU9vBsK26opDswce0gUZ+r/btPQ8b/0la7JK+0mMlbC7hwhF4ANKAVzGTdCmGLuEN2yGnHCddq9N+3FfvOhxlkA8hyGcAGDVPlWhH2JdlQ+knITgwicdagWBuCJ21iSCP8WenVID4t95MUJIbC5sPSZ7gJf52U+Huupj1XpT3WHeSM7jNL3GMPDT3BnDOpyPNSxBkb4aFo7TfC0P1V6Molnkz+HjvrdqwUxmtXpxE5qAKnOt3hCZcFlPX3DymCDtoLFUMa7APs72KrwdUNvl4IOQuYLCI2gs5uNFxjP98cOJv8C1BLAwQUAAAACAAAACFcz8QsJ0gDAADsGgAAMwAAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9zcGxpdF9zY29wZV9wbGFuLmNzdu1YTW8bOQy9F+h/IHqeBrstdovCpzaHbYCmXcDtWZAl2kNUI00ljbP+93302ImdpHC2H5dgbjMUSZF874Fj91ayEd907MUaZ6MXbyvfmNYcfcqNS0Of4rHDzrbz6DVTToGb4lLmXTiee957ji+ltZm9yfx1kMwdx1oaz06KpLivI8VqXTWl2jqU68uPrE+f1JZNKl0KNkjdmGAXBgV2iyx+xaZPYdNxNquMaNNufE4rDs3doOZTy/Tx2kTvYTqZ5nzvQP+ODvSPOjSlR45doy//bnRUM9Kmhs5E2928hFRnVLnrOaObzMbNqH9nJEoVG7bPS4n6dFDt7tR0KNd8WR2dbb1vTjAsP7gq66O4uXHdrbNd3HiyBgqLgK4zAOkFg1YgFZAtAuJnxIFdzcmz6XCat8Xuw0rL3kvE9eWKQ8CTWWZABmRn5DnYDpfpm9lyBPX3VRyur9nG0oMX0W0OQqSzgKCkITtGoeDWs7eptjRSrlA3lEqotXBeM72/uLz48IbyoIUSmErFdj3KYvhXAtQcytmM7qbI -DAgiHVxEClah2lo9LSkgf00ksdQ8KGeJ/+tTroVSHsskDdP0HyOjL4UVR7v0mLjTrC5pQVXpb68MJluGnQTOXFnTgpcYCyiSV4xM562V+DwtnztkSX4zZhMPf1lu6KoVt2+EWvQb2BNb2A77Rp65kpK2pCQoOKZKDv6ouUrHfRKVINkMLNBCoy1lRowDwIWupLZpqGSB4Fq28FFIq7NnDSa/5KxiPqT9XqaZrd8cv92v2T2PCgZSs7gHavRO2OXeQJej4UiMLycxTmKcxHgoxiKrztrgoZXWjJsXd1RlyulF+v3g5lJANwDCc/Whc7CPzoegyoI04UnzaheyVbIy49MYR3MwRxya/jXr949J8ZPiJ8U/VPF39unvVPj/W94vXk1SnqQ8SfnUl3SUL2DEQpLOUTmjn84P+5q+N/SDGumtpIvRqJ70ef7mWJx/TeKcxPmIxVm0L2/zxkRmX67/h+qDjbc0ijvBwiOPp09u77p7Vu3pdXjaA+3xCnBg6imD2ujZaFOmDAstSOnWvJh+Bk9ifcxi/cUfxfeuxd/5Yfzje/jP15O0J2k/Ymn/7B7+BlBLAwQUAAAACAAAACFcLowEzpwDAABCBwAANgAAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9tYXRlcmlhbF9kaXNjbG9zdXJlLmNzdoVVTW8jNwy9G/B/IHyW7U26aIvmFMQpUmDTBkjvA1miPdpoRK0+7Hh/fUlNxl7sR/fgOKMRHx8fH2lDQ6SAoahEHlX0OgS0ncVskovFUVDalKp956l0CT9Vl9CqbPP5odvijhJ2uXcxurBXvf6sk+0odb0O1vNRF6jgfPZ4fwtHVwLmDIYqJwZKIDAH7ZkDoEdTEllcHl2wdHy7pSwenMGloVCYDeS6zSXpgms5YeJ8knbaoFrcNrIT+sB3ktNewR5pwJJOCpjSdB1KQl0GyTzUXGCLkNBQsmhhLAqkKLmwWqgTZnVA -ppVYnsj/iGp/00Q6OJMhIIcWEqRIR2R1bsC6bDxlvNA+82pkdDiB8agDC7XO8sK7z1qkZzbZ2Yp5NZ89k3V1AO33LnC06k820R69YCX3qqYXndeDY6juOprSHQ+d0Zned3bAoVUgn6dEB2eFUIzeYYLnzXOjwj2+gRfECDadpALLL6cmQsaoG/1dogGEAD/YSetJKZBeC+M77Y1QztXvJMq6txDlRCwwiXJm4BdM6ur3X2B4BPOjEBExYsqczgW4eoXN4/0jcIe4sb5ptfp5dTsWyENMYxmi71YX08NfG2bbABlPvtd/Xl3DGu4+XC1jotcTDCjiqzNjUaP5iPTL9PLNeeMTBD3gJOnZXKyOWEJKeFjeQqJjvmG5wLsDgkHvM2j2nAvGV/bgpaTNZCHt/VgXitQZ3A5qbiYj0Z1bxCm3jsYRpJqlJEEeZ0eMsT+7j6t+ut/88+8fT8/Pk8Ay8HzVVlOEVOx15ql6t/oVjgX4gpEOX6LYtlZxVhkBLqwZo/QcV7fe5Z6PAtakOX31pXJtnrRlDotzaYvvtUtN9xiRB15ISd+WyYXcht46OZQL48COY33skZMnDkL8oiBwWaKzUHejUSMz0959qlTyajGffRiH5qt11ITTtseGYiqqsZovFOVtxOfMQsQV0C2xbAzDe65nwGlM1f0Dq/XdLNPp/+KIqGesb2zBHfe0dzw+bMnKTRJjaNHT6K3Hr03GsH0ddJCN9JE7d9lHuafqZfldTDif3UpU9TqNfp90U2J1zRY5ZWfI9Dg0Ajz8hW1cHO806S6uI8nJW1Qb2viggPJAnk8L7+Sz49pTW4rcIp7SwKXoHZODd9AruH4vf+X9b9fQtyESSvlH23lxR2Hn0gAH8nXAlqgJnBTzHNgfWlw5QgZanicHtDEYS8svHYAR+ttfhfnsP1BLAwQUAAAACAAAACFcWwEwimgEAAC/GwAAMAAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhp -X3BlZG90X2hfYV9iZW5jaF9zaGVldC5tZO2ZX08bORDA3/dTjMQbwklYoFBydxKFu6PSqUVA+7ox3knWwmsvtjdpKj78jZ1sEkj4E6mgky4SLF57PDOe33hI7C34cv6ZXfx59vUaztkJfEItCrgqEH2SXBfSAf1wEKasuPAwQs9uoojn7haUdB76xoIvEPrS0hsXqFStuI3qHGovNaoWfPZBkzYeSuSutpgDDmVOurCVJNvbJ8LLIYKttTve3oZe+5tD69r8Z23bZ0bUJWly7VOT44922kk/sM4BS/favKqUFNxLox0LMtTAnN2MGbnEatLBSMQVxrdz7nlbFzKrMDc+KzKeBWsZj5Zbwg175MclHzUeBnXgsawU9/iOTvFRtuCByxoXGhcnjE6vvr+fT5F55kJazAJV65gEEdduGvxSXN8CuQ+k3kp04A1lhVJBIk2PkmRra5pg12FiktzDFd7BPQRd93BivRQKqXUtS6yMpPDT2II+esO7WobkuQnGQs+FopQrjMrRkjFUOXWSYsbYMcQ/y89HAyS9S+0e7YS4ERhlLtMmE4bCpQcBBrXJBaPY5S7rFL0gvVogDHWgoOfuR3pQKLFbYi7rMtO8nLWV8d2AFS33xDkT3eo8k1p6yVVo9qWmhnGlUVxJP27GsvKrK7PbweJQlJ0NkB95HTL6wayrTJQPh6az4sBQOnmjMKssCllJH5xu+oh5ntMiu25EGzustm/DjjG6m6PiJakJL5kTxmLXVISQ9HrLtau4Jdjj+QRnaiuQTEfIVAtwwipdI/rp/kvhT/c38V8v/ntrxP8wfSn+h+km/uvFf38p/sU4t2aAKosWpF5Rf54SeaYChaj//+LcxMdY+odG83LM6GOHI+e6zqOVSv6cqCYB7oKEIA+NN8KoB7k7B3awFrCmZD1H7KmitUH2i5B9WAtZU+WeQ/ZUndsg+0XIDpeQKeR5Nv9kqsyIfnlY0EJhfFpoUxrfHtrRmtCa -4vg8tU15fGNsH9fE1hTI57FtSuQbY9vtLHETBVcK9QAXsBRyUKyolC+JburlOxBcPnp4DcGmbL4G4aZ4vjXD5QOM1zBsauhrGG4q6ZsyDCeTf5Pv8JcRtUsSBqfhxNsiIBcFlDxo5QqsGQEfcKmdj2feNCBolfRdnk1PQ2D6DQH4RMKRGfCz80yuc7A4OYrFFtm54M5RTzzVdDNDLLdyiBqqc6BW38Nvv0OnRdWeOmoi42CI1tWusbasaU452lwEOFd5ABVSWMmvl9RpA1OssIB6Z7G/wb0DDe+J12lnBxZ5T3oPdqJfi7ThjzBw1AnWz0y8K+D5kGuB4SD5nH0CE24VTkH2ae4YwmePSKTPpXLhvqEVQf4T+i/NKHJc8wvE8UTrJEfmgZrGxUGl6hiMlYtduda41EfLDKtc07dQ8P+zzoVK9o7OBchf8IcPm7SkLCLQvV7vhrsiqca+MHoPnLCy8q5don1YV1dcsLSq8dK8O/FoEm1efoskCoyFayN4+TppSSnpQEvbxz/SPbslW0s7LTn5F1BLAwQUAAAACAAAACFcGYLmM/QEAAAhDAAAQgAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9taW5pbXVtX21lYXN1cmVtZW50X2NoZWNrbGlzdC5tZI1WbU/jOBD+nl8xErovqGlLObgVdzpp6e6JlZZbDrj7mppkSiwcO7Kdlq748ffYadq0dFkkGhJ7ZjwvzzOeI/r76kt68/nTt3u6Sj/StdSyaiq6ZaHSaxausVyx9jQtOX9S0vkkuS+lo9xUtWXn2JEvmebSOk8iZ6UaJWy05aAnNSuS2pso5SqhFEOwtiL3MheK+JnzxkujaSF5OaQvnmBdG09Ve3pBvJAF65yHSXJ8fOeFb9zF8THNxFJIHPCYWTibVVtn3QyC/0zJbWXLTGRwQzxxBttBo1gFqdtGR4GTCT4uldBPZMWSYMRKjjuTyYcgh0XP -Va2E52hw9K9j60bie2NHn0zexHNHU1Pw82gynpyn47N0cjoSda0QZwjQpUEGL1ykD6sU+Ugb2Egh4krjR4XwYqRLmdVcwMXgMVzZiSvrXBjmbjFLkqMj+miRR8Xpvay4NgiRrgV8f06Sl26PXujWxH9fjSiQMLxtxB0+7rypUVBdyFiIF6imaUq95wXtLEFgpk2WGxHzDxfxjpQZNYNIJXxeom4VF7KpRgXqlzOtBbA/jr9yQJNfw/O3CZVY6fZRfdTEiwd4bCxV0jmcMaAHzgXytbEeACisdEhs2DMVA2cLoWTR+leuCmseWWVKVAC17nvozNwHQ8jTT/3q7KRGq1WnNBdSua1PLX+QTbYghY/lXjsVmKLnptEFrx1TwF62rbMyS/xiXYJr4+E5LUEQtnmgXbR8cXN3R0Et7o/H5wcdjQJA0tJRfUWFlYjxz/HwZEwL10U5IOMqo5AlvxqFijeg4QIfnfzZLwPY4KKIOXdL8DkABnYm4wEVHJPZxoe1s0EokbdCO9QCHF3RH+Phh3EbaF4GtutH7kVbyseyH+7JcHI43IeQMmFX6zoLj4Ni9CeTg9F7UNrT5kgSbmsiVk7OSfq2cL9TYWKLqa2pjGdCe7pKp/A6MGqqhKzSqZVtg/pLsipcoFN8i2RaBtagO+pIpuQQUWICegnO5sgbutRdllcx8BBGXKOdOrxWBHi9fKW6Xj2gjD7CGzFEwCEJFFbJzGMb7rUUNNfwbBV71c1cbuzWzDik6GS3/lGi1WyZjrr6jQb6ewP32h3Czo6kFhX/QBR1nn49SVGa51W3FsRbfVPHqmR9zGXzeJsYve/uWngXoJ3w2t6GDl2Bvrkqe3rcK9FW7JXapjx7il2B9lXrq/akvRNA2W57rfnKUifSsfJ13N0ChDfUjSoL6SQaaobulMta+j5E1nvU2xsgZU1sv3OhHO/a6NrDKwPojWyDo9sGcsBMuMIYfAYAszzYOA1XxhaRI6nz5qGF -WE8WWaCOoTfWALUCIwHdsKVwN4OTSZIGfLVDQyb8LHybqG9shj/xCPNxVeKCsfHKzmQRV5xp0IFQGcXtvTptrA3MwBhxZbyr8ev3gM/WIiwbO8Ee//c5+APYH+bNYQgcws37YPgejL+v47ynof0Eam+h6E1gv92d3t0X4hm9QveWD6Gyna/mADXK3pIpjMX0n1ANAw2z2exBuDKpV740+hQN0coaQ6BtdKZk8DWTPhiFC8N6FeSjycv1vdRN0t1kHRgYXHehWYs4g7Z315Duyx69wBMBBJPAbAJcluzizOSlAlpTDHxCUxiJW3jWwrkwjg/wuAyP6QDtGLHMjcLskTb1gIQu1lN8vI/CBUiiwTg4TP4HUEsDBBQAAAAIAAAAIVxDGxbF0QYAAHQTAAAxAAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfYWxnX2xhbV9wcm90b2NvbC5tZO1YW2/bOBZ+z684QB8WKCzfprftLBZIk86kQDwJmkxfGVqiLW4oUSApO170x+93KEqym+6iC+zDADsvQUTy3L/zkccv6Pz61+z6fJXdfry8uadbZ4PNraErWRd2szk7e/myX3v/8iU91KUWjSpsENJshZGVaNK22M3F8gHnLyCqCxlUFDC60rUcT0dZY/eF9WoQubOtyxWpnS5UnXeC3clatU4akbcmtE6J8lA4u1VGLOfL10eSv3++ZqEyhMa/n82adu2nzudT67YzVc9yWwdVh5l0QedGlaEyM2h4Mwv5rHgd8vny7fzdP87O7p2svYHrFEpF0GK0L1VB8B5BBJUhBF3rusvW+9u7O+o9okqF0hak62Dp+tPq02/ndJWdk4ddXWO/UBuJKDztNQ62gYJTEltbMjooJzk+CtJtFc5ID33SY6kgY3MJcRnk9OzsxQu6Ho9/VrluFJ3XeWnd2dlX+kUrU9BX+iJNq+grVrIso/QXXw99JGItvfYP2FpSo5DCOtB+thsi -HeM6FfMx3yx3+/nmt5sv5/T7LX25/vIreVvothoUTGi1p7/R29f0eCmRFeokqZEw1ynNnfXe6PpROVa4ePcTVStCsDkr8q3ZsCOFZle6/zxkveIk0+KJLlcfV50m+IlU2prV+INDUlVW6SecbJzKW+etmx1Zm8CID12pGBrOGqOKLJQ6f6yVR+6tKSa0oJJ6zcljWxdtHvROiaaUPuYht1WFBGrUaETFhQGWrafbK1rM57SH+673f9CWwMRKPsJjs3aAUHZlTZXd7aWrKB2YnOau5Qzc6W0ls3NTOJ2XdA0wz5OLyoztYqwskAy2MJ++oX0Yaj26GtVtrEPlDLF0lqQj5DjV3AvPq1dxTJp7s5RO5vzxz5iq3qrvzP6VwAe0mC6/b/5IOvlhGzSpNBN0ADbr7n/WoYzKUau8VBUvcgPVhe+8GWon9hrMtRdtFTH1ek4o8ivUAJA60j5LQWYOWncSLkFDPaI+KB/8z4BAVY2LjVa58l3G1sqDrCip4aNzPsvIGVO6bs3jids+uMNRM3gV2qYLAEAVqeUrZEgw1DSnM9XP7pSr9bZk2ObtugMlNHETzH5ZLAnmhli4jL1rSGNszLWCR+pZEo9spkyqqkn8InK2/NPb5GFPhyBxB12VBFWLSK1PISY7Qw4eb+VR4QiEugUX/H35DnA6UKlv7y6yAtXeIUW5dbEYxCyPcPID3yRVg+DWGqx4APKDXBv1PIecDno3hwj4nDHAzMh8ew/3I4NfJr7lnRdDDUXqKZH6/odIM1kvUKEEeg4XmYOWtgHih14A21hXCAC6lYk6B8s45PQTSw5s2juzbPIg9jsBWrKvRFGp6hvZEd4drhnQXVHiLdlgI3Wd2HA7JS58dohRBnrE1dtf23ys5uu8aQxqgWSL2nbX9AlLCeuwiuZBFnBJe1SHRVXphyi8rJSQ+Fay6DNhejUD/bKPx8ZB+9VKXMi7m1cCShZPgiEtEo0L0DinJYhFKU7J2HPO -TU86cA+EzM19on1cUw2IJh4dXROgFQGoFobv4Y7WYreIGrGwfPQF7cX6L64XrPvp8L0yf79tIvZiPsaHEx4/fbH+qOjrPAVg/kcwnM7nb34MigPNiVSIYx4UHYeJZ5z132M0tf+fMB1hCs7GM4iDGbFaohT/f2DFbfonWP/IYO1w6Om+lIFWLd7yHyBd8UAE2dWYcdz+GT3wMPrA/xzhUBdx5Tt47Q6OHh99I7z42VwhrSh0Oo3PDVDafViPN6Dk10t/RlQ3vhKP22+3o8zJ5jBfnEjfibx6vp2kh82d9ppvb554dKNDH3O/zi+3OAzwot/jhXiC/JgnFZHXVdSjHJ2G9GQWgadjVBwj+uFIsH95fcJD0MF6iPI/xBbxZoTIRrFS9R/nFO3jILLRDuVOAzbL42GbS7y4SYf+zPGw8hd/OtSklo8DhcccbuKM6JXbqWE2WGtr7LZ7HmMg1/U09dvAkOjG6O03Yw3sSzxZHc+Q8SEL8OJdzqPAce0y8IZvfXac0OhQsE86j+9ePMmgKgab5UbqKsY67bvUNiPXsB/n9SHWIL31MRVuwoRS6akvPZ7Tqe4TOq71hIeHE2c2UhvOFlvy0PxhdpVdkCx2/ObnxpqmRvxg27qQ7sB9dl8ij+PvHFBFPW2Qz+Vmg9ko2ubg+t96phD8bPcepjSGFjZMXcCQ3amaDVJbY5PnUeUnqGDA366N6dOln4w/lXD4koYpoRsbm/Lgu1kEGbRt8myjeeaPP8bwhqEdg9RPuzhgZJ/1UIkoO4ZfqgjmlPLnuMrX5HA8/cj0b8AwPfsXUEsDBBQAAAAIAAAAIVwX3Jk1zQQAAFcOAAAwAAAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfcmVjaXBlX2xvY2tfdjBfMi5qc29u7VdNbxs3EL3nVxA+W66kuGmRnlzbrYvaiFHnVhQERY52CXPJDcmVrAb+73nD/ZBsuGgB9xIgBx20O/NmOPNm -+PbzGyGOrDl6L458bWVLJmSpXCWdaqQLWxMSyUjatoS/+l5u5nJ5dMxeWnljjcoke39nG+vV5NxDjRB7t1ZF8llulGNnG7xslb5XFT3NARDWW39oB4zFgBFDDjo4+U+ZTwb7uCmr3CU2VzrbzdNTrUOUtVQyITXryfUu5VUklYJnv481CWOTDhuKO/Gpo45EVP4+ibPrX2fXZzez28uLDx8FzjzjQwuVRIbPWqVMKYtW5VrksFXRCCUMrcknu3IwsBGvNTk308Fn5CdSZ7NaWWfzTminbCNWpFUHUJtFDWBjkX8Wnrqo4Na53EUStLGGvEZobwQaJCKxDz3YhHNV4mp29t3V7Gf8zkWF1qWT/qSjH0675hr9iYdc51LUPoYcYsh6Z2KoyMnlfPl9cZ8sV1GhZU3wNoeIeE9MJr8BL9uUOmKT+WhiQAyP9m3scPZia0GxhhRbLo9g+FdJ2VCylZdZxYoy5/z5WZhG5WgfSsNdBWYCZSTVstVZbjdSo7Wn0jTUjBk0pGvlrS5EKceZpbDOpaf3t0r04X4S4AlFgawSSmJEE0znusQd911D0WoB0qpj4UPmh6OjcGo1sIsnKHjT9WRs0dMyAfOTd2ILrlDUiCEKo97f3t0JR8oci0QObUfEdQxNYVfbrZxNNR4944ILyqAHU4ciMbvLKHGgyytg9vUQIQr61FnMGsccn2rmN2XUAOBqBdqz4dbmGi859FjqpyRIOaLW1Y6DMPmenQjV4KMUhi5Ols9e1baqZ0PmYhU6bxRmTYcGa0OBVGOoMjKyTIYczcoqCC+MToehdmgFernzSDyjPYeTwKm44KuZQQG5PiKGbcK8psR8eyx8y9S0jkmEwVUo8UuUG/nFUxyDmyxeS8tDf1Rf33tKSXYNo5zO53urvgMtXg41lOvI665v+YuG4IXErGJHj0uzryOWads6qxU2lPShX7B7gDFnLM6W2oz1gcJgn+XSBqrTdKqkGpIK/9F1Xroh -GmR3AKVjSMlZf8/5Hiax+PFtcyPP1d2HUwmgxYO8uLm8kWnHuwU7wT5wqbJc1BKV6Zk9oWLnRpDg7/7uQJoYMOSpn0TYP6NCMDbdpyhBDIl1YNx+jsqOMLZreFGViS05/bJYcozz6wXjP+xGFBS/U27vyywiBOJFqtn77Q9H5d3jQOxSpYNrMGzHVr6eTT0mmv4/0+pkPn/336nF16fHmGc5FJLXoGUwBl4R7uKy73mzNlgLr+HcMIjfaPdvtMOt57D8cbw993gXfw3kWyy/ke/rJN90uYZiADDcO3QgQC9CUVC92hokFCR3RUlYn8Mktg46BjVNzgzCFhB/EK5tzUrmILleh6Vy84P4UB5J7QbPonDEYAc+NF1f5mNohHwMLdK1/IddD8NCPHVIq6eQyPhsKIq7KAkIm0kqjlJ7SvB3onaSUrPg3e64yM1RBfXCj8M9EUfTxAoV0U6H2JhHzUKQHjRazLkf6sfebwr725o1kFg5fMFwMamKrJjWyroEnZlDO54FMkkU2RkD4Bt8SkCSAZulU685xaA5T4o8f/P45gtQSwMEFAAAAAgAAAAhXInad4PAAgAAGgoAADIAAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9uZXh0X21lYXN1cmVtZW50cy5tZK2WS0/jMBDH7/kUI3GrZFLCaxdOUJDgsIAKu9fUJENirWNn/Sh0xYdnnD5RyW4j5dDEqf8z85uMY88e3N3csofrq/snuMM3Bz+QW2+wQuVsFA0Gj447b88GA5goxNymZcpTS7NCoZyQYEwGWjWCuuQWPwlSpdNq7jFPjX61weJ6yqXnThuwG851mnPHw/y9d7V3MHr81czEPy0aG/O/3sRXOvMNWjzSOb7FyTA5YcNjlhzGvK6lyLgTWlkWNDTAnD3PmCuRefLBSGJL7eIQKFalSGvMtUsV5b2kbJzvZ3Y6iaK9PRjj3CnCSE/R8AKjaIx/vKB8oObW -0k0iz8EshRZqNNC8iTM4jKJ3eAhjoPvX8neSMMZgcaWnG3YRnhbjy43xaDGeo2W6ItycfI7pzTahjNBGuBnJxl7BOvaTqLDWQrkws8rpHS6ME5nE5l+ea+9WPGfwCavtSuIDGk9oFTWLiBE8o1pmmiqhivBaaayc0ZKND9iwnMAywSGUsLD+2iBIK8yFr1IixyJkdl6XM0v0MqW18yxkkyxBJB0gkqMNiuSoT4zDDhinyQbGadInxtEWRjnLjS7og5S8EkqoHYrSZtIF5LgTSGth+kA56YTSWpw+UE63UMKmkK53JKlf6cdzWgL/KFC7UReYbx1hWovUD873jjitheoH52C4xZOVXEpUBW54L0VR7lCx/5l2Itved3chay1fr2zb2/EubK217I8tnJy3JDG1Qdc0C1HEmojLlgVCmwLcIFDfAC/CWAc5ZsKKKQLPUEovuYGKDlAjuGTh++eZg6zE7Pd+4+wyDkd15clSaRe6HONAvDRh5sd/CPHChVxQsxU16NA8zMHZGrwIrUJwfkGtA5dgvVjNZZKLioIISezz3sTCsumC0Oucg50pyobOekrozfmgCBniqhMzFB6tDc0TaCVn+9EHUEsBAhQDFAAAAAgAAAAhXIr/Z18DBQAAUAsAACQAAAAAAAAAAAAAAKQBAAAAAGVtYWlsL21hdGVyaWFsc19tZXRyaWNfcmZxX2VtYWlsLnR4dFBLAQIUAxQAAAAIAAAAIVwn3C9fIAgAACgQAAAgAAAAAAAAAAAAAACkAUUFAABtYW5pZmVzdC9hdHRhY2htZW50X21hbmlmZXN0LmNzdlBLAQIUAxQAAAAIAAAAIVwMjL9FOAkAALcXAAA0AAAAAAAAAAAAAACkAaMNAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc2VydmljZV9yZXF1ZXN0Lm1kUEsBAhQDFAAAAAgAAAAhXBUjdI+4BAAAo0sAADwAAAAA -AAAAAAAAAKQBLRcAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9yYXdfbWVhc3VyZW1lbnRzX3RlbXBsYXRlLmNzdlBLAQIUAxQAAAAIAAAAIVw8oJM42QsAALYwAQA1AAAAAAAAAAAAAACkAT8cAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2FfYnVuZGxlX2VudHJ5X3NoZWV0LmNzdlBLAQIUAxQAAAAIAAAAIVweUNN8wAUAAHI4AAA3AAAAAAAAAAAAAACkAWsoAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2FfYnVuZGxlX2VudHJ5X3NoZWV0Lm1kUEsBAhQDFAAAAAgAAAAhXEqQSe3DCQAAH9cAAEAAAAAAAAAAAAAAAKQBgC4AAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9zb3VyY2VfdW5sb2NrX2J1bmRsZV9tYW5pZmVzdC5jc3ZQSwECFAMUAAAACAAAACFc1O5gFjkGAAD5LwAANwAAAAAAAAAAAAAApAGhOAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NvdXJjZV91bmxvY2tfcGFjay5tZFBLAQIUAxQAAAAIAAAAIVz7J55lYQQAAD8NAAA0AAAAAAAAAAAAAACkAS8/AABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc2VudGluZWxfcGFja2V0Lm1kUEsBAhQDFAAAAAgAAAAhXJHdoqbFAgAAdzUAADsAAAAAAAAAAAAAAKQB4kMAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9zZW50aW5lbF9zYW1wbGVfbWFuaWZlc3QuY3N2UEsBAhQDFAAAAAgAAAAhXOXKIXynBAAAuU0AADAAAAAAAAAAAAAAAKQBAEcAAGF0dGFjaG1lbnRzL2Rh -dGEvbmhpX3BlZG90X2hfYV9zYW1wbGVfbGFiZWxzLmNzdlBLAQIUAxQAAAAIAAAAIVx6nlRn/AMAAGgkAAAzAAAAAAAAAAAAAACkAfVLAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2FfY2hhaW5fb2ZfY3VzdG9keS5jc3ZQSwECFAMUAAAACAAAACFcU4631Z0EAAB3DwAANQAAAAAAAAAAAAAApAFCUAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX2NoYWluX29mX2N1c3RvZHkubWRQSwECFAMUAAAACAAAACFciWjYzXcJAADwFgAAOwAAAAAAAAAAAAAApAEyVQAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NhbXBsZV9zdWJtaXNzaW9uX3BhY2subWRQSwECFAMUAAAACAAAACFc2QjDh+QEAABJDAAANQAAAAAAAAAAAAAApAECXwAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NwbGl0X3Njb3BlX3BsYW4ubWRQSwECFAMUAAAACAAAACFcz8QsJ0gDAADsGgAAMwAAAAAAAAAAAAAApAE5ZAAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX3NwbGl0X3Njb3BlX3BsYW4uY3N2UEsBAhQDFAAAAAgAAAAhXC6MBM6cAwAAQgcAADYAAAAAAAAAAAAAAKQB0mcAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9tYXRlcmlhbF9kaXNjbG9zdXJlLmNzdlBLAQIUAxQAAAAIAAAAIVxbATCKaAQAAL8bAAAwAAAAAAAAAAAAAACkAcJrAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2FfYmVuY2hfc2hlZXQubWRQSwECFAMUAAAACAAAACFcGYLmM/QE -AAAhDAAAQgAAAAAAAAAAAAAApAF4cAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX21pbmltdW1fbWVhc3VyZW1lbnRfY2hlY2tsaXN0Lm1kUEsBAhQDFAAAAAgAAAAhXEMbFsXRBgAAdBMAADEAAAAAAAAAAAAAAKQBzHUAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2FsZ19sYW1fcHJvdG9jb2wubWRQSwECFAMUAAAACAAAACFcF9yZNc0EAABXDgAAMAAAAAAAAAAAAAAApAHsfAAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfcmVjaXBlX2xvY2tfdjBfMi5qc29uUEsBAhQDFAAAAAgAAAAhXInad4PAAgAAGgoAADIAAAAAAAAAAAAAAKQBB4IAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X25leHRfbWVhc3VyZW1lbnRzLm1kUEsFBgAAAAAWABYAcAgAABeFAAAAAA== - ---===============0029337424494743983==-- diff --git a/data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml b/data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml deleted file mode 100644 index 3e211b3..0000000 --- a/data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml +++ /dev/null @@ -1,126 +0,0 @@ -To: PSTechService@milliporesigma.com -Subject: RFQ: non-GLP acellular hydrogel-coupon H-A measurements (MilliporeSigma Cell Culture Media Stability and Testing Services) -X-LIMINA-Candidate-ID: sigmaaldrich_media_testing -X-LIMINA-Non-Evidence: true -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary="===============8738262583098975050==" - ---===============8738262583098975050== -Content-Type: text/plain; charset="utf-8" -Content-Transfer-Encoding: 7bit - -Hello MilliporeSigma Cell Culture Media Stability and Testing Services team, - -I am requesting a feasibility review and non-GLP R&D quote for a small acellular biomaterials measurement package. - -Study summary: -- Active material route: limina_alg_lam_pedot_lowdose_v0_2 -- Runs: 12 -- Raw measurement entries requested: 228 -- Articles: no-coating control, alginate-laminin hydrogel control, low-loading ALG-LAM-PEDOT lead, high-loading boundary comparator -- Timepoints: 0 h, 24 h, 72 h -- Required outputs: sample-level pH, osmolality, conductivity, visible precipitate, visible shedding, swelling fraction, delamination score, optical transparency fraction, raw exports/images, and chain-of-custody by run_id - -Important constraint: we need one result per provided run_id/sample_event/target_field. Pooled averages or narrative certificates alone will not satisfy the study. The compact bundle entry sheet is preferred when one raw export/report supports multiple values. - -Could you please confirm: -- Can conductivity be added to the report? -- Can the service handle customer-prepared hydrogel coupon soak media rather than only standard media lots? -- Can they return raw sample-level values in the LIMINA CSV schema? -- Whether you can fill or accept the provided raw-measurement CSV or compact bundle-entry CSV schema without changing column names -- Minimum sample volume/coupon count requirements -- Expected turnaround time, quote range, and any sample-prep constraints - -Attached/package files to review: -- reports/nhi_pedot_h_a_service_request.md -- data/nhi_pedot_h_a_raw_measurements_template.csv -- data/nhi_pedot_h_a_bundle_entry_sheet.csv -- reports/nhi_pedot_h_a_bundle_entry_sheet.md -- data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv -- reports/nhi_pedot_h_a_source_unlock_pack.md -- reports/nhi_pedot_h_a_sentinel_packet.md -- data/nhi_pedot_h_a_sentinel_sample_manifest.csv -- data/nhi_pedot_h_a_sample_labels.csv -- data/nhi_pedot_h_a_chain_of_custody.csv -- reports/nhi_pedot_h_a_chain_of_custody.md -- reports/nhi_pedot_h_a_sample_submission_pack.md -- reports/nhi_pedot_h_a_split_scope_plan.md -- data/nhi_pedot_h_a_split_scope_plan.csv -- data/nhi_pedot_h_a_material_disclosure.csv -- reports/nhi_pedot_h_a_bench_sheet.md -- reports/nhi_pedot_h_a_minimum_measurement_checklist.md -- reports/nhi_pedot_alg_lam_protocol.md -- data/nhi_pedot_recipe_lock_v0_2.json -- reports/nhi_pedot_next_measurements.md - -This is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal QC gates. - -Thank you. - ---- -LIMINA candidate_id: sigmaaldrich_media_testing -Vendor source URL: https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services -Bundle zip attached: data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip -Bundle SHA-256: 6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd -Official contact URL: https://www.sigmaaldrich.com/US/en/collections/offices - -Boundary: -.eml drafts are unsent outreach convenience files. They are not send confirmations, quote replies, measurement evidence, or material suitability evidence. - ---===============8738262583098975050== -Content-Type: application/zip -Content-Transfer-Encoding: base64 -Content-Disposition: attachment; filename="sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip" -MIME-Version: 1.0 - -UEsDBBQAAAAIAAAAIVzbnpjbRgUAABgMAAAuAAAAZW1haWwvc2lnbWFhbGRyaWNoX21lZGlhX3Rlc3RpbmdfcmZxX2VtYWlsLnR4dK1WTW8bRwy961fwVLSAVkqNAi3UQ+EqaRLAbhPLaY6L0Q6lnXg+NjOzUvTv8zi7sqXUdg8tYFkfSw75HsnHuQ0LujbWmi5EXpmtU7Rka2nZ29xHpmvWRtEqq7WxJh9IeU23nLLxW1px3JmGE2VWbrIKfWyYPtxcLajNuUuL+Xy/38+SHKqsjqZpZ01w8w+rOft5Gp3neTht3iBs1QxhKydhq3QMWyFsNRpWR8/Jql9/4iYv6OaP9wvywVevr96RkoN6qyK1Bx3DlnFq6Lvg6U11SY5VQgDHPif6/r8i/2EyeQOf8P9QOJ1M3pJyFPlzPz5XtEHCZvSMvDO8Lwcc0d5895I+9yEzbUKEeXIKoR84WJvgVOZolE2n4KlTzZ3a8mwyWeVeHyj1zql4WEwqumyy2TEd/SiGPvOCrHHGq1rZbW2VqzvWIdc27HVIXO9e1Bdwvel9WtCP5aPanwXEKxogHdGxXtDFxS8SLmbTWE5SQpRKFeBNgHmwU0I4RM1cIabxxt9X9cEEOVQ2KC1+l1evq6vL6+rdq5d/3ZJlpafUmm17b7AOvdcACnfXqahyiMjh1jjugkFTLOgFtVO6+En+/3xBrUBByiayJhDR9WKTlOsscuIdEuneTCkkF6ySKk0lMd0Lh+XbzqB+lqmL3JjOZGB5+DG1rCWtKaU9SiYJbqKCb/BT0lwwK/lGqUF3IU4HslCTHJVPyJ99czhxiSCdv6ARc5obh/qmaWmXplXGV2GDAUs5oNxrdFPva6PRc07sFUqExBMOBg0L2jN5FsieUbKEXqaOI1CEndH4ffCeD0TU4MHneVZxy7neGLZ6Ru9CsDBUO46SCKE/vYpgXJqrYVR9AyiYatRYouwxQ2iBDHKzSZsD5RYESXPO6BYf -S8GaTGsUENRJPx2EQM5kktC74ShF2rfsh7TvyZhHljc0eVe4IQc8BonTTll0I6ZgGXqr6RB6ws8qSTi/MdHJQCyVPysqrZmUFhZyKFkOx/82mpa8h8GmVpVkC+2OY4U0pWr6tI2LOKWg7qjIHvLGCRHHKMFhARLVQc/q8bkNOZ3EEl2A0PiC96wxB3BkhpSu3l6//fOSlqu/0UwtOyVnfGy5BBPgDc7bSBFESZqGu1z8Hkqu9tXpRMtJMD2vSzXU5SEK6ppbDI70oN8Os21759EMDiJeQTu9cb0bU6edPOX5SAveECkOA1hUGx6vvnTQfaEfsFWUiaaMCZ6OUojZ2PLQ+MofjpwI9SctniaTy5wVctTzUQwFvWhxGJVWaj+UNs19a0bJa2tVj+WtRzGbOQ1TrbL6xg6U1acrp86MXND0sybtHncZaKwLjXVp79H28UweMX8qmVQ2dN17G5q7o6NT3mwEwnNBzj2FrSHIU+R4aDjbYvhcPke7UUS+SeUxj8HQqjXb9LRZUbs6bOpR7Z7F9g/j55AN8VO/diYlKO6/c9FhJ9QQ745rFN4/Tca3hk+iO+7lWpvU2CC99XyHYEe0p63xuJkbxvC0XcENN3fWpCcd7y8DMeSAuX4UXll8qJr0jtwTZp9S8I8e5/lLPpsXOW9y20Lf8Qctt6Fs7EO596QmMuNKsJ3RRwgyrlqyPc5uT/d3mNSb+wtYY5VxWJrBFX3D6tIh/iobr6htWXvQiIaVrOh4fo8p8rApm7GPkFac73H++yVtZZfNJF3l70RQ8fn38baxmOCOSlBDY7GRh4jQ207d3+xQ/uOyHkRs1KRUgJUBLJBkbUJtU8m1LMYD6VCQD1qp0gNqFuH2WEN4YHCRY7nNlWXB+hxUp1I6boj3y9nkK1BLAwQUAAAACAAAACFcJ9wvXyAIAAAoEAAAIAAAAG1hbmlmZXN0L2F0dGFjaG1lbnRfbWFuaWZlc3QuY3N2fVfJkttG -Frw7wv+A0BmUal9mThppZjwRdlgzcvjKqOVVExZIcACwpf57ZxXYi6RuHzoaAAm+l2/JzDqH9dDTl2FZlz7erbT0yyEIbfp5GunHH2Y6T/O6vDkdhv2Z8rTuD/uwX2i+HRLtZ/r/hZb19TH363yh3jDLe66yFdaGzMnlbLhMTJRYQsjGkynCWCGSciKrUHgkH7XBvXc5WlxL37/6MA/HMN91Y4hv0jSdaQ7rNHfXaH/rjmGdhy99l2kcbvFhHJF2l8I5xGEc1qHeLet07uZL+yScMl7+g9I6TKft4etXP/6Qwxq+ATaHz/sjheUy05FO67Jf6Xgew0qv03K7YeReGtkrw2OyyerIZBCGO6UyA3wXi0wxOwP82iUKWSXOlS4+UhRKBZcsRZn63w7UjdPpZlem+di9+/h7t05dGcax+zysB6Qbxm44LQhZE2kQcHu+YrgNI0rx+lkM8XLKI+3x1ny3Xw5E62Py1jFmes9YLDopK4IJJEKMLKqSdZDkg6LsNQtAwnQIhcWsRA45OS0znkUpXP9hpkLzTLlL0/Ec0toAlNaj9TKfhtNNN52om6fPHbrXoaw7YKNuy+3v3bB29OUMUAtQAfiKaizTZU6026B1LfEulBWv49EAoAD++qWJfAb0/VBypTTrPTqWslBRoWGJWxOk8zIzKbSNRCyH4LVgOcUYiynWuaQk6oRWYoCj6n+6HMNph77kOm/X3rRuLA157V3FXaHcV+Wn3dsr5K5ltqF6vm0b/P3lNE7p0z0ehBxK3bCHDmpddywULI7PxXCykpWchE2ZBWNiZsnnIAGFCSEsJRZwYTTztjhLIgmJQvS/hHQYTvSI5z4SLs7nimO+nPZDfnNNK41hWa5YljqqCbin1hZMwbV1rcVnEMrS5nUN8w16WAYa8/Ji577GjbJ9euycEI73jEgmy3IsyUQhuKECcDY4pZVxOiaj0EmebabgZMzRu5B89IIiyuLKt52bbit70eduKo1S -hjrHtVPfTOkGYkuva/jpL1Cgv6jn2AA8GT4pPe8NV2QwdaQKS8owyYlcqIOHMTTemVBAhsKXbKIu2pDUGYuqnQGzaB36/1EazrSrFbrmeh+v2+JtqQZwFXUHXLdJRItW+vLSuN0nvL31zKRxaZzti0e5i7FOFqliiU5hVYQAVyM950EUpXgZmUgypex8ETJYyZPkDOSfYv/qYwuwG+kW6T6M2Xr3OGR1nq5p4EunFYw9r0Maqe/W4Yh6D+1ZY/GQp8v6En1ffwS6QePylLKdtz0zBXUWqL8TrDALsvPKambw33HhdbSFGweyNlI6bYEEk8dEJKfQJWq6dFrrDL1Z53BayiY9XQtXuW7ZuPvah/+8h/RAPE6nxpN4E/Wet8dXfNcbAHto2mlaX1SndMBP7KeyTxfIW757ROilYL3QrDjlDKUUlGBGWBkD0FpW+UywVEoUEcqrpSUVIcMQg5w1AJcUdOpf/QPZfupamN1Udtcw3T3aDWNb/opwpS5f5pr0GUsR5sbQPXo0QkGpXiQazg+dq8JQgT2/QN9he9ggr32fAnQqS+ViTkUzaWIpaJY1IlspVc4Q2YJrz0nxwph0LrCktRSecS11/+obEniyK1MpX7F538VWho23XnQPL/DANoHLJR6HZcELXzOadlb0SWMxCGrqUwmWsCvShWCcUQri5E2IIDapmLaMuLZBWgAxFqBUSUIDzO+EtOddCWkbmVPC7AwJlmGLv3uMX3uTDpQ+9dU20TzgS3lY0jhVk9PXj3fLYTh3zVtt+BuZ4FnTgTiBDeHG/gLzGaZrvyQYtX2d98fWYZd6HcAVCYIklEscPiJy7qHBNpqcrEiO4zMZOM/VHnFNsqSsfMbEwiNG3/8rjGNEEeEYKF1aE2qUJrot9FrTPFIeAkaXgLsqbcWQpsu5fvtwt9TivIGrvGmsc2WRLqR5gqzdtnK+YKe+Q/ewdKA/0fMMj2BScHCAzNgo4ACt8RBoYVyE+ib4 -CGs4lDlbQ1xoSDccoxY+whuDH7+T4hZx1yJeUwPLD3XR0Js2lR3EaLg5NYsKq3sIVcKuWnZ9WPFnyEadgZf45H4g9o8D8YQ0nXa9z6A/UCEoUxDnxku4iRBNUEkoLBgoFbYxeWm98rCQZK1wkDnL0LGozPc+o1IHrCEs7WPQrg3oiMZtTd1288kMVzAf339sjcOvLS/rcKRTOnxjAC1nMOxgQ3LGsyydiTELWSCxcEqFNJRARpk9WgRFCLC7NuKr8BAVnOA+cNP/ej2G3G9di3S1qY3217B86qY5gyfbAtUDSJqHVuIX8z1ib4+X49NDx/6hGk8Wiek+CQiuRqYWxwpluTK+OE2RZ1xZlgzS1sxpbm3mBl5dcIKHzxzCTSWX/t3VlT5WGw4IxmY47mqejT820tu25wKHjz799113mNbljL9nYYTxBop73J/naZ3SND5kjTMd6xO8gU7Mew5fTZxhFTiW3nPHsxQca8+1gY+zOGsEplF+6bMxIXAsv1bl3vvUo89QhtS9/fnfu5/f/rL78M/3v/7W3Qe9Z/Lvd3hu7++bu7xle/H6jwUqtZXVwEqLFIOHgsekuTARqymUt9opyGVwSDAQWErAzsBDJ8brXGTLLSs6Kh+fsdJbxK5GxGkgYNKp1KltRwM0AGfWDhKZrxyFg8E0Pl/aE+zbV+fRh9oKuK8eJ01tk+I4P4cIR4MTNIhGBrgWnNtwUsABRxdbglIw0rz5M5NwoCkyasFV/+7aYmQ8HREgX93lk5BN85Hcn1BLAwQUAAAACAAAACFcDIy/RTgJAAC3FwAANAAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9zZXJ2aWNlX3JlcXVlc3QubWS9WG1v2zgS/u5fQaC4L4VkJ+52t0ivB6RODy2w3e0mufuq0BRtcUORWpKy4yI//p6hKFl2nN52cTigsV1xZjjv84xesF8+fsq/fLj69ZZ9zC/ZteQ6 -/yy5b52spQnsRrqNEhIHf7TSh8nktlKeNVzcy8Dwa+tUCNKwlXWMGyYfgnSGa6b5MmPCanxbx4N1GQPFUhpRMdvI+GjKPgXmOsEeP8DGhdS61dxFbeq9Ip5Zo3dvmYq3GhsYZ75VgS+VVmHHhOaqnk4mL1/eBB5af/HyJbuDyHJXBFukSwq6oxhLvQPDpQhqI5ngplQlDzKyalUrwwuu14XmddHI0oZC221pvSw2Z8WcOK9bEy86n9N/+JZBpFPS90bJkk7n8zc4XrTOkUN/W0T5VcELZQK/lwWMKaKmd2+ZdM46/+78zau3bMudUWbt381/mExevOhDIEv2meOah8kkZ5cuKKGlv2B3xhbC8gAOshC/oYvVdxnu2pXOrqUmSxREjs80Li5MpfYW4o+XkEKnouJaS7OWI5JKrauBBircqlo2FrZAiTNWZWz+A33+NGcVTq9lo5WAV3F6PpihHKxY8KaLHjwWbRli7y2/nykj2iXssYbZFfv84ZJtVTDSe6RV21jjKaFI1oZrcqzUUsCqUuZbZUq7Hch4YK9+Yosprmg+jnMK6Yi0lcjbkvEVEpdJjvQMvUHE8auvreYxxb6Tc2FN2VJq/QXe9w5ODisldUlWIuhOWi9QOEzVfA3PI/lXKyUUCQyW4QwifSVLCkvGShljHd2XMb+FZ+NzujQ4bnzDkY1iR5f9bEOu5UZq1ji7kYYb1DvVcy1L1dYZ6/OHSnRNVZPtnd17OWMpuUjfRjZB4czb1gnZ3Uo2INhfo0oz7olEsApHpNk0psaV1KhEx5eaMuJx/H/2iPwQYIraPbJb7tboQBz5v+IisEeQ53nODj7xbGHrRksqGm3NOodZNXOo1HFAFjf/JvFaU6nG076OK47GgPxC3WU9S1nwkA09rMC/6JSMKeODa0liocosGV+slE4eQJ1D5LZCt3Tw34Yj1rj3Dj2Hz0b1hc4AHQ7aVBEkzEAVTYXf3B0ZZo3Mnd3m0CjvLs3p -UrZs4VsZbdlRasBdj+yLkys0GbAJCCDPORlaZ9DSQ3XBwKhJIINAhNGRN8bSYBZ5vWn07t2OnEKGCRUkC5VMoiC7U4NFRsqkmOGdhOdMRuKV8GUnAq1xaR9morex6HiLaEsRbdl74oYT1axLRIaWpWLHEK0Pttzhug90e3c8o0pgNW88VU00tDVduKKU+JPaI4TA+k9XWUwxkU6GIs1ga2psWaoTJFjo/NHgjLuudaGDieo5m6OuhV0VSde9TZ+GXMJIbazD/CPJVPzIoUdGw6b5iDQc2lNUe2g42UCO4kIr9Q3qlfQZpKFdQE+P8Y54obNWXbQMr+P8QpKgP+AIzhxlcrSkH/KYJ8siCZx1el/JjeoM13ZNRWWQeu3SBxXa+Bji+rZy3ENGjSZ6jSpqGAHkefgfZUB1h7qIeGJfchjfWi2T04EQtIqTEtohSiroXdQcgYnKHoah7JXGWFtP65JMOZhU/6RGHDtS/EX+t1sKw5X0wqkmXnrQgS5GLehuHBh4kTxX3xSixj2ADviIzw7id4IRzTWoJ6zp6QlmgjIDmaAZWWK00lOqDirXcQ9E/zchMY5mRxEHyyDmjKrm/GC6pNETObvIwoth4ECHaaHevkQOKCnbniFFdBc/n+cYSQ+7/hmRd/yWpgecMZ5lxcrxmOTH6ibig8HHeuIkb6ijPkAY/MX9+ihEe7InbEN4jhj7AB2zNh+7m45uAELpjxPnE0k9ST/Vn9rdPwBxT9SxjOqnEET+Cn+jNBiDrhEtVe2ik7BRXmEcF+gdQjXA36MkS2dsdIaSda2kYK649vJQRg9XngioOYEF0n4ANMdiqD5vgm3YdZvAQoLCsTjjVzympQNhjwMA+P5ppY4L9RkITT6ihoRO0CXijDqGkCwRUH2lX+g82AlCRCyEoJT3Uf2lFLz1cpATh69TnvApzmxNPgbQUGWnybOQHXd5uwokCCvASIOeI6c9qT9ecaX9/vZuz8P4kg4xCmlC -xesJVZuVxZiVSYVvbAZUWtMf2TYQRBDUOKLkiy83N4zYcB6/fEVtEvlaOgWd/3E2PT9jG99rPR5fs4MGluhf/y0bpcCQypAzPzvEuPTsdRwJB0X+97Ppm7PUS//bKkNJOJ2fNmpJjuGAUV3cCPiBPAAPBzYIZtzvCWMU1Ir21RiEt6y0cW1FQ6st4SWLFXcxTJrf03xO6Zyzq46cYAaW4j6TEhjtBnaDlh49g3qzDrg0NtCM3b4HbGnNvbFbAv87g2aP2sjQYh6G0UlbJ7K4pCmPdHH30vnp/l5OuJtsEs6OVq60uxCW6YDlW/oCUjrAjBFSzRKiipNlFiJeL+JKM7rG1nCQsXkquz4z4K59pXRPImJx/UQmUHmMfyIUfZpFJZqRh2vH1g0lEF8zIG4nXibEdw0xjLwNlXXqq4wr51Jbce/B+H5GAVxZjdLI26ZbYW465HuZ9pIYyiM0P4B5LO2zfwGB+Rn/2rrZlRURyvjZAqDoYTY/m/+Yn73O569mBLgJbJIZOdHghyzz5S5HaHOUtstBgnILs+/eJqBgdAdNvacw++IkcH0GjkNUgvF/VtBfQv3PXNOBu4vnUN6zmhHig8iEcltD8e3Jam7USvpntP8mS68qj6+XCkfviv5fAcddRXdvr0V88/bNkO4Jpr9jLhETjZ4aMA2FKO4JUZ9m7cnGOT6wJGFUG5fxbUda6neTyXVrCId6GqQ13Fb69EKEwOmQBXEFPV7X6R0k9cUSq4K4pwS2kWtr3T26v5AXk8nd3d2S+2rS7FC+5hXroLqfYTSU0hXfTkR6Mzdtdt/FfCK1TkiIy/OfENCpAgnAJ932/j+qnycaqZrqpTiZ2928OWVHLd3hMD3RaU7x/SGOmAZnk6GALSLk8kGFp2r2TftYUyoPI/VJZ7fAfEV6mTtq8UX3vhgcyJKYnO/T5E5vuIf8Tds8ev9+6MWxMGW31QiqwmIs8zRJql1jKa0jFgxKs98WOYApN90r -bhcxEfc0Qi4zmiP0scjiC6r9OEnv6irZb4ekMIv2TCf/AVBLAwQUAAAACAAAACFcFSN0j7gEAACjSwAAPAAAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9yYXdfbWVhc3VyZW1lbnRzX3RlbXBsYXRlLmNzdr2YUWvbMBSF3wf7Jw7dymDPYxt0L+vY9m5UW03EZMvYckv36ycnHY1Lje6596qlaYMbfVdyk/PBGee+dm01mW7wtrZ3to9VNOPexvrWWd9Wd8bPtpp7F6vOmmkebVubWIXBjiaGsU7fZr+scv0Ux7lLT4/AMI+NTQxvqz5EO7198/3q24+vX65/7652n3Z9qJtgouv3dcKm530cg9/9fL97d0iDomlNNFX6YavTF2t9Z1s3d3VvOg2MD1FCibY73rR0C+umqj5L9rP8aR7C8X8n2JL1tknXW1t36U6PzngJzZvO9a5f3hKDHaJL2Nb2k4sPEuq0bMy7v+mF4cg20wJv6mEMMTSBs+W0zbgcdriqjg/m8jB1wRt/PGB3PXUXf/ZsVrrazk10dyfar4umg1m3rucf6rRY40gnksaBhsPD5Brj6xQuQ3qrpndAdecmd5Oyahht4wYXjxFxEx7fB1r06WDbNi1TRE/31vvl5bejOV2pnp4p8Ft7/ACePidTE8Z0Xx5/KdDD8plLl+Jo0kUz2r55EJ/k8oMw7FcAQdq/xGHE/Qojy/tnOxIE/ookT/wVTi/yV1j1zF/oktA/Xy+OyHOYOCUXGD/3n1arnEop+RdUwejP4SXZv8VWC/+tAUrpv4UvEv8fL4XxvwII4v8lDiP+VxhZ/D/bkSD+VyR5/K9wevG/wqrH/0KXxP/5enFQnsPEUbnA+PH/tFrlVErxv6AKxn8OL4n/LbZa/G8NUIr/Lbwg/g8P7Rj21tf/wwLueqiErABA0KYBqByKAuh7yjqAiqJKgMpDLUDlMjWQwec9QAQQI5NII6ZmhpZT -AWm5zsEgGWRYYhsI+HkdMOCgDxgTICEw+IWMQGyEyAiRE6BWiAySWgFthsgsDS+I2iEyuIAZaA0RlaAQoYyWKIeT2AFuimgwpZMVFYS8L+LQFRWh0hlxBhSSBLE3IiNEkoC6IzJIKgm0PyKzNCQh6pDI4AKSoPVIVIJCkDK6pBxOIgm4T6LBlE5WVBLyVolDV5SESrPEGSCQhLemrfuDS8nRhphi9z49zHKb6e0SnZHVBIza9ASdRBEFsq+sKegwqiroRNQVdDJTFtkBeVuQEcRIJfOIqZrl5YRBBGgdD1JGliZ2hmhCXhosPGgN1gxIG6wJxbxB7KAAiNAcUA8FoOTuQLsogKZjD1EfBaCL+IPWSdEZKhHL6KXyQJlD4G6KilM7X2GNyBsqHl9VJCotFW9EMZUQmyoAIlQJ1FYBKLlK0MYKoOmoRNRaAegiKqE1V3SGStAy2qs8UKYSuMGi4tTOV1gl8h6Lx1dViUqXxRshUElzMN7bfm/Pph7c/oB3WigpKxUmcNMsKI+iF3yPWcegSKpoUC5qG5TPVA5xTN47IIgYzSCVmNBEak5DEEb3wJCQiEyxlRTm5NUkGAL6STAJkpRgTmFTEVs0GKXiKqhRg4FatkLbNZip6StR0wYPKGgsWuuGkhQjnNHAUbEa1oLbOAyqfOJXEZe8n5NMKaAula5OMqiwvIi9HYxSkRfU4cFALXmhfR7M1JSXqNuDBxSUF63nQ0mKQc7o/KhYDXnB/R8GVT7xq8hL3ghKphSQl0o7KBmEyesfUEsDBBQAAAAIAAAAIVw8oJM42QsAALYwAQA1AAAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX2J1bmRsZV9lbnRyeV9zaGVldC5jc3btnV1zozgWhu+3av8DlWvczlen00XtxUzPbHVXzUxPTc/uLSWDEqsGA4tw0p5fv0d8BcdgCSERf5yuvoiNkAS855XMA0eLdRxG1GehS9I0 -2rg8WWcB9R9YRN0VJXyd0dAnuZukNCN5kvnwnzzSOHdZzPNsvYI/xd5xklPuPpFoTf2Q5LT6c0VDtl75UZJvfxGTVV0kp6uibmjJD5pSxA+SdZrEou7yOxrRIM+SELZC/RkjUbUhIisWs1j0LKVpzqBESGPO8k1VgIviEfub5CwpihEuygV+miV5EiR1RelnHyrKX2qGLx5Y3HxM+CqJSAQV1+X81Ve+8v963C1Q7Pdqc5DE4TrI2dNWDd/8YNVVoKqhtfmJcbaAi5VmNGApy19Oc72FL2kYsrhukD/TKIKP/kNGAnHw9QWixTkrzwcPkqyuJxGnBVrNMxLzlGQ0DjYvO6cZSzJxWrN1cV1IBqVL8eRsRdOEgSwqAQUR4dzNSfZIczgUGoXNp/pYo/Uq5nX58ssseeZtYWX0f2sGCmzLsv5SFNj6nn5nPOcuiaLkGUTbVjIUzTagA1AZd1eMc3FSGCiPvwi7PMh//uPz7IfZj//57adffp5dXl65LqiZzFuV8fkCTssSugEnLuTzpU/mv33+8vvPP339cyZ2DpbQBRo/Uj9eMpBkmOT+kj0uIQqIuDizP65ml0uxH+g8J6J+H/YRCn7wgzXPk3BT1f4u4E9uz78rV6NVV1bMhTLl8cEp6emVOCXUewltbzeoixI7Ee/tmMKN+0AiTt2LH0WbDuiX5q7zROMwyZwMJJXBR/iz6MkseZhVPXE+ffvvO2fu/JLkzqfkB9dZJHkeUSciCxo5bAUW1b1fdV5h11+LXtQ7pkuwAteJ6vr27HtR9RlESl3yTCCOQU2L0kgLpbWd09txTm/QKfLaEq+k6178m0WRk8SR6BSJnLq9eUafGAX1O0U13HXSde7kS+pk5Nkpa3JETQ7JnXaAiDKxw2nuFMPAvzaUOyQOHYh0hwcZS3M+L7a0ZQMCbh+1X1y9d+nm3cWrKLruiqKHdRSNCp4tt4RIohlYgFBMMRKI67kvfK6thY+8X1tFpIOD -JxkcrkslXnxqFXCKdp2yXdcBT2eLrPB7kPhjIe+Q8TQim1L5hbbjAC5M6IhPhcGPV/rWHKHrOIYc6ClEwo2VSEiXG16M23C+Uxo0w7q4Ws9J9lfZnT3BcGMtGAorFoLY6Y+7Owvx9s4/vI75j9cz8+ks2jlV8vqmRJ7KlOi2jI0v4iidNFpzpzpOpzlOEWvVgFacjBkBRcP14tX4JsaiL9sbyrBt7bhiQZZAzemmtdOfMOeawZwGps9hWbWzVXQu5r20+JtWVfbvVvewEVDdkA0LmOjqnIJh3FaGsb1vebVgOga/msCp40XyfU6/w+UWZglzoGrA4dqO0volU+pAXNBKQ2n4MP2gKjpUjqWv++O+9FX6O82T/E6rhtKvdWNVEMyrgOwcJG0EiPYRnILk39sZIz8f0hyxrzewYedmhPfqZkQ93/tVOsXL21b/VvO93gM5Ba3edd4fWLMoNHJ/oKxJzJ7W0EVWuF/xG3SPB9u7L9B0AjrUPkZ399ac139Tztu6ueep3pzb3qvvlqAnuyXoqd4SvG3uTIgjre9McIil+jaD7AbDH2JyQ6svYNfq7JX3F4KEiOBqQnXx0orY99vX3x3odZyzB9jFdRYkD5ZNVfvb/VY3FCZBEYvFQbrtJooq2sdi+N7GxBfrFJzkg5VRr7kDHMJQAOe0PH8rwvlb/zBU6ZnbdwN79/uralAsf4m9+iVVjo6g1SbcRDvzpuWXH2t2hsCd7p6CYO+tCLZNg+CcsjhYL4oTDFfube6G7+uR2wWvtr9rhFnvV2oQrGtBG3m+nquVM1MrWtzq3Sno8KMlRHN9+yaMBpqVy1IUQkqDlMZkIF1dmjX0On4mxzTKEYSgBkFNXzB0gv/xwfAWpEY5HpDVIKtBVqPvGdcTs5raVKaDNcpWgrjmXHDNleFHGpqRchpeo6xoJDYnQWyubi0Rm1q3EyEbZd0itEFog9DGkpkYflSh9pA3oDbqfoLc5rg12/nIwnjN -TghulLWK6OawpdjJvA2gmw/Xb4JuoFm5LkUhRDeIbowGkmEWX8fP5OhGOYIQ3SC66QuGzgcCxgfDW6Ab5XhAdIPoBtGNtmdcX06MbmpTmQ7dKFsJoptzQTfXhh9yaEbKadCNsqIR3ZwEurnuTCNgAN3Uup0I3SjrFtENohtEN5bMxPBjC7WHvAG6UfcTRDfHrdnOZxfGa3ZCdKOsVUQ3hy3FTvItQTfLTZgljzRqRiCYFcMIFdlJiLa/NbdvMyZAQz5jPFoGMHeFIDGKZUaECUIYhDB9ih/wOruC4k2zlxGiR9KCpAVJi74x3BskLQrOYQawjPALxClng1MGPHigMuaNpygjZIvM5CSYyU3nS/0SZqIgTgOoZIQ4EYwgGEEwYskxBjwUoGAUhnnIGNNA+nHcwhywioCCMA1BjxGCRMRx2HrrJMQjEIeFhGKS5vrlhwnEkHIYD5gBeFolTibDHNJIQdCBoKNP9ANeAVcR/ZSkQ6p7ZB3IOpB16HvD3USsw2wisFGWgbjjXHDHjSHEbzDh1yjlIvE4DeLR+S78COJhMLHXKH0i9EDogdDDkmkYQveWEniN8w3kHketzdsBeflVtDkB+JBqEtHHYUtOZ9n7fYKwkJBL0ly//jABF6IP4wFjiE1bSbw1KlIQfSD66BP9gFeoVUQ/JfqQ6h7RB6IPRB/63mBy3XoV87CPPqSWgejjXNDHrSHobzBh1ijlIvo4CfRxq7MavYo+LaMPqT4RfSD6QPRhyTQMYXxLCbDG+Qaij+PW5oC89iranAB9SDWJ6OOwJaeznHxESdhqLEqe2znPzKe2krXn9hfA9FZIP0zHzPsBhFopVIzij5HBggAEAUif7ge8Kq2ke9MEZKT0kYEgA0EGom8PJteDV/IPMxBkpGsgBjkXDPJ+wAMAauPfeA4yUrxIQk6ChLzXWeVdSaIGUMhIiSIMQRiCMMSSbwwA+0p2YZiGjLUO5CHHLc8BeeSV5GkIiIyU -JSKRw1adzjLt+yVhIRWWtMF9IsR0WEhFjIfNAHitFi0TYhGFeEEwgmCkT/oDXqdWk/60ZERB/chGkI0gG9F2iDuTC66rWcgUcETBOBCPnAseuTP2eIDBFFmj9YuE5CQIyZ3OYupqKrWOSBRUipAEIQlCEkvWYQz7W0qXNd49kJMct0IHZKJXU+gkoERBmYhKDlt4Osui7xeFhdRZ0gb3qRDTZyEqMR42xri2lQRao+MFUQmikj7pD3j9Wk3606ISBfUjKkFUgqhE3yFMrpiuZiFToBIF40BUcjaoxNgDAwZTao3WL6KSk0AlH3TWUFdTqXVUoqBSRCWIShCVWLIOY48AWEqvNd49EJUct0IHZK5XU+gkqERBmYhKDlt4Osurx4lfDbHVYNTkXTOfZGtfW273RkyuhWzEeJwMYNnS8DCKRTQDBGEIwpA+rQ94/VqqddMcRFPuSD+QfiD90LcEk2uoSz3DDPjQdArEHeeCOz4MgP7ycW486dAULPKN0+AbOiumS2VpAG1oyhKBBgINBBqWvGIAqJdahGGWoWsXSDCOWpL3A7LPSyVpCF5oShGRxWErTWdZ9H4pWEiCtbexPuFh8iukFsZDZQBWlkfIRNhCEiMILhBc9Ml9wCvRcrlPRy4kikd2gewC2YW+K5hcBF1uG7bhhcQsEF+cC764N4LpDSa10tYsEoyTIBj3Ogufy5VpFWFIlIkQAyEGQgxLdmEEv1tKXqXvGMgxjluVA/LFy1VpHWRI1Igo47DFprPMeb8YLCSp2ttYn/IwORWiDNOh8tEIX7aSmEo7RhBlIMrok/uAV5blcp8OZUgUjygDUQaiDH1XMLmWudw2bKMMiVkgyjgXlPHRCLg3mHRKW7OIMk4CZXzUWblcrkyrKEOiTEQZiDIQZViyCyMo3lJyKX3HQJRx3KockM9drkrrKEOiRkQZBye2/wNQSwMEFAAAAAgAAAAhXB5Q03zABQAAcjgAADcAAABhdHRh -Y2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2FfYnVuZGxlX2VudHJ5X3NoZWV0Lm1k7VtRb9s4DH73rxDQtyLOmqTrbivuYe06dMDdtlu7vsqKrcbCZMknyc0y7McfJdtpclUTxykCNDVQBK5EUeRHUv4IQwfo8+Wn8OvFhy/X6DJ8j84KkXCKLoRRM3SVUmqC4DplGsEfQbEUWnKWEEMTdMs4J2MQ1lYM3UrlNCgyDWGKorFTpfvok7GrhTQoo0QXCtbSO5ZQEdN+EBweXhliCv3u8BBFKSa4XIepNQE73VhRkswiEK3MU3Lq5N+ewNhHsANUjpenjmDmm12GjEQkz/lsPgoSaMpMiuhPpg0TE6RloWJqPaLzxedXN84kcJa8EinDOU2kwX4L+7G+i4Lg4ABdlarOOdGa6iD4XY/EdgT9rhCGJ5gKwxC533fu32gMmKRYKhynhAksb3FcaCOTGSAQS5VEID0YlrIQi6SIDbtjZoYzaqjC9GculbHr81QauSjNMjKhdkaDHnAZT6X64UxflJI6k6UqRWtVpdJFqfxy/X66AMgZyMDkuGA88Xigp5Rza0vCMio0k8JKZwCT3zpDs5wqyBXlPGEiLsbEwBOXk7mcjcGlnKJrib5rGgQhsvmBTAqpQTm9I8Kg6I7wguLDCBKaF5nQLnlJnUK3SmbVAsJtPrvE6KESkx5yWPYQLJmb2a/3ieoUx8REPUDUWSwdDrBKuEEmtFEF+GwwA0SmKRWg/N+CwboeIiIBbFzSYLtxZJV/LYwzicSmqIxaSFpEzPKSnhUWSENdRi75/5xRHTk3TQrCpad9h9b7W4ilsx5iEQRRFI2JToN8ZlIpRkjHiuVGv3Jq8NpCyGcPVqpCYM4yJghmxsIBkbZysJMz4CNT2qDjo7o0bNFUhf4bfSsEelBD5YkBD38zrW0Bg97M/n9jAzuP6lKJPf5rcwtOrvDs++cPf12ER0cDm00RHIzuXAztHBQk -nDICamgBATZJIfdIAhaE3wbhUerWNSniiEwJs0fPEoRuZiGBTh9kz2mZufYArh4zmrAiw4Jk/xvh0pwupATOSqjcHhtpiTwIDbdCqNnR1RqjpfKq3FnakgnQSzjOrnCc+QRuIVfr6dUYttbrQ3W0Faqrj/gnRfOOaQZvfpxDRrOcmftEqmdg38TaVycs5cQeALb0nX21vMwNiwETo4jQOVFQOwCTgmMOJNdgvyMrfJE63ipSq1+zTxopuxUnfCk7v+gM/5g8FKiys5pejX1rvT40X2+F5io68qRYwkaVr/cDzrc1WD26zofFyVZYrKJdW75zQAYOsyKH0pkjAoQqNkomMAvFp+49dHXGHJ/LKRRXYosPKJ6ZVQLainP2q6xFu5W2cjEUM4QOXuBrMN2xNb5IvdkuUg3J75Nm8HzThifsA3kfDn9shcM6Uv+k/i9uFq/xfUnW5/fbdn4Pj18MTRwcbQdRxxO9PHHQsj+pYe2I4s6I4qBlo1SHqmOKy3C27JBqOPeKKg5aNiE1GB1X3BlXHLTscOah2heyOGjZ3tRAPFu2OGjZLbwZvhy22LKRqCHq2KKfLbbsU2pYO7a4M7Y4bNkv1aHq2OIynC37pBrOvWKLw5adSA1GxxZ3xhaHLbuceaj2hS0OW3Y4NRDPli0OPf1COkuUnFA+zzngAJCT/GV9eR56GogGyHTc0MsNh56upAGaHSXcHSX0NEUNItQxwWUUPT1QAxT3igCOPM1FAww63rcz3jfy9CtNIrQvdG/kaVEa+P9sWd7Iw/NX+fuCvhyPPMy/CTQdz/PyvNGG/UT3pXjnRG+0YWPTfSH2Mr3Rhh3NXn4ZHm3YNHRfhHfP9TbsSPbuS/Dxhu3Is/wCHLr5R35fnyACrxKLD+H1bTnEBDq/uulXN5nOJAwTNasu4ZU37aTgs8WreLq6ChQ6Q5BzGJFYSa3djbwmF/FOy9tF9o4PgnzOe8s6WWZPRap6sFLZy0//nPfQ -xO5d3leKOWEZIgW4A8vtRagqdPMNYNje2ekH/wFQSwMEFAAAAAgAAAAhXEqQSe3DCQAAH9cAAEAAAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2Ffc291cmNlX3VubG9ja19idW5kbGVfbWFuaWZlc3QuY3N27Zxdb9s2FIbvB+w/CL2W63y1aZGrtRvQAttatNtuBVpiYmK0qElU0uzX71CyHDesJIoUmWo4d7ZFihTfV4f0Ax5u6jzjNGFZXJRMlEzex2Wdq++klCxtL0m2o4VguYwrUZcpTVJOqipORV4JzjIiaZbsr1wzTmNJyhsq4TPlWdXVuSW8pkkp7qqY5ZUs6x3NZVLSf2pW0iw+qt/9qArE9AurJMtvvmqAcC7uHjUqCloSKcqEpJKJ/Mcf3q1+Wr358/eff/1ldXJyGp/Gv797//GXnz/8sVJX0i3chOY3NMm3LCloJmSyZTfbhAuSQXurT6erk208ViyGMhuap9sEWobCLE/EdZLWlRTZPTxIKsoshhEi66O+Vuu2Snu5Wm8TsrbonKqX7Kgk6v59jT9Pq1vVAXq1oxmrd3AL2X3MyY7G5/E14RWNn71RfYqqLaUyjm5pnokyKkH3Er7Cx+b+K3G92t8/evv5r+fROvpVyOit+CmONkJKTiNONpRHbEdu6Lfr7fsFVX9rutFVLLZCijji3f0G6j7b9xlcBB3/yElKI7mlcJnwqCR3Ef2i+r1uu7++E+XfzXNFREI5VkUFkdtYVcmjlEna/ljBcDRXomtomxIYDQ7mo1l0bOiI5VEj6JE0oMOxyys16M+fPbLgWXzmzYLwKmY1+P4WXmBlCVom7RAoW7YDq5vwuubcyXvjrTbuOy4GY9CK9vbox6ipuxctjlLC2QbeZXiLwQ03jRMyVhWc3LcmaWyQp/AQIA18awLWMk1xDu+fL1M076CSooKXRoXQwyP7MEOxva8YSJdAdC9oE4P1httoRDnZsZwc -itArUcimriwJ1CYlhKL75LpsQ/nVLavYBuaFAnRnBZMqmnW/wW2z5oEvWuHfq4eOCl6DdG3r0YPSoOA+sDVjsyI54dDrah/nVEx6//WF1jNHFXcsLQXcubg/qvQHTJCrSpIdjFB76+iromswTEmbz3R/y/5qXQ8Pw9g1tER/X3gMeqLaiTbqtI+srL6PId/oazusUFTWJcSLfCO+rOkXqA1SJzBp7atW1i+A6g6H0CXvtf48L7Lr+OF6FwQ/dA+wV3i9d9s3w9sS1X/hUf3iXbiJrq+tJpwV7w6T2m+j85g8fuX/r5PaS4+L7aouCs5ACtBgUzOeDSyyjy67LbLbO6mZtGt9vxBV7zXlEKZLkdFkBxNTyQi/auY3tRoHn1CY2uBaRvMKXn1Yeqt1U10IJe+VmhcYZ/+2c6H681Kp8ilMdWCJVHCY1rrluepDtzwHAYturT22yv6kJk26/wGq7h+hXWSngqh/Vwd/bh5aUXU/f/gYQe9zycARJazxiQSvdLcabvdz11Am0ubPXvOQ8XETzS2On2XRC/xLj2u56o5yrpZSGQQQcFLrlh38Dfe7qjNpt4mCh4Ldqg1iQKteuyJ7tKJqoyP8ZT84T91zfWjlYdG2TC+88hgCJd01rKMum9U9y9N605APNZQePDDUXqP9cYH0QfeuXCsxRLQNPaj/eCpsp9NFSv3aRuqzCwOtVaGngUvQMtKlJbnw9MRmqW3swsB8qbMfAiZnX5zaLEqMfREIMXV+QMaEjEm3uBVYN7b490KZuncAMZNmgHOvBggCmg4RDknTFOUvvK69w7KmzgIImxA2jTv/hdd1XXDc1JkfeZOdHayQu7EdghGnzgaInAbVvrRR+/LMQG1V6GmQE7SMyGlRLnxls+w2dmFg5NTZD5GTsy9e2yxNjH0RCDl1fkDkhMhJs/iZFW03tvj3gpy6dwCRk2aAU68GCIKcDhEOkdMU5c+8rr3DIqfOAoicEDmNO99qr7q5 -80Mjp878iJzs7GDF3o3tEAw5dTZA5DSo9ovHam/vs1LcULXEbCcDmOBhmuD7jWx9l/0kzA13BrnSoqz28vHa2sFqM1IkA48hPHIWX9tE7SD+DKjIQHQkREiIdB9rcNzBxyF4kIHREQNpKr+eUWVn6GMSq5D1TJD3/GTGRe98ZMdAZwQ6CHTG7a3tDXex95z4xsDhSG3sNNfwtYPmszAaA60RzQxKej5FUrWdq1dTPwlnI91BOrMot2kneji5LRCfwYSy2fTXNh476e8Z0WDiGDKafitPAs2jVn5qSoMJYr1CX84qtFdQg4lgVgpr5204KRyG1WDCF8Iac4dru6rdHB4K12Bil5PsF5MQ9Kjs3okNJnAZqaodRz00pmo7VK+qfhK2RrqDyGZRbtMOyHByWyBkgwlZs+mvbdx10t8zssHEK0Q2/VaeRJ9HrfzUyAYTrHqF1o6OdhLaK7LBRCorhbUjK5wUDoNsMGEKkY25wyftZR53eChkg4lRbrJPYtGjsntHNpgAZaSqdswzpyQ7yivj4u7RWd79BfwkQY11CKnNkgz3QjtjwtFwM3IbI6chuHG2gLZB19ECM6AbI+mR3SC70d2sYWhHN4egN0Z2R3yjaa0dyeyotTPAMYtbSHCmiKydAOEo8nwMx0hthDgIccZNru13djX5nBjHyOfIceyU1wC1o/KzkBwjxRHlDAqrHZ88PKhq49SAsn6Spka7hDRnUZ7TzoNw9lwwnoPJU7O5QNvE6+wC70gHU6iQ6fQa+uVESG1g6KenOphI1Su3duyxs9yewQ6mU1nprJ0S4axzKLaDSVUId8x9ru2Mdvd5OLyDqVVu4k/E1wbiByA8mGBlpK12XPHwqKqNVgPa+kmyGu0SIp5FeU47TsLZc8EQDyZbzeYCbdOvswu8Ix5MuULE02/oieTawNBPj3gw8apXbu1IY2e5PSMeTL+y0flSO1jCWedQiAeTsBDxmPt84h5qE5+HQzyYiuUm -/kSObSB+AMSDCVlG2mrHHuci2QfOpI3nx+dYf/uin0SsoY4g01mUybTzJixNNiPJGXUXQhxn2bVNv5ayz4BuRuVGaoPURnewBqMtHRyC1YxaHDGNpq92pLGlvs5wZjw+IZeZIqx2eoSlsPPRmFGFEcQgiBk3trb32dbYc+KXUW8jebFS+5WGly3VnoW3jKqMqGVQTO244v4BVdugetT0kyg12BWkLYvymXZChLXPgvAWTIyaTXltI6618l6RCyZDIXPpN/EEWDxi4qelLpgA1SuxdiyxtcQewQsmPVlpq533YK1tCPaCiU4IX8y9re1Ktvd2GPyCyU1ugk/AyCOCeyYwmNBkpKd2/HD/iKptSj16+klkGuwKIpgl+ey1dqCDtc+CIBhMXJpNeW2jrLXyXhEMJishguk38QSCPGLip0UwmKDUK7F2tLC1xB4RDCYlWWmrHclgrW0IBIOJSIhgzL09YU/xmLfDIBhMPnITfAJPHhHcM4LBhKM+Pf8DUEsDBBQAAAAIAAAAIVzU7mAWOQYAAPkvAAA3AAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NvdXJjZV91bmxvY2tfcGFjay5tZN1awXLbNhC98yt2JjcPSceym7bxqXWTcQ5p3cTplYRJSMQEJFgAlKyOP74LgJAUW7YxkinLPngsEgtg38Ni981w38Cf55+Siw9//HUJ58lv8FV0sqDwreGi+A4XpPgeRZcVUzCRomuVtVHWJpkS3lGQYqaANVpAIRolOCuJpiVIMkvGjFOoSFOK8RiuuqbkVKXwSQMu1wgNNSWqk2hMp6ykTUHTKDo4+KqJ7tT7gwPIq4xkbrOssw5lLTqUSUrKeW5MbztiZo1Gv+DQ2aoz/d5m9Nd3OPjhminNmkk/AMZRO/oWBz8zpdaN4czozRv43b2+kExIphlVUXTjn+ZwA58pacz0m95SwQ0aJEnyHuw/8A/49ggfFNVd -G0PRKS3KeYzbMl7GgKwhq0V3RTQTDbRSTGlDkCOccvzOzh7hz/Y8BqFqwQnH7d00PIeyKzSbGofodSukVstZx2ZWNVesIBx3UC0tzA4xqBnlHD2PoaSc1Kwh7r1ZUkuClkTiIc1B0kLI0iw5OsElDSl91JxxopRjpH9TmDd3uVglIb/CVatMyKyoCGsyMc56MjK3U47WRyNnu4otq6mmMnMIzfy2ElqsWrOaTKgZUbgOQstmQn5XFaV61crw55aS1C/lFl21as8f3091bcsZ2uCgPcc1CDzNWclq2iik2FjXSNN67zStWyrxSkiLpI8J/MXFZGFnzuAjk0rDyVvP9a24/NI1cOdYvpjL664WXpMbuCRyQjXGPOX2gH+4Re4m2guxNqZh3as+ynPMMjbJJJhAEjxozmmDZ9NULGtpKXRWsUmFmEiJ3CRfjpK3lUEXFBwmpHPj42lNS9bVuIz2PxtS07wfJ4d9MrF3+tAt3UfzIeaaww2cNPNMYBCz/n1OpoWa5os7uzEXYcE/um16D/xxx/lWqB93Z4n7eBvcD1/jEwtvJWVZM3oqWm1yXLaau7KxJDbdnU6ZYlecZi2eEGuZNtHj3+HSpXFhKOJ8+s2W6fcutCeKmYeT28ibuPqxBLyyLjqMpacUZgXMQg16fSWuD+k1LtogCE6u+hXVxowsXbjjZtqW4yfg4aH0PXIGgx33PVsvT3irDPlQ0bF3g3KMMSlKilUG3WCEn9rLwmzlaSneExwrTTHSc8yb5mZ3LcYkK0+VmcDZf+5ioTlRxr7Ae4MICsHvy60rjmyXW91K5vJ7nH1OXcTFVrkluBz/YOzTyFAhE+LVE4XPo/ritlExFOiHPNkW7OjkJcgJ9HInesKzsS+CwuMeXlF45K9GUnjqdqIpPHt7Lio8JwOqCs/Ec8iKxZEPpCs8ttcqLDx/QymLBX/7JS087F1oC0/BHogLD3tIdfHz6CWoC/RyJ+rCs7Ev6sLjHl5d -eOSvRl146naiLjx7e64uPCcDqgvPxHOoi8WRD6QuPLbXqi48f0OpiwV/+6UuPOxdqAtPwR6oCw97U3VRzUspJtSkJBfaWKQw6PlefAF52LmttUQA9l1IiACU2ymHAJwvQjAEELW1Tgjg6hnlQQADG6qCANxPLQZCjnMDDRCA5CWW/gC2Nqn4IWztrtAHgNy2vgcAHrisB4Acopo//xeIR7wbtJ7v8otDCM7hKvqL+sIQQtWgNX0PviiEcDBAVR/qC0LQkT5xXX/JXwxC+Hrqyv4MXwhCYA5Z23f0RSAEZlh1tx2Mt/5+egcEk6whn3DfVQysgbOv/6R9G+a5mMGlgG+KRtFRChecFBR0RUFSnCPJrG/JjcFlkhhspYhhQXEMQoKtv4kYJ339dW2XRNulijVtmS3RVRqNUvjIOIfc9kTnMeS+yToj2jwKC13YK4rbNual6fDNMbtr2eG5a7xsOcwq2qCH/3bMNGgjxHUJtz8Qu5ey1KXRcQpnTDvICrXKvc7CGGHSKZVz4EyZQb3SfYrze7CGMge+0B3hfA7mFpo8nkYnqe1rzdu5rkRzDKqQrMUEL7sm48zU1gx9kTZlpC0WDgOVU7cwq80qVMbw91lsG9sn6GPfQ80Jq4F0eNhQYrEtKTJCbOe6OcfUtYILjAAi532HvO90Nz3qq6jVkse+c97CwerPLHpDhgLR8Lltji8Fde3xBe6ERN7pkj9deK7u+Kq0Of1+Pxdy9rpYQ/vYH1b0P1BLAwQUAAAACAAAACFc+yeeZWEEAAA/DQAANAAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9zZW50aW5lbF9wYWNrZXQubWTFV21PIzcQ/r6/YiS+IbwJObir6ItEoW2Qri0C2q8bZz3JWue1t7Y3IRU/vo+dF1A4VJ10cB+Idr1jPzPzzHgeDuiP8ZW4/uXyzzsai3O6ZRu1ZUPXsv7EsSgODy9llALLfkWR -287IyGeHhzQZ/BXYh4H8t/eDS1f3LWzC4MIpvh+MhqP3YngqRu8GsuuMrmXUzgaRbPDASkxXIjYsepwhYBIaFwcKSAPb6Kpj5WLVVLIKG3+qLXRZh8UEXt1KvDO10uoZh/gNPArZg2rrwdaxG7cMyZvjUXrhWndMxtWfsoePR0kzr4xsK+OWygWufLaskmW1GFajSVHcNTpQl3kgPM2cJzhIM+1DJFmzMb2RnpTG3ihqZ6OsI239K+kqb7MuEi+0Ylsz9fhmyLM01LIMveecI5KeCQ/sWZVFcXBAvz9+pRRRUTzQTW/pge50y53TWH+gcx91DRbwjaVyPU56gKEQgj7ziy8TVFsuNoFiE9ZVtQMPdl7BmypF4J0RN8di2Eywa0gNfiefN0sGLSvdtxWc4bnXcfV916wCqAU5UU61wdIXwY5OMu7o5K2BP4wy8IfR6wA3K+XdHDWLitNW2xdT/ZLh60DvpfttwfdS/vXBDVqiemx4NDr+pAKpz9L+sulrwe+l/u0d2Ev/azhQN9IYtnN+cnCj582LNPzfhtd1ZY+Sb+vMHj1fz5k0XJLQ+A2zvCgEXbi2S9NnvVvsdpPyehYpujzzWhnrhtXLN6N3S1rq2GRrTGamuJtT0iqMvPXM5xKY1zIErPzTY3KGdDZ7LY0A4oItdeMN9g8/0rA8HqaF3mrMtgXURZ8mqtj4QBv854e60Dojc8wJHnaqr6NePEaG00+pY1+nEfsFJ1tHCx30FGO3y6JBRwRw9HQ9IFWJlSMKS6iEdBzQRsMt3BEpztdc1kAUagcCcrSnR9ld18VEHEUvbUj02HpFPyWD74bJo6tZznNqWppJbUKiFKe6rDakWsgkNsDdWPxMbCBPvAN/rQ5JRULHjMUFWe49MOreRCiNtezY6KWPUEG5OOCMVklw4obQyeGdbtrdE1k9rRWToPHmFk+ken2PbbBPcfLuXh91dayWi6qWwZ1UquV2kstwQxCy2sgAwGH5 -npZxx1Bun7Pr29scNTKbw0JJzrxrcza6fmp0Sv0mMrGJjDY9ApRfk3QTtZG6panrrZJ+dZaYC73e9cj681qpWWdFWFkcD0JSkgfI6CBlL9FkHJpVASvTiBZIcjEEAN2g3KEQaYIKcV5VfA9pOCEjpwyycqNgoUf6oSpbyMh0wqADS4xaW0jTo9KmPEuFESEXc0lmABm2ylHtZOWau/MZ+uipcCyK4xIhG5PTo57/G7F2JKvRNWRZjEqCiM8bdlaAlDb5m9jxvQ10cft3lsMTTvsSu4/XUjIou9WkLN6VyIPAO01CP59Doz8xs3wfq6caOO1JJatQggquIeUN4sFKakVte/QYbhHk4ihVcIiuK4v/AFBLAwQUAAAACAAAACFckd2ipsUCAAB3NQAAOwAAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9zZW50aW5lbF9zYW1wbGVfbWFuaWZlc3QuY3N27ZdBa9swGIbvg/0H0bPM2lDoIafBBt1lG2N3o9qfIzFZEpKSkn8/udnSJcjWZ7u3fYeS2vg18vPCC08QvdNQq5b7vRl+wukGHMBE7qQIwKPqwVmVrj04rRoRgQsfVfMnCKK1+xi4FKa1XVcbGyG8f/f18cv3z5++/aweq4+VsXVjRVRmV/cg0v8mequrH3fVrayUUVEJzdEJ/jeRHuS3TPI7nn+cu8etDb3VQqt43Ka77b6J6jBcHFRQT+kTnIdGORXTZ53vBQltm961Dc+g9fDSzosUtGbbgha9MmK4qENjPWytSzCErqMXJjjhwTTHc4DfpPdb37LG7p01H4YXsoSNqV7sgD1Bl17BEjomugieBSt+cRYlGJYqSDfMvgevGtYp0G1gyrAIqaN03Js5kLt05jmIT88TYDRgJ4/h5ZQqnRFOR8PjzqUJPg7f5n72hqTIxYhs7okzivOsGRkov+4IMUYyXrEkA/GxKSH+CIAPm9lbkiIXW/KwIc4ozrO2 -ZKD8uiXEGMl4xZYMxMe2hPifAcpj6+0OdP1yQmUwcjOdyejNWIBQTytOAfS15BBmBObipBSgT6sOVVBCOKo7hVBOeIg2hvbMYclqD5HGkF61LQj5oRZKEEcFqBDKKRDRxtCeuS5ZESLSGNKr1gWhQ9TCAFGDaGsjVe2gtbHW9jn9ieE7ppSolMpI0XiEgF8AzyxMEfe1GhFsJOziyBTRTwsSFYHBOCpJxVhOk4g5lvnsqcnKEvHG8l65Nghloi4wIEe1qRjLiRMxxzKfvTdZfSLeWN4r9wYhUdTFCWQjhdZgdvAPDKl2EiNTuGxGqUpBqiBTQWaDkAVcSxbhX4C/OEnIMqa1i6qZi3RUwZDhnIhRC0taWDhQWTWjBpY08CYbhZA1amcu1FFxQ4Zz+kYtLGlh4UplhY4aWNLAm6wUQvH++3Z+A1BLAwQUAAAACAAAACFc5cohfKcEAAC5TQAAMAAAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9zYW1wbGVfbGFiZWxzLmNzdu3Y0W/aOBzA8feT7n+w9rCnpEcChXY8oZYr6BhUbaXTniI3McRSYuccQ4//fr9AixrNTsKChJH8MG10sZOYj/bVfjlOs4QENHLEmhW/YSFpuP+JpCnJOGXSyfdXkQ2BD4JkCQ2xJE6WYMZIFIScSUwZEcUq+BBRSTlzcskFXpEgxixKKFsFjEuSFxdI2CfffYTd/ltTAZsIgiO+lvmff8wn08fx/eLFnbgjl3HYHstieUrw7laCJ+6T53ZilzK4E06cxisc9V86HRQ7H5t5TrFLx3PnC/duMXqZzh/c7+MR/HnuduAO0/n0ZTqaOSmWYUwilJKIrtO/IrKhIUEfO375h5AM7Q8O0QhemMotgpNAh2NFOcmwgIOMhkiQkIsI4VCucYLeT85BUmCWL4lwdivhIkIziQ5HnKNXsuSCINieCHgpeBicrwVJiwO++gKvy0I4evi6EvT0 -9R72J0myTrD4eOqQrzPO3p9ziBhHCd3AW8BluZNNhjxPeYITePZhcdd1KOmm+LChOX0FEhk8E82ohLc4/CyHU4ngYYb5G2xTHPVSwIvB8w4jkuCUMlx8CHJ4ZTLkmSweL9i9KpwHYeH2sOAYDEvY90QU9lu9Q/B1EP6ezi0D4xhk8Tbf7URhH7JbfhoUqo3fiXR1RB4nP56nd6MZ/KPxbKWYJMXvHZ0PWKLz4fd+DUhPhcLv2YKYC+KohNRxKEXkWovBVsRICi0yUgejIiR9LRNbElO1DPyjSwJLdEIG/q8lGahUDHxbEnNBHFWSOg6lktxoMdiSGEmhRUnqYFSU5FbLxJbkvFribST4iiTBbhfKmsy0qtc4ur9WzLU8+G/pj/unxcN45s5G3yEgc/euNNfK+VIicCHo/xbCGSEoEtKGweeIeJ4Owb4hloAZBGrT0QaEPh6er+NRaodVYoAS7RyrZpHehmKW5XVVIEqzLIvBEAxHZqOeQikcPS0EWw6jGLRKRz2Kinhca4nYepgmRTu7qlmk16GYX3l9lYjS/MpiMATDkfWop1Cqx0ALwdbDKAat6lGPoqIeN1oith7nkJIQHAUspkFGIi6DhL/BL1zcq2peVbfK0V+gmlndurPx6N6FW7j7e8wW/5ZmVp2rPnqTKCMihK8B7S769vj8jIr7WBhngaFISVsWn2Pid3Qo9i2xJMwjUZuVtkD0YfE9HZdSV6waw9Ro51u1y6qsKGZcvq8CUppxWRwG4jg6M01olELT1cKwpTGWRcvUNEFSEZueloytjclytPOw2mVVWhQzMf9aJaQ0E7M4DMRxdG2a0CjVpq+FYWtjLIuWtWmCpKI2Ay0ZW5vzygljnCSErcinbzamq7jJDK3ZWqfuMsU8zb9x7yaj2Ww8fxgf1JTmad6Vr6byytcswmILX2m6s8CFlXNGOYoendJNqUy3OjX7MFkzF2KmNlanFKTPVrej81SqlmV1Cay0Y7qG -i+sxKUZ2XU8lqDSys3ouRc9vlqy5nc8t6/paOTZml+XmJDVrrqiiZ12tKRu0i6OlnQQ2XFzPSTEV7PZUhEpTQavnUvT8ZtCa2ykF7VorxwbtstycJGjNFVUEra81ZYN2blo/AVBLAwQUAAAACAAAACFcep5UZ/wDAABoJAAAMwAAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9jaGFpbl9vZl9jdXN0b2R5LmNzdq2Wb0+rMBSH39/kfof7ASChhY3t5TJ3dcncjJrc+IpUVkcTVgh0Gr/97ea/oT20pTUzqcApfX57Tjx5QRjP2DZoyb4u6XHVHE4XSCNY/nZFsD2tK8bFx1P0mco/GlqXLCeCBnVJOKfbLK+4kPvR5lhVy/ukkVcfX7/WRLyviWAVzx6JyIvjw3u6ZYd9xsmefqzLSgR5dajlY1WTvdCyPJ2OlpS0b7t+ruWuOWkaJl8sHxUN4e2TXO+pKKpjSU7Z80fJ+/pYUvEtOx1Dfk43akkoqobsqHx7fjpi0FaHJqfZE5PcDRWHRoIGW/rM3gh4JWgbfL6yFUQc2t+/1lfL8GZxsbkPr8JZON/MwyhCgbz6dZFXMi+5Cd/Jg5JTdk1VhrcojIqQcXkyUppXBOqbQfSnCD42Q8FxlwiF64080ux+ub4MrxfH463DSL5huV7eL2er4NtPTWVOctuGkvIzXDUitkB8YtwX4NtW73gYwvu7XDvBxRZwdfHayt6QyvK2pvnJJC+oqo3fwWMI/Obq4W45n63kF3znwJ+YEuDEWmBZAlHj5KfCiQoVJ14cHtlgWkmsg+xoPAIRXT0e2wA6iKzD7VF5DMJ7cjk1hUixtcuyBOJO8U+XUxVrir24PLHBtHJZB9lxeQIiuro8tQF0cFmH2+PyFIT34zKKuhDF67apdrTMSrKXqnGTyaK/JoBuK6YLJP/hPFzcbi4Xq3A1u5YKr8O5n+kCIStQhc4umOdCIwRBOvqM -sBWiVmgXYFhphCF8T0bH5hTgrKEpgtkV8waKVcB+5g2U2MFaaq1H7YidgKCuZo/sMJ3U1kP3yD0CI/Bk99gcBJw+NEUwvWICQWMVsZ8JBKV2sJZ261E7dqcgqKvdEztMJ7v10D12T8AIPNn9bSIrKdlmvGBZTbeVyMrqRf6S42Z984iuKoAfUM0k03C1mF2EX8ddbf75mUlwZImrENwV9lxxHEGojoZjZAmqVdwVG5YcIygEP45jbEMCTijasr4EFFMKxipsP1MKjm2RrUU3Ae6oHoO4rq4ntrCOspug9+iegEF48n1kAwPOLNqyvgwUcwseqbj9zC14bIts7bsJcMf3MYjr6ntqC+vouwl6j+8pGIQn379Nc3lBypLyHT07b8F2hckkY1Yb6B5TTDV4Es6vZqvVYn25+MzC01QzHRSAogV84neaYQrBO/ZCHA1C1zaEzyDg1ogjKBY/nREjeypw/jEs1meimIVipArCzywU42EhDGwP8wjOGyTGYACuHRIPw/fSIuZh9DRJDEbjqUsSezBwajIs1qeimKDiRJWEnwkqHg0LYWCXmEfQ6ZIRGIBrl4yH4XvpEvMwerpkDEYzoEv+A1BLAwQUAAAACAAAACFcU4631Z0EAAB3DwAANQAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9jaGFpbl9vZl9jdXN0b2R5Lm1kpVdNb9s4EL37VwzQWxDlw802u3tznbQxkNpB4j30RDMUFbGhSC1J2TGQH79DUrLVrpXILhA4IjUzfDPzaM/7ANObSXJ3fTWbw00yggdalJLDLX3k0gJVKYxzKhToDMaVdTpdDwbzXFgoKXvmDkrDS2q4BRsdc3TRWQaZNmA4lUAZl7KS1ITwBae2MrzgytkTmDjASEq7Zj8FvhQpV4yfDAZHRw+Ousr+fXQEC4yVrglGJfEgUh+0QLMRc2LJgeGOSKnjwUGKQihKqHwikhak5Kl2 -ROpVqi0nyzMy9J4P3CwF44j034pb1zrJaVJvEp8GaQMPnjFdGerk/T5+wt1Qq0RnCYu1AqNX27f/KIERQx1MpcL++RD37zgCV0/gDFU246bxGHz4ALPKlZWDL0JyOxi8wsg4kVHm4BXuqMvhFfeSJIH6E1eLukARGmF2ucC3CywMPVW5qCuRE0p+MjyJhj4A81kQnZE6i7di/GrbCvPDatXbrTb2fsgobVzwjI/2Peci9a6+XIG3cGeQRnzl6zXWyqE1Nxiu7lksIgtPc1HgEUL5el4vefiPLqlwQqtfi9v16UFjU5Oz82Q6S8az0Xwy/Zp8ux7h8zQ5S26SyXQyn4xuQ05438J1S7yL0oRp6rD7nmH4rJzRMrk/T87yRCiEQWXw2m3oX51B7g1axgV1LMe7VPBUVMVpygPHa5cW3GEX3C+T6d5gM7xtPaFuTPsC/dgF9O7m+8NkPLrFAj/sibfM11YwvNlC2ZIz3+9+6Dsc++ZysSuX4cVhJBle9GXJ8OJgmvzRiXhvnni8fYjSoN2bKZ86sR5KFQ95f640CfwmWS53pXM5PIwsl8O+ZLkcHkyWPzsR700Wj7cPWRq0e5Plr06sh5LFQ96fLE0Cv0eWc/xC/H51P/t6fZvcjr4hQabJ+O1fn3ydGv3EpZ+QsNfqjd+fLtPdv0BWZ87jNuJlB9DzLqAdFHkH5pYjPUBujN+GOOyC+DYz3kHaRY0euDtcd2fhJ6HPkqpnnBu5TC3MNU41fvhxHK4q44fNeT1sDgYJRo9TfEoe14uf1tS11tSfSh49HYlIw4vISaJowdtrqaMf01WJLji1r1AFNE6GS5ymt6dt1vVpjBojuPFuzUiMV8blunFnHOf9lnu9btyb+Y3gX3hZxhc4LBr6hAOvZiGVuKkrwzjJcMBGY1cZxeMx/p7FjFGgcBz6fVXv+Y9YfLivwkSewJUOCsahTHBAoyLwc/8xlNgCjBYaE2fQydUxoDB6DL1paQSg -dpcE2gQvNfY1juvWB2BaSlpaDvWdOw20Pm1IkmxJgtG8ZIFHjtoJhQ5dgR/HATfNunUCNliiVINCWNvWIpBFBq0Eio0yCpVjmH/GRCr1rPRKHYNdK5dzHKlDcpl4wSpiJGqeUcu0zqCM8dIfFavcFoNBKGFEzA+l5LYlIIV6RvQoNsFpTNc6UwUH/uKlgT9QFNhU8NZ4WKC+rlRKDSrVRlltar5JS+onlLcI0wPbVBxmSq63AH21/gcyVCJI2yWVKBCxz0ZjkSkGOA6KOeKPiLwqxXZV6O30iprUy7+TwX9QSwMEFAAAAAgAAAAhXIlo2M13CQAA8BYAADsAAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc2FtcGxlX3N1Ym1pc3Npb25fcGFjay5tZJ1Y224bORJ911cQCDAPgdqaeBe7i+Qh8EiZiQHb8VhOZvepQ7EpNcfsZocXywry8XuKZF9sJxlnXnTp5qXqnKpTRT5jF29Pi8s3q3fX7G1xwta86bRk67BplHPKtOySi5vZ7LpWjnX4yTorO26lY7eyrYxlLs4o3DjjU5DO44djvK1Yw720imtWKSe0ccHKI3bqGdZrjWeN5PSoYvJWVbIVMk6iN5wJab3aKrxcr9ZHs9nz52vPfXAvnz9nH9O+5bhvCctELcVNaSWvDh8x/ER4dSuZwJKqgh1xolaNannJ9a7UvCk7WRlfarOvjJPl7c/lMc28tMYbYXSc0dYqDxsm5dfD+HWtuk61O+ZGCytTwo/S4VUZWq8wOkJWCtNulW1c+SkYDxeSJ1wI2XkOCEpXuRI2lyI4b5IrV6GNq744pj98z2TrrZLx2fHxf8iERJ3mG6nj43/8C0+XaQlmzb5/OHv2jF2YVmjVKgFiCFTZYL3Z7FLztgXeFArJLJBoJfgYh1/9tJozLqTWQXMLAisVmoUwoQP3/aS98jVmMR3xx1iXeWWq9UABe9Sh4S1DBPFW -NVg3OHkUbTvvI2Y1RMxs9oUtTYMdYCb7wq4MPP3CwG/AOG38a/xDkLCN3BrY6zId9PgtNtZEDcjAJKxUFAX75ifen785IQda6RzLfsFM+SmoW67JAKml8NZUstgrMLrvR31hFcJYyAIMey48Q3Q6b+HPgp5Yo/HEbgEehn48SPeRvnNUVLIjYFpPDy9MvwlAR6ZIAOYN3GOd2Uvky6s+n+S4yZhrhDVvD0xoCXTb3cLRC60+c0pMhvRVFbL0KLq7NsQgQ2wjLwgiVh8qa3ZS04JW3U2Nzd/ID8pX7N11WkkbwaddwcUrdiNlxyp7IGMrvKx7ChxpB+2xtaaJ2+BP1cNHrFEcRqaycUuuBVnngt7SxErlWTBCEThMWOMcVr/BRj9g6BbO6qxmCZUN96Jmp6u08er8zTnRTt+LX18cswVbnr0okPl3hxz0WH7YnLyjZZ3hN+Prh9ases641smkmHiOqS3FP7Fqovg5hALbKFPzz9xWJjgyhfIohZYiUge6k8FRxF9ertcUGZ20UYthoWmrkHSwq7mTT8RoDiZ5RbtsLSIZa80JrMKq1sVorhQ9pAGQXWOreXR/X0tfY4WtlXJqB1UPRB2RqxLREFSgoEgCM9VnvCG/HuRadJpXtYzriEAOtDJYkDfigVSjN1YSNLTwxsBfLEQ6hCWHgP4OJUBbm12UOGeCRY6CFE6ICL7R8tUDOcPiScGQfn8iU8fkc7UJuqJcVVDNAK1L/p0MmhmDpHceNlC8cNBzcEoY1LAmWoEcQBVECRT6L/VimUoKuzU6NHLOcpRIO8cyDVhAVbJynkW4GCKLjVUnaXau6hMdpQAlB0iaP6S3lwgEqngkwFToSZ7zq2gKEbKIxY29vzojaU61adIk5OexWiYlj+H6FHXOODt2LqFOgvTK+869XCx6ClwT3xwJ0yxyfBTBLWgRAvAvCzMh+h4hgVBGJlqS9OyOlbG7QSsErDAWPylK8BPuhY5yhmKd33Kl -U9QYyoe9wmqywcO45tWvv4OWO5902sO+Oj7P4H8GspsAyZQpcK7x6p1rjEbI+APyZDPxGfPM8A57fsXp7w6NnPgiF+7Fk/E5cTdM3lF2KK8PQ+KPjUFK0iJr4RDtMcoGrVr0VWehc/ZjzVjyAaknUJSl7qPYaGOqBf0KkCD5OJCTA6g4sOjQ145mY1W1k+zS6EMD636zqDQTRCKpRwJTMSDC0YdQQdlHlXMyer/f3xs7Qfkeik8HsQ+yFFxIuYY+oBsQVyjAFs2x2iiia6wMlHd9mxUXRvil+W1oNpTx7lG20crzWPoAL8QqFjyX5ED0HSKJrs31iJq+bGgvX+dKa9VBFdZq13C2BM9sGTTpCjKRBAzZnIyN614nANk6JZB7AKSjVbiukKd1RPP9eiHbRU43t+jxTyKf9onBxAvX71Ngn56owo37/O0sR17vZM/rJMlfUZYjdqhZ8TV+7OpYLY31ABGZgDUaatA48N61Y5KbWC1Ytj8L/WB/7ySLmmoENZxrKHg6PUViGpbHJBJO0T1bL2/YEmWNs7eSa18LYosgJxqocqxiFzowcB94lZcg0I9E23v74+poWuQ933oq9wRSseeojnAul0dAFq1cnFyeLBnVVpgjUmyhGdhKG/tYgo+CnnL7t7NLOl9EqPuOyuKws1x/oOIebJtg+CP8V7GTrruW4mlO78OdQi338l5R+CGXf4nlGLRQfUbDfVi8+emM/IQGYU0ES05VJh3sST1lgoeOUwkQbcjURJ68kyJSTRUjZ1/Otev3H9j6/SoPfJKHPty6UBGhn+tipLUIP54QcNJJavESo1buIOjewOPT9buUBom2XvR76ogqG9pSVYWWt1L3sUsncOqHnDDU9vWnAJ11+vLdxf8Grx44SxFwprboN4SK1wPfkBOcHw60W6T373gcoS4SPxtLddwJNLGxw90ipDd0+RFDHjRSfqOdxaaOdLKB9jtKdgIgX4gkANDEBunyyYCayiJ2 -CjhFwBLquvrOamipfu9vT2azgv0BzWUHE3Kb9s3qer+hpN2Gs1Xf+i4en2od+f3gaN+Xlte0e83R1uJdMxbw3GGmypGObfhqfczqPohjPndv52xsN+bjQST+o/k49u9I4nGkoKIEp9OuqAj3z2uEmaMTic81LpeuyemtSKe3dBZx96150MzSJisTYc1DnlxBO1AYD1HYhMaRm9bE9v90NewzuThxeb8I5beack83UrtcjWuMKMy2+HpZBigHCrSfWT1nx/+kT5r172NWT5lb8jbrJZFB6KXjl6V0jgna+1giTFsUMc/tTvpyq6SmdzFWS5qZqWqheCEezqlBs34Swq9jAF/JPxOH7Cpgv1kCeehY6DZiPD3Nv3F2mveXQR6wBxkBDu1Na/bt9Hw2HHwfbDIE/Xf6y/ut06Tr7jVhuCHIQTA5IU25mOztrQS7eZlx+PxeULnozOPbUgqsmIiPbkKn3tEVj/IQ3rwN3UOgT8bozhiNL2QCWIlihW3OTs9PL07uazFpU8U9jx04NBxBXxkROY3ze/rISqQemllSa1ZJocjQdDf3C3K94vYwvRGm884jGfnKtW8CNd/MFXRJq5IY0aWtRkmd3gs/uP1FgJo7HI4RAQdmsEC8kJge2flWUuPZUVxSIMGNwYYR0f8DUEsDBBQAAAAIAAAAIVzZCMOH5AQAAEkMAAA1AAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NwbGl0X3Njb3BlX3BsYW4ubWStVk1zEzkQvftXdBW3FPZCKJbdcAqBXVJFSDYOe5Vlqe1RoRnNShobU/nx+1ozkxhIasPCxR59dKvfe61WP6L3b0+nF29en1/R2+kxzVvv8nRuQsv05hObLrvQ0IXXzWRyVblELT4J/5pW2vulNh/JrSg0TBtubIhkdNOETCZsOBK2FLeRtQ1dTjM6zWItO2rWqYtsiTfOcmN4NpkcHMyzzl06OjigRZJY -VJJYlByrxMtugU3HJrsNy1HWWZ25bPeudo1W2q+V17Vq2YasfNjakFhtnqhDsbzsmuL86aEM9Ja4ydFxmTs8/A2TF9rFMnwhg8grjhJkO04/n0wePaI/HHvbszWZTOmMrQMjMpmOaCExLR7TosZ0V6tG1/tDH7KMMtctR6CNrIxMtG+Va1x22g+jFfCU75Dq4DXO2o07VH2eavVx/dVqsdhfM6GxnbD1he1cmfqb1cF2XNu45JYezEc2rnVZIAHpSehaZMQNVKioTJlTzoodezY5Bsuqhkkc0IzeUsXWuqbElrbsPb7VKmojeSaTliEeIpGxaB8Lc6HNziC6HHWTWh2RLrsvzFyt1/AeumgYSDxiFZlu9RNZcVaaTK7LN10Pog1pez0iuxlfBs/4m0sM+H8NGpJchmt4mE6ndM/v0TjAtkWuWO3J4/VSKaPrZXQW4bbB72qOah1xtKp2NoY1+wUcXFVM5zd29E4vJcDRkC56Q/pTDLGyf1XE/NmvMtmO4NWXy/cFNuqVVM24FObeQM7GjaBQNt4VwbP/iiC5da21t7CvlNwMrTKnLPnwIIrOHJKnhTZzcUQnyCU66bxcp0FZlJKlK2GjTtBV75zmHDfOcPo+Qp/8CJy7iP0J4T9AhsMX/ycRGvcRl2/pgtwqQYDZe5PhvWymVy6c9pvL9If58V3RPC+TLGVHx51qmG1C9WgyLnIp8UNQXxN2D4Xf4r+LEtdkXqPOAn6IKGeuZrV1uVKpW8rZUkVKdD+Usvdx9hN0/g6Gn/7+EIalMs4rLWXxkv/pXOQaz2CSh+xVyNVQAhPVXcoEQhJiYXp3enb6Hk95J5W+xJp03aKmM/ZnAl72aXanj8jA29BeeSZ5ExPlSstqCh4H5ECuSTl2Eg3xJ7CWE6EWl+JOYlb8n6PZCOXpxNrgHxCNuDVBQhKto96qocUo6GYmbWjJK6nmuOprFlcnlXbNNKymBm6C3fXupB3JbrWjbQWlxxeh -AmQv7YrG3D50cVQ6ASo63HRAMEDYGfnWBiRhekw64hkDiseCKjJsDPIykaQj2iM0VRbNUHn7yIf1rCh1XqCK7pcdbEWl/lkrXddtdkOpIJ2UzPuddGXuVr006Db1CNkTyKEYtqmXschyy++HxJT28GwrbqikOzBx7SBRn6v9u09Dxv/SVrskr7SYyVsLuHCEXgA0oBXMZN0KYYu4Q3bIaccJ12r037cV+86HGWQDyHIZwAYNU+VaEfYl2VD6SchODCJx1qBYG4InbWJII/xZ6dUgPi33kxQkhsLmw9JnuAl/nZT4e66mPVelPdYd5IzuM0vcYw8NPcGcM6nI81LEGRvhoWjtN8LQ/VXoyiWeTP4eO+t2rBTGa1enETmoAqc63eEJlwWU9fcPKYIO2gsVQxrsA+zvYqvB1Q2+Xgg5C5gsIjaCzm40XGM/3xw4m/wLUEsDBBQAAAAIAAAAIVzPxCwnSAMAAOwaAAAzAAAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX3NwbGl0X3Njb3BlX3BsYW4uY3N27VhNbxs5DL0X6H8gep4Guy12i8KnNodtgKZdwO1ZkCXaQ1QjTSWNs/73ffTYiZ2kcLYfl2BuMxRJkXzvgWP3VrIR33TsxRpnoxdvK9+Y1hx9yo1LQ5/iscPOtvPoNVNOgZviUuZdOJ573nuOL6W1mb3J/HWQzB3HWhrPToqkuK8jxWpdNaXaOpTry4+sT5/Ulk0qXQo2SN2YYBcGBXaLLH7Fpk9h03E2q4xo0258TisOzd2g5lPL9PHaRO9hOpnmfO9A/44O9I86NKVHjl2jL/9udFQz0qaGzkTb3byEVGdUues5o5vMxs2of2ckShUbts9Lifp0UO3u1HQo13xZHZ1tvW9OMCw/uCrro7i5cd2ts13ceLIGCouArjMA6QWDViAVkC0C4mfEgV3NybPpcJq3xe7DSsveS8T15YpDwJNZZkAGZGfkOdgO -l+mb2XIE9fdVHK6v2cbSgxfRbQ5CpLOAoKQhO0ah4Nazt6m2NFKuUDeUSqi1cF4zvb+4vPjwhvKghRKYSsV2Pcpi+FcC1BzK2YzupsgMCCIdXEQKVqHaWj0tKSB/TSSx1DwoZ4n/61OuhVIeyyQN0/QfI6MvhRVHu/SYuNOsLmlBVelvrwwmW4adBM5cWdOClxgLKJJXjEznrZX4PC2fO2RJfjNmEw9/WW7oqhW3b4Ra9BvYE1vYDvtGnrmSkrakJCg4pkoO/qi5Ssd9EpUg2Qws0EKjLWVGjAPAha6ktmmoZIHgWrbwUUirs2cNJr/krGI+pP1eppmt3xy/3a/ZPY8KBlKzuAdq9E7Y5d5Al6PhSIwvJzFOYpzEeCjGIqvO2uChldaMmxd3VGXK6UX6/eDmUkA3AMJz9aFzsI/Oh6DKgjThSfNqF7JVsjLj0xhHczBHHJr+Nev3j0nxk+InxT9U8Xf26e9U+P9b3i9eTVKepDxJ+dSXdJQvYMRCks5ROaOfzg/7mr439IMa6a2ki9GonvR5/uZYnH9N4pzE+YjFWbQvb/PGRGZfrv+H6oONtzSKO8HCI4+nT27vuntW7el1eNoD7fEKcGDqKYPa6NloU6YMCy1I6da8mH4GT2J9zGL9xR/F967F3/lh/ON7+M/Xk7QnaT9iaf/sHv4GUEsDBBQAAAAIAAAAIVwujATOnAMAAEIHAAA2AAAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX21hdGVyaWFsX2Rpc2Nsb3N1cmUuY3N2hVVNbyM3DL0b8H8gfJbtTbpoi+YUxClSYNMGSO8DWaI92mhErT7seH99SU3GXuxH9+A4oxEfHx8faUNDpIChqEQeVfQ6BLSdxWySi8VRUNqUqn3nqXQJP1WX0Kps8/mh2+KOEna5dzG6sFe9/qyT7Sh1vQ7W81EXqOB89nh/C0dXAuYMhionBkogMAftmQOgR1MSWVweXbB0 -fLulLB6cwaWhUJgN5LrNJemCazlh4nySdtqgWtw2shP6wHeS017BHmnAkk4KmNJ0HUpCXQbJPNRcYIuQ0FCyaGEsCqQoubBaqBNmdUCmlVieyP+Ian/TRDo4kyEghxYSpEhHZHVuwLpsPGW80D7zamR0OIHxqAMLtc7ywrvPWqRnNtnZink1nz2TdXUA7fcucLTqTzbRHr1gJfeqphed14NjqO46mtIdD53Rmd53dsChVSCfp0QHZ4VQjN5hgufNc6PCPb6BF8QINp2kAssvpyZCxqgb/V2iAYQAP9hJ60kpkF4L4zvtjVDO1e8kyrq3EOVELDCJcmbgF0zq6vdfYHgE86MQETFiypzOBbh6hc3j/SNwh7ixvmm1+nl1OxbIQ0xjGaLvVhfTw18bZtsAGU++139eXcMa7j5cLWOi1xMMKOKrM2NRo/mI9Mv08s154xMEPeAk6dlcrI5YQkp4WN5ComO+YbnAuwOCQe8zaPacC8ZX9uClpM1kIe39WBeK1BncDmpuJiPRnVvEKbeOxhGkmqUkQR5nR4yxP7uPq3663/zz7x9Pz8+TwDLwfNVWU4RU7HXmqXq3+hWOBfiCkQ5foti2VnFWGQEurBmj9BxXt97lno8C1qQ5ffWlcm2etGUOi3Npi++1S033GJEHXkhJ35bJhdyG3jo5lAvjwI5jfeyRkycOQvyiIHBZorNQd6NRIzPT3n2qVPJqMZ99GIfmq3XUhNO2x4ZiKqqxmi8U5W3E58xCxBXQLbFsDMN7rmfAaUzV/QOr9d0s0+n/4oioZ6xvbMEd97R3PD5sycpNEmNo0dPorcevTcawfR10kI30kTt32Ue5p+pl+V1MOJ/dSlT1Oo1+n3RTYnXNFjllZ8j0ODQCPPyFbVwc7zTpLq4jyclbVBva+KCA8kCeTwvv5LPj2lNbitwintLApegdk4N30Cu4fi9/5f1v19C3IRJK+UfbeXFHYefSAAfydcCWqAmcFPMc2B9a -XDlCBlqeJwe0MRhLyy8dgBH621+F+ew/UEsDBBQAAAAIAAAAIVxbATCKaAQAAL8bAAAwAAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX2JlbmNoX3NoZWV0Lm1k7ZlfTxs5EMDf91OMxBvCSVigUHJ3EoW7o9KpRUD7ujHeSdbCay+2N2kqPvyNnWwSSPgTqaCTLhIsXns8M57feEjsLfhy/pld/Hn29RrO2Ql8Qi0KuCoQfZJcF9IB/XAQpqy48DBCz26iiOfuFpR0HvrGgi8Q+tLSGxeoVK24jeocai81qhZ89kGTNh5K5K62mAMOZU66sJUk29snwsshgq21O97ehl77m0Pr2vxnbdtnRtQlaXLtU5Pjj3baST+wzgFL99q8qpQU3EujHQsy1MCc3YwZucRq0sFIxBXGt3PueVsXMqswNz4rMp4FaxmPllvCDXvkxyUfNR4GdeCxrBT3+I5O8VG24IHLGhcaFyeMTq++v59PkXnmQlrMAlXrmAQR124a/FJc3wK5D6TeSnTgDWWFUkEiTY+SZGtrmmDXYWKS3MMV3sE9BF33cGK9FAqpdS1LrIyk8NPYgj56w7tahuS5CcZCz4WilCuMytGSMVQ5dZJixtgxxD/Lz0cDJL1L7R7thLgRGGUu0yYThsKlBwEGtckFo9jlLusUvSC9WiAMdaCg5+5HelAosVtiLusy07yctZXx3YAVLffEORPd6jyTWnrJVWj2paaGcaVRXEk/bsay8qsrs9vB4lCUnQ2QH3kdMvrBrKtMlA+HprPiwFA6eaMwqywKWUkfnG76iHme0yK7bkQbO6y2b8OOMbqbo+IlqQkvmRPGYtdUhJD0esu1q7gl2OP5BGdqK5BMR8hUC3DCKl0j+un+S+FP9zfxXy/+e2vE/zB9Kf6H6Sb+68V/fyn+xTi3ZoAqixakXlF/nhJ5pgKFqP//4tzEx1j6h0bzcszoY4cj57rOo5VK/pyo -JgHugoQgD403wqgHuTsHdrAWsKZkPUfsqaK1QfaLkH1YC1lT5Z5D9lSd2yD7RcgOl5Ap5Hk2/2SqzIh+eVjQQmF8WmhTGt8e2tGa0Jri+Dy1TXl8Y2wf18TWFMjnsW1K5Btj2+0scRMFVwr1ABewFHJQrKiUL4lu6uU7EFw+engNwaZsvgbhpni+NcPlA4zXMGxq6GsYbirpmzIMJ5N/k+/wlxG1SxIGp+HE2yIgFwWUPGjlCqwZAR9wqZ2PZ940IGiV9F2eTU9DYPoNAfhEwpEZ8LPzTK5zsDg5isUW2bngzlFPPNV0M0Mst3KIGqpzoFbfw2+/Q6dF1Z46aiLjYIjW1a6xtqxpTjnaXAQ4V3kAFVJYya+X1GkDU6ywgHpnsb/BvQMN74nXaWcHFnlPeg92ol+LtOGPMHDUCdbPTLwr4PmQa4HhIPmcfQITbhVOQfZp7hjCZ49IpM+lcuG+oRVB/hP6L80oclzzC8TxROskR+aBmsbFQaXqGIyVi1251rjUR8sMq1zTt1Dw/7POhUr2js4FyF/whw+btKQsItC9Xu+GuyKpxr4weg+csLLyrl2ifVhXV1ywtKrx0rw78WgSbV5+iyQKjIVrI3j5OmlJKelAS9vHP9I9uyVbSzstOfkXUEsDBBQAAAAIAAAAIVwZguYz9AQAACEMAABCAAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX21pbmltdW1fbWVhc3VyZW1lbnRfY2hlY2tsaXN0Lm1kjVZtT+M4EP6eXzESui+oaUs5uBV3Omnp7omVllsOuPuammRKLBw7sp2Wrvjx99hp2rR0WSQaEntmPC/PM54j+vvqS3rz+dO3e7pKP9K11LJqKrplodJrFq6xXLH2NC05f1LS+SS5L6Wj3FS1ZefYkS+Z5tI6TyJnpRolbLTloCc1K5LamyjlKqEUQ7C2IvcyF4r4mfPGS6NpIXk5pC+eYF0bT1V7ekG8 -kAXrnIdJcnx854Vv3MXxMc3EUkgc8JhZOJtVW2fdDIL/TMltZctMZHBDPHEG20GjWAWp20ZHgZMJPi6V0E9kxZJgxEqOO5PJhyCHRc9VrYTnaHD0r2PrRuJ7Y0efTN7Ec0dTU/DzaDKenKfjs3RyOhJ1rRBnCNClQQYvXKQPqxT5SBvYSCHiSuNHhfBipEuZ1VzAxeAxXNmJK+tcGOZuMUuSoyP6aJFHxem9rLg2CJGuBXx/TpKXbo9e6NbEf1+NKJAwvG3EHT7uvKlRUF3IWIgXqKZpSr3nBe0sQWCmTZYbEfMPF/GOlBk1g0glfF6ibhUXsqlGBeqXM60FsD+Ov3JAk1/D87cJlVjp9lF91MSLB3hsLFXSOZwxoAfOBfK1sR4AKKx0SGzYMxUDZwuhZNH6V64Kax5ZZUpUALXue+jM3AdDyNNP/erspEarVac0F1K5rU8tf5BNtiCFj+VeOxWYouem0QWvHVPAXratszJL/GJdgmvj4TktQRC2eaBdtHxxc3dHQS3uj8fnBx2NAkDS0lF9RYWViPHP8fBkTAvXRTkg4yqjkCW/GoWKN6DhAh+d/NkvA9jgoog5d0vwOQAGdibjARUck9nGh7WzQSiRt0I71AIcXdEf4+GHcRtoXga260fuRVvKx7If7slwcjjch5AyYVfrOguPg2L0J5OD0XtQ2tPmSBJuayJWTs5J+rZwv1NhYoupramMZ0J7ukqn8DowaqqErNKplW2D+kuyKlygU3yLZFoG1qA76kim5BBRYgJ6Cc7myBu61F2WVzHwEEZco506vFYEeL18pbpePaCMPsIbMUTAIQkUVsnMYxvutRQ01/BsFXvVzVxu7NbMOKToZLf+UaLVbJmOuvqNBvp7A/faHcLOjqQWFf9AFHWefj1JUZrnVbcWxFt9U8eqZH3MZfN4mxi97+5aeBegnfDa3oYOXYG+uSp7etwr0VbsldqmPHuKXYH2Veur9qS9E0DZbnut+cpS -J9Kx8nXc3QKEN9SNKgvpJBpqhu6Uy1r6PkTWe9TbGyBlTWy/c6Ec79ro2sMrA+iNbIOj2wZywEy4whh8BgCzPNg4DVfGFpEjqfPmoYVYTxZZoI6hN9YAtQIjAd2wpXA3g5NJkgZ8tUNDJvwsfJuob2yGP/EI83FV4oKx8crOZBFXnGnQgVAZxe29Om2sDczAGHFlvKvx6/eAz9YiLBs7wR7/9zn4A9gf5s1hCBzCzftg+B6Mv6/jvKeh/QRqb6HoTWC/3Z3e3RfiGb1C95YPobKdr+YANcrekimMxfSfUA0DDbPZ7EG4MqlXvjT6FA3RyhpDoG10pmTwNZM+GIULw3oV5KPJy/W91E3S3WQdGBhcd6FZiziDtnfXkO7LHr3AEwEEk8BsAlyW7OLM5KUCWlMMfEJTGIlbeNbCuTCOD/C4DI/pAO0YscyNwuyRNvWAhC7WU3y8j8IFSKLBODhM/gdQSwMEFAAAAAgAAAAhXEMbFsXRBgAAdBMAADEAAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9hbGdfbGFtX3Byb3RvY29sLm1k7Vhbb9s4Fn7PrzhAHxYoLN+mt+0sFkiTzqRAPAmaTF8ZWqItbihRICk7XvTH73coSrKb7qIL7MMAOy9BRPLcv/ORxy/o/PrX7Pp8ld1+vLy5p1tng82toStZF3azOTt7+bJfe//yJT3UpRaNKmwQ0myFkZVo0rbYzcXyAecvIKoLGVQUMLrStRxPR1lj94X1ahC5s63LFamdLlSdd4LdyVq1ThqRtya0TonyUDi7VUYs58vXR5K/f75moTKExr+fzZp27afO51PrtjNVz3JbB1WHmXRB50aVoTIzaHgzC/mseB3y+fLt/N0/zs7unay9gesUSkXQYrQvVUHwHkEElSEEXeu6y9b727s76j2iSoXSFqTrYOn60+rTb+d0lZ2Th11dY79QG4koPO01DraBglMSW1syOignOT4K -0m0VzkgPfdJjqSBjcwlxGeT07OzFC7oej39WuW4Undd5ad3Z2Vf6RStT0Ff6Ik2r6CtWsiyj9BdfD30kYi299g/YWlKjkMI60H62GyId4zoV8zHfLHf7+ea3my/n9Pstfbn+8it5W+i2GhRMaLWnv9Hb1/R4KZEV6iSpkTDXKc2d9d7o+lE5Vrh49xNVK0KwOSvyrdmwI4VmV7r/PGS94iTT4okuVx9XnSb4iVTamtX4g0NSVVbpJ5xsnMpb562bHVmbwIgPXakYGs4ao4oslDp/rJVH7q0pJrSgknrNyWNbF20e9E6JppQ+5iG3VYUEatRoRMWFAZatp9srWszntIf7rvd/0JbAxEo+wmOzdoBQdmVNld3tpasoHZic5q7lDNzpbSWzc1M4nZd0DTDPk4vKjO1irCyQDLYwn76hfRhqPboa1W2sQ+UMsXSWpCPkONXcC8+rV3FMmnuzlE7m/PHPmKrequ/M/pXAB7SYLr9v/kg6+WEbNKk0E3QANuvuf9ahjMpRq7xUFS9yA9WF77wZaif2Gsy1F20VMfV6TijyK9QAkDrSPktBZg5adxIuQUM9oj4oH/zPgEBVjYuNVrnyXcbWyoOsKKnho3M+y8gZU7puzeOJ2z64w1EzeBXapgsAQBWp5StkSDDUNKcz1c/ulKv1tmTY5u26AyU0cRPMflksCeaGWLiMvWtIY2zMtYJH6lkSj2ymTKqqSfwicrb809vkYU+HIHEHXZUEVYtIrU8hJjtDDh5v5VHhCIS6BRf8ffkOcDpQqW/vLrIC1d4hRbl1sRjELI9w8gPfJFWD4NYarHgA8oNcG/U8h5wOejeHCPicMcDMyHx7D/cjg18mvuWdF0MNReopkfr+h0gzWS9QoQR6DheZg5a2AeKHXgDbWFcIALqViToHyzjk9BNLDmzaO7Ns8iD2OwFasq9EUanqG9kR3h2uGdBdUeIt2WAjdZ3YcDslLnx2iFEGesTV21/bfKzm67xp -DGqBZIvadtf0CUsJ67CK5kEWcEl7VIdFVemHKLyslJD4VrLoM2F6NQP9so/HxkH71UpcyLubVwJKFk+CIS0SjQvQOKcliEUpTsnYc85NTzpwD4TMzX2ifVxTDYgmHh1dE6AVAagWhu/hjtZit4gasbB89AXtxfovrhes++nwvTJ/v20i9mI+xocTHj99sf6o6Os8BWD+RzCczudvfgyKA82JVIhjHhQdh4lnnPXfYzS1/58wHWEKzsYziIMZsVqiFP9/YMVt+idY/8hg7XDo6b6UgVYt3vIfIF3xQATZ1Zhx3P4ZPfAw+sD/HOFQF3HlO3jtDo4eH30jvPjZXCGtKHQ6jc8NUNp9WI83oOTXS39GVDe+Eo/bb7ejzMnmMF+cSN+JvHq+naSHzZ32mm9vnnh0o0Mfc7/OL7c4DPCi3+OFeIL8mCcVkddV1KMcnYb0ZBaBp2NUHCP64Uiwf3l9wkPQwXqI8j/EFvFmhMhGsVL1H+cU7eMgstEO5U4DNsvjYZtLvLhJh/7M8bDyF3861KSWjwOFxxxu4ozoldupYTZYa2vstnseYyDX9TT128CQ6Mbo7TdjDexLPFkdz5DxIQvw4l3Oo8Bx7TLwhm99dpzQ6FCwTzqP7148yaAqBpvlRuoqxjrtu9Q2I9ewH+f1IdYgvfUxFW7ChFLpqS89ntOp7hM6rvWEh4cTZzZSG84WW/LQ/GF2lV2QLHb85ufGmqZG/GDbupDuwH12XyKP4+8cUEU9bZDP5WaD2Sja5uD633qmEPxs9x6mNIYWNkxdwJDdqZoNUltjk+dR5SeoYMDfro3p06WfjD+VcPiShimhGxub8uC7WQQZtG3ybKN55o8/xvCGoR2D1E+7OGBkn/VQiSg7hl+qCOaU8ue4ytfkcDz9yPRvwDA9+xdQSwMEFAAAAAgAAAAhXBfcmTXNBAAAVw4AADAAAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9yZWNpcGVf -bG9ja192MF8yLmpzb27tV01vGzcQvedXED5brqS4aZGeXNuti9qIUedWFARFjnYJc8kNyZWsBv7vecP9kGy4aAH3EiAHHbQ782Y482b49vMbIY6sOXovjnxtZUsmZKlcJZ1qpAtbExLJSNq2hL/6Xm7mcnl0zF5aeWONyiR7f2cb69Xk3EONEHu3VkXyWW6UY2cbvGyVvlcVPc0BENZbf2gHjMWAEUMOOjj5T5lPBvu4KavcJTZXOtvN01OtQ5S1VDIhNevJ9S7lVSSVgme/jzUJY5MOG4o78amjjkRU/j6Js+tfZ9dnN7Pby4sPHwXOPONDC5VEhs9apUwpi1blWuSwVdEIJQytySe7cjCwEa81OTfTwWfkJ1Jns1pZZ/NOaKdsI1akVQdQm0UNYGORfxaeuqjg1rncRRK0sYa8RmhvBBokIrEPPdiEc1Xianb23dXsZ/zORYXWpZP+pKMfTrvmGv2Jh1znUtQ+hhxiyHpnYqjIyeV8+X1xnyxXUaFlTfA2h4h4T0wmvwEv25Q6YpP5aGJADI/2bexw9mJrQbGGFFsuj2D4V0nZULKVl1nFijLn/PlZmEblaB9Kw10FZgJlJNWy1VluN1KjtafSNNSMGTSka+WtLkQpx5mlsM6lp/e3SvThfhLgCUWBrBJKYkQTTOe6xB33XUPRagHSqmPhQ+aHo6NwajWwiycoeNP1ZGzR0zIB85N3YguuUNSIIQqj3t/e3QlHyhyLRA5tR8R1DE1hV9utnE01Hj3jggvKoAdThyIxu8socaDLK2D29RAhCvrUWcwaxxyfauY3ZdQA4GoF2rPh1uYaLzn0WOqnJEg5otbVjoMw+Z6dCNXgoxSGLk6Wz17VtqpnQ+ZiFTpvFGZNhwZrQ4FUY6gyMrJMhhzNyioIL4xOh6F2aAV6ufNIPKM9h5PAqbjgq5lBAbk+IoZtwrymxHx7LHzL1LSOSYTBVSjxS5Qb+cVTHIObLF5Ly0N/VF/fe0pJ -dg2jnM7ne6u+Ay1eDjWU68jrrm/5i4bghcSsYkePS7OvI5Zp2zqrFTaU9KFfsHuAMWcszpbajPWBwmCf5dIGqtN0qqQakgr/0XVeuiEaZHcApWNIyVl/z/keJrH48W1zI8/V3YdTCaDFg7y4ubyRace7BTvBPnCpslzUEpXpmT2hYudGkODv/u5Amhgw5KmfRNg/o0IwNt2nKEEMiXVg3H6Oyo4wtmt4UZWJLTn9slhyjPPrBeM/7EYUFL9Tbu/LLCIE4kWq2fvtD0fl3eNA7FKlg2swbMdWvp5NPSaa/j/T6mQ+f/ffqcXXp8eYZzkUktegZTAGXhHu4rLvebM2WAuv4dwwiN9o92+0w63nsPxxvD33eBd/DeRbLL+R7+sk33S5hmIAMNw7dCBAL0JRUL3aGiQUJHdFSVifwyS2DjoGNU3ODMIWEH8Qrm3NSuYguV6HpXLzg/hQHkntBs+icMRgBz40XV/mY2iEfAwt0rX8h10Pw0I8dUirp5DI+GwoirsoCQibSSqOUntK8HeidpJSs+Dd7rjIzVEF9cKPwz0RR9PEChXRTofYmEfNQpAeNFrMuR/qx95vCvvbmjWQWDl8wXAxqYqsmNbKugSdmUM7ngUySRTZGQPgG3xKQJIBm6VTrznFoDlPijx/8/jmC1BLAwQUAAAACAAAACFcidp3g8ACAAAaCgAAMgAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X25leHRfbWVhc3VyZW1lbnRzLm1krZZLT+MwEMfv+RQjcatkUsJrF05QkOCwgAq719QkQ2KtY2f9KHTFh2ecPlHJbiPl0MSp/zPzm4xjzx7c3dyyh+ur+ye4wzcHP5Bbb7BC5WwUDQaPjjtvzwYDmCjE3KZlylNLs0KhnJBgTAZaNYK65BY/CVKl02ruMU+NfrXB4nrKpedOG7AbznWac8fD/L13tXcwevzVzMQ/LRob87/exFc68w1aPNI5vsXJ -MDlhw2OWHMa8rqXIuBNaWRY0NMCcPc+YK5F58sFIYkvt4hAoVqVIa8y1SxXlvaRsnO9ndjqJor09GOPcKcJIT9HwAqNojH+8oHyg5tbSTSLPwSyFFmo00LyJMziMond4CGOg+9fyd5IwxmBxpacbdhGeFuPLjfFoMZ6jZboi3Jx8junNNqGM0Ea4GcnGXsE69pOosNZCuTCzyukdLowTmcTmX55r71Y8Z/AJq+1K4gMaT2gVNYuIETyjWmaaKqGK8FpprJzRko0P2LCcwDLBIZSwsP7aIEgrzIWvUiLHImR2XpczS/QypbXzLGSTLEEkHSCSow2K5KhPjMMOGKfJBsZp0ifG0RZGOcuNLuiDlLwSSqgditJm0gXkuBNIa2H6QDnphNJanD5QTrdQwqaQrnckqV/px3NaAv8oULtRF5hvHWFai9QPzveOOK2F6gfnYLjFk5VcSlQFbngvRVHuULH/mXYi2953dyFrLV+vbNvb8S5srbXsjy2cnLckMbVB1zQLUcSaiMuWBUKbAtwgUN8AL8JYBzlmwoopAs9QSi+5gYoOUCO4ZOH755mDrMTs937j7DIOR3XlyVJpF7oc40C8NGHmx38I8cKFXFCzFTXo0DzMwdkavAitQnB+Qa0Dl2C9WM1lkouKgghJ7PPexMKy6YLQ65yDnSnKhs56SujN+aAIGeKqEzMUHq0NzRNoJWf70QdQSwECFAMUAAAACAAAACFc256Y20YFAAAYDAAALgAAAAAAAAAAAAAApAEAAAAAZW1haWwvc2lnbWFhbGRyaWNoX21lZGlhX3Rlc3RpbmdfcmZxX2VtYWlsLnR4dFBLAQIUAxQAAAAIAAAAIVwn3C9fIAgAACgQAAAgAAAAAAAAAAAAAACkAZIFAABtYW5pZmVzdC9hdHRhY2htZW50X21hbmlmZXN0LmNzdlBLAQIUAxQAAAAIAAAAIVwMjL9FOAkAALcXAAA0AAAAAAAAAAAAAACkAfAN -AABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc2VydmljZV9yZXF1ZXN0Lm1kUEsBAhQDFAAAAAgAAAAhXBUjdI+4BAAAo0sAADwAAAAAAAAAAAAAAKQBehcAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9yYXdfbWVhc3VyZW1lbnRzX3RlbXBsYXRlLmNzdlBLAQIUAxQAAAAIAAAAIVw8oJM42QsAALYwAQA1AAAAAAAAAAAAAACkAYwcAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2FfYnVuZGxlX2VudHJ5X3NoZWV0LmNzdlBLAQIUAxQAAAAIAAAAIVweUNN8wAUAAHI4AAA3AAAAAAAAAAAAAACkAbgoAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2FfYnVuZGxlX2VudHJ5X3NoZWV0Lm1kUEsBAhQDFAAAAAgAAAAhXEqQSe3DCQAAH9cAAEAAAAAAAAAAAAAAAKQBzS4AAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9zb3VyY2VfdW5sb2NrX2J1bmRsZV9tYW5pZmVzdC5jc3ZQSwECFAMUAAAACAAAACFc1O5gFjkGAAD5LwAANwAAAAAAAAAAAAAApAHuOAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NvdXJjZV91bmxvY2tfcGFjay5tZFBLAQIUAxQAAAAIAAAAIVz7J55lYQQAAD8NAAA0AAAAAAAAAAAAAACkAXw/AABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc2VudGluZWxfcGFja2V0Lm1kUEsBAhQDFAAAAAgAAAAhXJHdoqbFAgAAdzUAADsAAAAAAAAAAAAAAKQBL0QAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9z -ZW50aW5lbF9zYW1wbGVfbWFuaWZlc3QuY3N2UEsBAhQDFAAAAAgAAAAhXOXKIXynBAAAuU0AADAAAAAAAAAAAAAAAKQBTUcAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9zYW1wbGVfbGFiZWxzLmNzdlBLAQIUAxQAAAAIAAAAIVx6nlRn/AMAAGgkAAAzAAAAAAAAAAAAAACkAUJMAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2FfY2hhaW5fb2ZfY3VzdG9keS5jc3ZQSwECFAMUAAAACAAAACFcU4631Z0EAAB3DwAANQAAAAAAAAAAAAAApAGPUAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX2NoYWluX29mX2N1c3RvZHkubWRQSwECFAMUAAAACAAAACFciWjYzXcJAADwFgAAOwAAAAAAAAAAAAAApAF/VQAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NhbXBsZV9zdWJtaXNzaW9uX3BhY2subWRQSwECFAMUAAAACAAAACFc2QjDh+QEAABJDAAANQAAAAAAAAAAAAAApAFPXwAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NwbGl0X3Njb3BlX3BsYW4ubWRQSwECFAMUAAAACAAAACFcz8QsJ0gDAADsGgAAMwAAAAAAAAAAAAAApAGGZAAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX3NwbGl0X3Njb3BlX3BsYW4uY3N2UEsBAhQDFAAAAAgAAAAhXC6MBM6cAwAAQgcAADYAAAAAAAAAAAAAAKQBH2gAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9tYXRlcmlhbF9kaXNjbG9zdXJlLmNzdlBLAQIUAxQAAAAIAAAAIVxbATCKaAQAAL8bAAAw -AAAAAAAAAAAAAACkAQ9sAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2FfYmVuY2hfc2hlZXQubWRQSwECFAMUAAAACAAAACFcGYLmM/QEAAAhDAAAQgAAAAAAAAAAAAAApAHFcAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX21pbmltdW1fbWVhc3VyZW1lbnRfY2hlY2tsaXN0Lm1kUEsBAhQDFAAAAAgAAAAhXEMbFsXRBgAAdBMAADEAAAAAAAAAAAAAAKQBGXYAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2FsZ19sYW1fcHJvdG9jb2wubWRQSwECFAMUAAAACAAAACFcF9yZNc0EAABXDgAAMAAAAAAAAAAAAAAApAE5fQAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfcmVjaXBlX2xvY2tfdjBfMi5qc29uUEsBAhQDFAAAAAgAAAAhXInad4PAAgAAGgoAADIAAAAAAAAAAAAAAKQBVIIAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X25leHRfbWVhc3VyZW1lbnRzLm1kUEsFBgAAAAAWABYAeggAAGSFAAAAAA== - ---===============8738262583098975050==-- diff --git a/data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml b/data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml deleted file mode 100644 index 8e9e4e6..0000000 --- a/data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml +++ /dev/null @@ -1,126 +0,0 @@ -To: info@osmolab.com -Subject: RFQ: non-GLP acellular hydrogel-coupon H-A measurements (The Osmolality Lab) -X-LIMINA-Candidate-ID: the_osmolality_lab -X-LIMINA-Non-Evidence: true -MIME-Version: 1.0 -Content-Type: multipart/mixed; boundary="===============4953287593533092104==" - ---===============4953287593533092104== -Content-Type: text/plain; charset="utf-8" -Content-Transfer-Encoding: 7bit - -Hello The Osmolality Lab team, - -I am requesting a feasibility review and non-GLP R&D quote for a small acellular biomaterials measurement package. - -Study summary: -- Active material route: limina_alg_lam_pedot_lowdose_v0_2 -- Runs: 12 -- Raw measurement entries requested: 228 -- Articles: no-coating control, alginate-laminin hydrogel control, low-loading ALG-LAM-PEDOT lead, high-loading boundary comparator -- Timepoints: 0 h, 24 h, 72 h -- Required outputs: sample-level pH, osmolality, conductivity, visible precipitate, visible shedding, swelling fraction, delamination score, optical transparency fraction, raw exports/images, and chain-of-custody by run_id - -Important constraint: we need one result per provided run_id/sample_event/target_field. Pooled averages or narrative certificates alone will not satisfy the study. The compact bundle entry sheet is preferred when one raw export/report supports multiple values. - -Could you please confirm: -- Can they run matched pre/post aliquots from 37 C acellular neural-medium soaks? -- Can they preserve one result per LIMINA run_id rather than batch averages? -- Can they accept PEDOT:PSS/alginate/laminin soak media as nonclinical R&D samples? -- Whether you can fill or accept the provided raw-measurement CSV or compact bundle-entry CSV schema without changing column names -- Minimum sample volume/coupon count requirements -- Expected turnaround time, quote range, and any sample-prep constraints - -Attached/package files to review: -- reports/nhi_pedot_h_a_service_request.md -- data/nhi_pedot_h_a_raw_measurements_template.csv -- data/nhi_pedot_h_a_bundle_entry_sheet.csv -- reports/nhi_pedot_h_a_bundle_entry_sheet.md -- data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv -- reports/nhi_pedot_h_a_source_unlock_pack.md -- reports/nhi_pedot_h_a_sentinel_packet.md -- data/nhi_pedot_h_a_sentinel_sample_manifest.csv -- data/nhi_pedot_h_a_sample_labels.csv -- data/nhi_pedot_h_a_chain_of_custody.csv -- reports/nhi_pedot_h_a_chain_of_custody.md -- reports/nhi_pedot_h_a_sample_submission_pack.md -- reports/nhi_pedot_h_a_split_scope_plan.md -- data/nhi_pedot_h_a_split_scope_plan.csv -- data/nhi_pedot_h_a_material_disclosure.csv -- reports/nhi_pedot_h_a_bench_sheet.md -- reports/nhi_pedot_h_a_minimum_measurement_checklist.md -- reports/nhi_pedot_alg_lam_protocol.md -- data/nhi_pedot_recipe_lock_v0_2.json -- reports/nhi_pedot_next_measurements.md - -This is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal QC gates. - -Thank you. - ---- -LIMINA candidate_id: the_osmolality_lab -Vendor source URL: https://theosmolalitylab.com/ -Bundle zip attached: data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip -Bundle SHA-256: b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a -Official contact URL: https://theosmolalitylab.com/contact-us/ - -Boundary: -.eml drafts are unsent outreach convenience files. They are not send confirmations, quote replies, measurement evidence, or material suitability evidence. - ---===============4953287593533092104== -Content-Type: application/zip -Content-Transfer-Encoding: base64 -Content-Disposition: attachment; filename="the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip" -MIME-Version: 1.0 - -UEsDBBQAAAAIAAAAIVzsPf9TGQUAAF4LAAAmAAAAZW1haWwvdGhlX29zbW9sYWxpdHlfbGFiX3JmcV9lbWFpbC50eHSFVttuG0cMfd+v4FPRArqkboEU6kPhOmkSwGkc220eF6NZSjvxXDYzs5L19z2clWTJkVzAsi5LDg8PycO5DzO6b5k+JRessiZv6FrNKbNy1V3oo2b65/Z6Rm3OXZpNp7nlsDe1aj7RwU2ru37+lXWe0e1fn2fkgx+/u74hpdna3qpI7aaJYcl2rEPfBU/vx5fkWKU+smOfE/34PYafquo9/MM5eKOq+kDKUeRvPads/JIULXComZtiGHlleE3KN3tEtz+8oW99yEyLEGGenLL2AOfcBKcyR6NsOgRIndIPasmTqrrLfbOh1Dun4mZWjelSZ7Ni2vlRDH3mGVnjjFe1ssvaKld33IRc27BuQuJ69aq+gOtt79OMfi4f1fooIF7RcNplx82MLi5+k3AxG205Cc2gU5XEdYB5sCNCOETNPEZM443fM/9kAgxjG1QjfpfX78bXlx/HN2/ffLony6oZUWuW7d5gHnrfIFG4u05FlUMEhnvjuAsGhZvRK2pHdPGr/H99Qa2kAsgmckMgouvFJinXWWDiFYB070f01EIjAdb0wmH5tjKon2XqImvTmYxcnn5MLTcCa0RpjZIJwEVU8A1+RA2XnJV8o6RDhGPoQBZqkqPyCfjZ682BSwTp/NiFmNPUONQ3jUq76FYZPw6Lse5TDij3HN3U+9o06Dkn9golAvCEg0HDjNZMniVlzyhZ6i1ahiOyCCvT4PfBezoQUYMHn6dZxSXnemHYNhO6CcHCUK04ChBCf3oVwbg0l2ZUfYFUMp4oK1HWBp3rQwa52aTFhjCZlKQ5J2ViSsF0pjkKCOqknzZCIGcySehdcJQirVv2A+w9GdPI8oYm7wo35JCPAXBaKYtuxBRchd42tAk94WeVJJxfmOhkIK6UFzCFMhkLjapJ -wGkXUgZ6IxOYUIbg6JfXdHUwf577qOzYcWN6Rymoh/TH4Yk4JXEEIc94vv7w8cPfl1uWkQmMIzzgNpf4e1aPDlNac5ep9P7s5u5uuhue6W54BAAJGEUqiYho9FxpKBGSoZjlzC8tl5BCiMb5CymOKMwQQkrz1ApqPT6c9Ku7f8X0uF7joV7yLIE/p1Dv3GKgpDf9cph52zuPJnGcAOEjkDkhraCilTzl6VZv8YZIcRjMorjwePvYQbOBKPcRrSaTThmTPdpKJGZmycNAKL/ZDTFK0B20fqqqy5yV1Hi6FUnJHm2aw1aBpSeGjkpT35qtFLa1qqWWRnO9FbmJa2DaqKye2YGy+nBd1JmBBZWa6LQ67TLQWBca69L2W9vTSE6YnwOTylase2+Dftg5OuXNQlJ4Kcixp7A1BDlHjoe2sy2GL+HZ2W3F5RmUUx6DIbY323TerKhgHRb1VgVfzO0745cyG+Knfu5MSlDi/+eiw66oIeod1yi8P0/Gc8Oz2e32dd2YpG2Q3nq5Q7A72sPWOG3mhjE8bFdww/rBmnTWcX9JiCEHzPXJ9MpCRNWkd+T+MPmagj95nOfHfDQvcl5130L38QeNt6Fs8s0gYzoyQ+2WE/rChB1ZtsrRrWp/t0k9NvL2eqWtMm5QcdE3rLQmxN9lEwZvN8M6hEZoVrK64/H9psjDomzMPhJ0hCFBlj5f0VJ23ETgKv8ggorPf25vIbMK90uCGhqLTT1EhN52an/jQ/l3S3wQsa0mpZJYGcCSkqxTqG0qWMvC3FATSuaDVkLv91mzCLfHTRgPDC54LLc8FtUE/qOkOpXSbhl9vppU/wFQSwMEFAAAAAgAAAAhXCfcL18gCAAAKBAAACAAAABtYW5pZmVzdC9hdHRhY2htZW50X21hbmlmZXN0LmNzdn1XyZLbRha8O8L/gNAZlGpfZk4aaWY8EXZYM3L4yqjlVRMWSHAAsKX+e2cV2Iukbh86GgAJvpdvycw6 -h/XQ05dhWZc+3q209MshCG36eRrpxx9mOk/zurw5HYb9mfK07g/7sF9ovh0S7Wf6/4WW9fUx9+t8od4wy3uushXWhszJ5Wy4TEyUWELIxpMpwlghknIiq1B4JB+1wb13OVpcS9+/+jAPxzDfdWOIb9I0nWkO6zR312h/645hnYcvfZdpHG7xYRyRdpfCOcRhHNah3i3rdO7mS/sknDJe/oPSOkyn7eHrVz/+kMMavgE2h8/7I4XlMtORTuuyX+l4HsNKr9Nyu2HkXhrZK8NjssnqyGQQhjulMgN8F4tMMTsD/NolClklzpUuPlIUSgWXLEWZ+t8O1I3T6WZXpvnYvfv4e7dOXRnGsfs8rAekG8ZuOC0IWRNpEHB7vmK4DSNK8fpZDPFyyiPt8dZ8t18OROtj8tYxZnrPWCw6KSuCCSRCjCyqknWQ5IOi7DULQMJ0CIXFrEQOOTktM55FKVz/YaZC80y5S9PxHNLaAJTWo/Uyn4bTTTedqJunzx2616GsO2Cjbsvt792wdvTlDFALUAH4imos02VOtNugdS3xLpQVr+PRAKAA/vqliXwG9P1QcqU06z06lrJQUaFhiVsTpPMyMym0jUQsh+C1YDnFGIsp1rmkJOqEVmKAo+p/uhzDaYe+5Dpv1960biwNee1dxV2h3Fflp93bK+SuZbaher5tG/z95TRO6dM9HoQcSt2whw5qXXcsFCyOz8VwspKVnIRNmQVjYmbJ5yABhQkhLCUWcGE087Y4SyIJiUL0v4R0GE70iOc+Ei7O54pjvpz2Q35zTSuNYVmuWJY6qgm4p9YWTMG1da3FZxDK0uZ1DfMNelgGGvPyYue+xo2yfXrsnBCO94xIJstyLMlEIbihAnA2OKWVcTomo9BJnm2m4GTM0buQfPSCIsriyredm24re9HnbiqNUoY6x7VT30zpBmJLr2v46S9QoL+o59gAPBk+KT3vDVdkMHWkCkvKMMmJXKiDhzE03plQQIbC -l2yiLtqQ1BmLqp0Bs2gd+v9RGs60qxW65nofr9vibakGcBV1B1y3SUSLVvry0rjdJ7y99cykcWmc7YtHuYuxThapYolOYVWEAFcjPedBFKV4GZlIMqXsfBEyWMmT5Azkn2L/6mMLsBvpFuk+jNl69zhkdZ6uaeBLpxWMPa9DGqnv1uGIeg/tWWPxkKfL+hJ9X38EukHj8pSynbc9MwV1Fqi/E6wwC7Lzympm8N9x4XW0hRsHsjZSOm2BBJPHRCSn0CVqunRa6wy9WedwWsomPV0LV7lu2bj72of/vIf0QDxOp8aTeBP1nrfHV3zXGwB7aNppWl9Up3TAT+ynsk8XyFu+e0TopWC90Kw45QylFJRgRlgZA9BaVvlMsFRKFBHKq6UlFSHDEIOcNQCXFHTqX/0D2X7qWpjdVHbXMN092g1jW/6KcKUuX+aa9BlLEebG0D16NEJBqV4kGs4PnavCUIE9v0DfYXvYIK99nwJ0KkvlYk5FM2liKWiWNSJbKVXOENmCa89J8cKYdC6wpLUUnnEtdf/qGxJ4sitTKV+xed/FVoaNt150Dy/wwDaByyUeh2XBC18zmnZW9EljMQhq6lMJlrAr0oVgnFEK4uRNiCA2qZi2jLi2QVoAMRagVElCA8zvhLTnXQlpG5lTwuwMCZZhi797jF97kw6UPvXVNtE84Et5WNI4VZPT1493y2E4d81bbfgbmeBZ04E4gQ3hxv4C8xmma78kGLV9nffH1mGXeh3AFQmCJJRLHD4icu6hwTaanKxIjuMzGTjP1R5xTbKkrHzGxMIjRt//K4xjRBHhGChdWhNqlCa6LfRa0zxSHgJGl4C7Km3FkKbLuX77cLfU4ryBq7xprHNlkS6keYKs3bZyvmCnvkP3sHSgP9HzDI9gUnBwgMzYKOAArfEQaGFchPom+AhrOJQ5W0NcaEg3HKMWPsIbgx+/k+IWcdciXlMDyw910dCbNpUdxGi4OTWLCqt7CFXCrlp2 -fVjxZ8hGnYGX+OR+IPaPA/GENJ12vc+gP1AhKFMQ58ZLuIkQTVBJKCwYKBW2MXlpvfKwkGStcJA5y9CxqMz3PqNSB6whLO1j0K4N6IjGbU3ddvPJDFcwH99/bI3Dry0v63CkUzp8YwAtZzDsYENyxrMsnYkxC1kgsXBKhTSUQEaZPVoERQiwuzbiq/AQFZzgPnDT/3o9htxvXYt0tamN9tewfOqmOYMn2wLVA0iah1biF/M9Ym+Pl+PTQ8f+oRpPFonpPgkIrkamFscKZbkyvjhNkWdcWZYM0tbMaW5t5gZeXXCCh88cwk0ll/7d1ZU+VhsOCMZmOO5qno0/NtLbtucCh48+/fddd5jW5Yy/Z2GE8QaKe9yf52md0jQ+ZI0zHesTvIFOzHsOX02cYRU4lt5zx7MUHGvPtYGPszhrBKZRfumzMSFwLL9W5d771KPPUIbUvf3537uf3/6y+/DP97/+1t0HvWfy73d4bu/vm7u8ZXvx+o8FKrWV1cBKixSDh4LHpLkwEasplLfaKchlcEgwEFhKwM7AQyfG61xkyy0rOiofn7HSW8SuRsRpIGDSqdSpbUcDNABn1g4Sma8chYPBND5f2hPs21fn0YfaCrivHidNbZPiOD+HCEeDEzSIRga4FpzbcFLAAUcXW4JSMNK8+TOTcKApMmrBVf/u2mJkPB0RIF/d5ZOQTfOR3J9QSwMEFAAAAAgAAAAhXAyMv0U4CQAAtxcAADQAAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc2VydmljZV9yZXF1ZXN0Lm1kvVhtb9s4Ev7uX0GguC+FZCfudrdIrwekTg8tsN3tJrn7qtAUbXFDkVqSsuMiP/6eoShZdpzednE4oLFdcWY47/OMXrBfPn7Kv3y4+vWWfcwv2bXkOv8suW+drKUJ7Ea6jRISB3+00ofJ5LZSnjVc3MvA8GvrVAjSsJV1jBsmH4J0hmum+TJjwmp8 -W8eDdRkDxVIaUTHbyPhoyj4F5jrBHj/AxoXUutXcRW3qvSKeWaN3b5mKtxobGGe+VYEvlVZhx4Tmqp5OJi9f3gQeWn/x8iW7g8hyVwRbpEsKuqMYS70Dw6UIaiOZ4KZUJQ8ysmpVK8MLrteF5nXRyNKGQtttab0sNmfFnDivWxMvOp/Tf/iWQaRT0vdGyZJO5/M3OF60zpFDf1tE+VXBC2UCv5cFjCmipndvmXTOOv/u/M2rt2zLnVFm7d/Nf5hMXrzoQyBL9pnjmofJJGeXLiihpb9gd8YWwvIADrIQv6GL1XcZ7tqVzq6lJksURI7PNC4uTKX2FuKPl5BCp6LiWkuzliOSSq2rgQYq3KpaNha2QIkzVmVs/gN9/jRnFU6vZaOVgFdxej6YoRysWPCmix48Fm0ZYu8tv58pI9ol7LGG2RX7/OGSbVUw0nukVdtY4ymhSNaGa3Ks1FLAqlLmW2VKux3IeGCvfmKLKa5oPo5zCumItJXI25LxFRKXSY70DL1BxPGrr63mMcW+k3NhTdlSav0F3vcOTg4rJXVJViLoTlovUDhM1XwNzyP5VyslFAkMluEMIn0lSwpLxkoZYx3dlzG/hWfjc7o0OG58w5GNYkeX/WxDruVGatY4u5GGG9Q71XMtS9XWGevzh0p0TVWT7Z3dezljKblI30Y2QeHM29YJ2d1KNiDYX6NKM+6JRLAKR6TZNKbGldSoRMeXmjLicfx/9oj8EGCK2j2yW+7W6EAc+b/iIrBHkOd5zg4+8Wxh60ZLKhptzTqHWTVzqNRxQBY3/ybxWlOpxtO+jiuOxoD8Qt1lPUtZ8JANPazAv+iUjCnjg2tJYqHKLBlfrJROHkCdQ+S2Qrd08N+GI9a49w49h89G9YXOAB0O2lQRJMxAFU2F39wdGWaNzJ3d5tAo7y7N6VK2bOFbGW3ZUWrAXY/si5MrNBmwCQggzzkZWmfQ0kN1wcCoSSCDQITRkTfG0mAWeb1p9O7d -jpxChgkVJAuVTKIgu1ODRUbKpJjhnYTnTEbilfBlJwKtcWkfZqK3seh4i2hLEW3Ze+KGE9WsS0SGlqVixxCtD7bc4boPdHt3PKNKYDVvPFVNNLQ1XbiilPiT2iOEwPpPV1lMMZFOhiLNYGtqbFmqEyRY6PzR4Iy7rnWhg4nqOZujroVdFUnXvU2fhlzCSG2sw/wjyVT8yKFHRsOm+Yg0HNpTVHtoONlAjuJCK/UN6pX0GaShXUBPj/GOeKGzVl20DK/j/EKSoD/gCM4cZXK0pB/ymCfLIgmcdXpfyY3qDNd2TUVlkHrt0gcV2vgY4vq2ctxDRo0meo0qahgB5Hn4H2VAdYe6iHhiX3IY31otk9OBELSKkxLaIUoq6F3UHIGJyh6GoeyVxlhbT+uSTDmYVP+kRhw7UvxF/rdbCsOV9MKpJl560IEuRi3obhwYeJE8V98UosY9gA74iM8O4neCEc01qCes6ekJZoIyA5mgGVlitNJTqg4q13EPRP83ITGOZkcRB8sg5oyq5vxguqTREzm7yMKLYeBAh2mh3r5EDigp254hRXQXP5/nGEkPu/4ZkXf8lqYHnDGeZcXK8Zjkx+om4oPBx3riJG+ooz5AGPzF/fooRHuyJ2xDeI4Y+wAdszYfu5uObgBC6Y8T5xNJPUk/1Z/a3T8AcU/UsYzqpxBE/gp/ozQYg64RLVXtopOwUV5hHBfoHUI1wN+jJEtnbHSGknWtpGCuuPbyUEYPV54IqDmBBdJ+ADTHYqg+b4Jt2HWbwEKCwrE441c8pqUDYY8DAPj+aaWOC/UZCE0+ooaETtAl4ow6hpAsEVB9pV/oPNgJQkQshKCU91H9pRS89XKQE4evU57wKc5sTT4G0FBlp8mzkB13ebsKJAgrwEiDniOnPak/XnGl/f72bs/D+JIOMQppQsXrCVWblcWYlUmFb2wGVFrTH9k2EEQQ1Dii5IsvNzeM2HAev3xFbRL5WjoFnf9xNj0/Yxvf -az0eX7ODBpboX/8tG6XAkMqQMz87xLj07HUcCQdF/vez6Zuz1Ev/2ypDSTidnzZqSY7hgFFd3Aj4gTwADwc2CGbc7wljFNSK9tUYhLestHFtRUOrLeElixV3MUya39N8Tumcs6uOnGAGluI+kxIY7QZ2g5YePYN6sw64NDbQjN2+B2xpzb2xWwL/O4Nmj9rI0GIehtFJWyeyuKQpj3Rx99L56f5eTribbBLOjlautLsQlumA5Vv6AlI6wIwRUs0SooqTZRYiXi/iSjO6xtZwkLF5Krs+M+CufaV0TyJicf1EJlB5jH8iFH2aRSWakYdrx9YNJRBfMyBuJ14mxHcNMYy8DZV16quMK+dSW3Hvwfh+RgFcWY3SyNumW2FuOuR7mfaSGMojND+AeSzts38BgfkZ/9q62ZUVEcr42QKg6GE2P5v/mJ+9zuevZgS4CWySGTnR4Ics8+UuR2hzlLbLQYJyC7Pv3iagYHQHTb2nMPviJHB9Bo5DVILxf1bQX0L9z1zTgbuL51Des5oR4oPIhHJbQ/HtyWpu1Er6Z7T/JkuvKo+vlwpH74r+XwHHXUV3b69FfPP2zZDuCaa/Yy4RE42eGjANhSjuCVGfZu3Jxjk+sCRhVBuX8W1HWup3k8l1awiHehqkNdxW+vRChMDpkAVxBT1e1+kdJPXFEquCuKcEtpFra909ur+QF5PJ3d3dkvtq0uxQvuYV66C6n2E0lNIV305EejM3bXbfxXwitU5IiMvznxDQqQIJwCfd9v4/qp8nGqma6qU4mdvdvDllRy3d4TA90WlO8f0hjpgGZ5OhgC0i5PJBhadq9k37WFMqDyP1SWe3wHxFepk7avFF974YHMiSmJzv0+ROb7iH/E3bPHr/fujFsTBlt9UIqsJiLPM0SapdYymtIxYMSrPfFjmAKTfdK24XMRH3NEIuM5oj9LHI4guq/ThJ7+oq2W+HpDCL9kwn/wFQSwMEFAAAAAgAAAAhXBUjdI+4 -BAAAo0sAADwAAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2FfcmF3X21lYXN1cmVtZW50c190ZW1wbGF0ZS5jc3a9mFFr2zAUhd8H+ycO3cpgz2MbdC/r2PZuVFtNxGTL2HJL9+snJx2NS43uufeqpWmDG31XcpPzwRnnvnZtNZlu8La2d7aPVTTj3sb61lnfVnfGz7aaexerzpppHm1bm1iFwY4mhrFO32a/rHL9FMe5S0+PwDCPjU0Mb6s+RDu9ffP96tuPr1+uf++udp92faibYKLr93XCpud9HIPf/Xy/e3dIg6JpTTRV+mGr0xdrfWdbN3d1bzoNjA9RQom2O960dAvrpqo+S/az/GkewvF/J9iS9bZJ11tbd+lOj854Cc2bzvWuX94Sgx2iS9jW9pOLDxLqtGzMu7/pheHINtMCb+phDDE0gbPltM24HHa4qo4P5vIwdcEbfzxgdz11F3/2bFa62s5NdHcn2q+LpoNZt67nH+q0WONIJ5LGgYbDw+Qa4+sULkN6q6Z3QHXnJneTsmoYbeMGF48RcRMe3wda9Olg2zYtU0RP99b75eW3ozldqZ6eKfBbe/wAnj4nUxPGdF8efynQw/KZS5fiaNJFM9q+eRCf5PKDMOxXAEHav8RhxP0KI8v7ZzsSBP6KJE/8FU4v8ldY9cxf6JLQP18vjshzmDglFxg/959Wq5xKKfkXVMHoz+El2b/FVgv/rQFK6b+FLxL/Hy+F8b8CCOL/JQ4j/lcYWfw/25Eg/lckefyvcHrxv8Kqx/9Cl8T/+XpxUJ7DxFG5wPjx/7Ra5VRK8b+gCsZ/Di+J/y22WvxvDVCK/y28IP4PD+0Y9tbX/8MC7nqohKwAQNCmAagcigLoe8o6gIqiSoDKQy1A5TI1kMHnPUAEECOTSCOmZoaWUwFpuc7BIBlkWGIbCPh5HTDgoA8YEyAhMPiFjEBshMgIkROgVogMkloBbYbILA0viNohMriA -GWgNEZWgEKGMliiHk9gBbopoMKWTFRWEvC/i0BUVodIZcQYUkgSxNyIjRJKAuiMySCoJtD8iszQkIeqQyOACkqD1SFSCQpAyuqQcTiIJuE+iwZROVlQS8laJQ1eUhEqzxBkgkIS3pq37g0vJ0YaYYvc+Pcxym+ntEp2R1QSM2vQEnUQRBbKvrCnoMKoq6ETUFXQyUxbZAXlbkBHESCXziKma5eWEQQRoHQ9SRpYmdoZoQl4aLDxoDdYMSBusCcW8QeygAIjQHFAPBaDk7kC7KICmYw9RHwWgi/iD1knRGSoRy+il8kCZQ+BuiopTO19hjcgbKh5fVSQqLRVvRDGVEJsqACJUCdRWASi5StDGCqDpqETUWgHoIiqhNVd0hkrQMtqrPFCmErjBouLUzldYJfIei8dXVYlKl8UbIVBJczDe235vz6Ye3P6Ad1ooKSsVJnDTLCiPohd8j1nHoEiqaFAuahuUz1QOcUzeOyCIGM0glZjQRGpOQxBG98CQkIhMsZUU5uTVJBgC+kkwCZKUYE5hUxFbNBil4iqoUYOBWrZC2zWYqekrUdMGDyhoLFrrhpIUI5zRwFGxGtaC2zgMqnziVxGXvJ+TTCmgLpWuTjKosLyIvR2MUpEX1OHBQC15oX0ezNSUl6jbgwcUlBet50NJikHO6PyoWA15wf0fBlU+8avIS94ISqYUkJdKOygZhMnrH1BLAwQUAAAACAAAACFcPKCTONkLAAC2MAEANQAAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9idW5kbGVfZW50cnlfc2hlZXQuY3N27Z1dc6M4Fobvt2r/A5Vr3M5Xp9NF7cVMz2x1V81MT03P7i0lgxKrBgOLcNKeX79HfAXHYAkhEX+crr6IjZAEvOeVzANHi3UcRtRnoUvSNNq4PFlnAfUfWETdFSV8ndHQJ7mbpDQjeZL58J880jh3WczzbL2CP8XecZJT7j6RaE39kOS0 -+nNFQ7Ze+VGSb38Rk1VdJKerom5oyQ+aUsQPknWaxKLu8jsa0SDPkhC2Qv0ZI1G1ISIrFrNY9Cylac6gREhjzvJNVYCL4hH7m+QsKYoRLsoFfpoleRIkdUXpZx8qyl9qhi8eWNx8TPgqiUgEFdfl/NVXvvL/etwtUOz3anOQxOE6yNnTVg3f/GDVVaCqobX5iXG2gIuVZjRgKctfTnO9hS9pGLK4bpA/0yiCj/5DRgJx8PUFosU5K88HD5KsricRpwVazTMS85RkNA42LzunGUsycVqzdXFdSAalS/HkbEXThIEsKgEFEeHczUn2SHM4FBqFzaf6WKP1KuZ1+fLLLHnmbWFl9H9rBgpsy7L+UhTY+p5+ZzznLomi5BlE21YyFM02oANQGXdXjHNxUhgoj78IuzzIf/7j8+yH2Y//+e2nX36eXV5euS6omcxblfH5Ak7LEroBJy7k86VP5r99/vL7zz99/XMmdg6W0AUaP1I/XjKQZJjk/pI9LiEKiLg4sz+uZpdLsR/oPCeifh/2EQp+8IM1z5NwU9X+LuBPbs+/K1ejVVdWzIUy5fHBKenplTgl1HsJbW83qIsSOxHv7ZjCjftAIk7dix9Fmw7ol+au80TjMMmcDCSVwUf4s+jJLHmYVT1xPn377ztn7vyS5M6n5AfXWSR5HlEnIgsaOWwFFtW9X3VeYddfi17UO6ZLsALXier69ux7UfUZREpd8kwgjkFNi9JIC6W1ndPbcU5v0Cny2hKvpOte/JtFkZPEkegUiZy6vXlGnxgF9TtFNdx10nXu5EvqZOTZKWtyRE0OyZ12gIgyscNp7hTDwL82lDskDh2IdIcHGUtzPi+2tGUDAm4ftV9cvXfp5t3Fqyi67oqih3UUjQqeLbeESKIZWIBQTDESiOu5L3yurYWPvF9bRaSDgycZHK5LJV58ahVwinadsl3XAU9ni6zwe5D4YyHvkPE0IptS+YW24wAuTOiIT4XBj1f61hyh -6ziGHOgpRMKNlUhIlxtejNtwvlMaNMO6uFrPSfZX2Z09wXBjLRgKKxaC2OmPuzsL8fbOP7yO+Y/XM/PpLNo5VfL6pkSeypTotoyNL+IonTRac6c6Tqc5ThFr1YBWnIwZAUXD9eLV+CbGoi/bG8qwbe24YkGWQM3pprXTnzDnmsGcBqbPYVm1s1V0Lua9tPibVlX271b3sBFQ3ZANC5jo6pyCYdxWhrG9b3m1YDoGv5rAqeNF8n1Ov8PlFmYJc6BqwOHajtL6JVPqQFzQSkNp+DD9oCo6VI6lr/vjvvRV+jvNk/xOq4bSr3VjVRDMq4DsHCRtBIj2EZyC5N/bGSM/H9Icsa83sGHnZoT36mZEPd/7VTrFy9tW/1bzvd4DOQWt3nXeH1izKDRyf6CsScye1tBFVrhf8Rt0jwfbuy/QdAI61D5Gd/fWnNd/U87burnnqd6c296r75agJ7sl6KneErxt7kyII63vTHCIpfo2g+wGwx9ickOrL2DX6uyV9xeChIjgakJ18dKK2Pfb198d6HWcswfYxXUWJA+WTVX72/1WNxQmQRGLxUG67SaKKtrHYvjexsQX6xSc5IOVUa+5AxzCUADntDx/K8L5W/8wVOmZ23cDe/f7q2pQLH+JvfolVY6OoNUm3EQ786bllx9rdobAne6egmDvrQi2TYPgnLI4WC+KEwxX7m3uhu/rkdsFr7a/a4RZ71dqEKxrQRt5vp6rlTNTK1rc6t0p6PCjJURzffsmjAaalctSFEJKg5TGZCBdXZo19Dp+Jsc0yhGEoAZBTV8wdIL/8cHwFqRGOR6Q1SCrQVaj7xnXE7Oa2lSmgzXKVoK45lxwzZXhRxqakXIaXqOsaCQ2J0Fsrm4tEZtatxMhG2XdIrRBaIPQxpKZGH5UofaQN6A26n6C3Oa4Ndv5yMJ4zU4IbpS1iujmsKXYybwNoJsP12+CbqBZuS5FIUQ3iG6MBpJhFl/Hz+ToRjmCEN0guukLhs4H -AsYHw1ugG+V4QHSD6AbRjbZnXF9OjG5qU5kO3ShbCaKbc0E314YfcmhGymnQjbKiEd2cBLq57kwjYADd1LqdCN0o6xbRDaIbRDeWzMTwYwu1h7wBulH3E0Q3x63ZzmcXxmt2QnSjrFVEN4ctxU7yLUE3y02YJY80akYgmBXDCBXZSYi2vzW3bzMmQEM+YzxaBjB3hSAximVGhAlCGIQwfYof8Dq7guJNs5cRokfSgqQFSYu+MdwbJC0KzmEGsIzwC8QpZ4NTBjx4oDLmjacoI2SLzOQkmMlN50v9EmaiIE4DqGSEOBGMIBhBMGLJMQY8FKBgFIZ5yBjTQPpx3MIcsIqAgjANQY8RgkTEcdh66yTEIxCHhYRikub65YcJxJByGA+YAXhaJU4mwxzSSEHQgaCjT/QDXgFXEf2UpEOqe2QdyDqQdeh7w91ErMNsIrBRloG441xwx40hxG8w4dco5SLxOA3i0fku/AjiYTCx1yh9IvRA6IHQw5JpGEL3lhJ4jfMN5B5Hrc3bAXn5VbQ5AfiQahLRx2FLTmfZ+32CsJCQS9Jcv/4wAReiD+MBY4hNW0m8NSpSEH0g+ugT/YBXqFVEPyX6kOoe0QeiD0Qf+t5gct16FfOwjz6kloHo41zQx60h6G8wYdYo5SL6OAn0cauzGr2KPi2jD6k+EX0g+kD0Yck0DGF8SwmwxvkGoo/j1uaAvPYq2pwAfUg1iejjsCWns5x8REnYaixKnts5z8yntpK15/YXwPRWSD9Mx8z7AYRaKVSM4o+RwYIABAFIn+4HvCqtpHvTBGSk9JGBIANBBqJvDybXg1fyDzMQZKRrIAY5FwzyfsADAGrj33gOMlK8SEJOgoS811nlXUmiBlDISIkiDEEYgjDEkm8MAPtKdmGYhoy1DuQhxy3PAXnkleRpCIiMlCUikcNWnc4y7fslYSEVlrTBfSLEdFhIRYyHzQB4rRYtE2IRhXhBMIJgpE/6A16nVpP+tGRE -Qf3IRpCNIBvRdog7kwuuq1nIFHBEwTgQj5wLHrkz9niAwRRZo/WLhOQkCMmdzmLqaiq1jkgUVIqQBCEJQhJL1mEM+1tKlzXePZCTHLdCB2SiV1PoJKBEQZmISg5beDrLou8XhYXUWdIG96kQ02chKjEeNsa4tpUEWqPjBVEJopI+6Q94/VpN+tOiEgX1IypBVIKoRN8hTK6YrmYhU6ASBeNAVHI2qMTYAwMGU2qN1i+ikpNAJR901lBXU6l1VKKgUkQliEoQlViyDmOPAFhKrzXePRCVHLdCB2SuV1PoJKhEQZmISg5beDrLq8eJXw2x1WDU5F0zn2RrX1tu90ZMroVsxHicDGDZ0vAwikU0AwRhCMKQPq0PeP1aqnXTHERT7kg/kH4g/dC3BJNrqEs9wwz40HQKxB3ngjs+DID+8nFuPOnQFCzyjdPgGzorpktlaQBtaMoSgQYCDQQalrxiAKiXWoRhlqFrF0gwjlqS9wOyz0slaQheaEoRkcVhK01nWfR+KVhIgrW3sT7hYfIrpBbGQ2UAVpZHyETYQhIjCC4QXPTJfcAr0XK5T0cuJIpHdoHsAtmFviuYXARdbhu24YXELBBfnAu+uDeC6Q0mtdLWLBKMkyAY9zoLn8uVaRVhSJSJEAMhBkIMS3ZhBL9bSl6l7xjIMY5blQPyxctVaR1kSNSIKOOwxaazzHm/GCwkqdrbWJ/yMDkVogzTofLRCF+2kphKO0YQZSDK6JP7gFeW5XKfDmVIFI8oA1EGogx9VzC5lrncNmyjDIlZIMo4F5Tx0Qi4N5h0SluziDJOAmV81Fm5XK5MqyhDokxEGYgyEGVYsgsjKN5Scil9x0CUcdyqHJDPXa5K6yhDokZEGQcntv8DUEsDBBQAAAAIAAAAIVweUNN8wAUAAHI4AAA3AAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX2J1bmRsZV9lbnRyeV9zaGVldC5tZO1b -UW/bOAx+968Q0Lcizpqk624r7mHtOnTA3bZbu77Kiq3GwmTJJ8nNMuzHHyXbaXJVE8cpAjQ1UASuRFHkR1L+CEMH6PPlp/DrxYcv1+gyfI/OCpFwii6EUTN0lVJqguA6ZRrBH0GxFFpylhBDE3TLOCdjENZWDN1K5TQoMg1hiqKxU6X76JOxq4U0KKNEFwrW0juWUBHTfhAcHl4ZYgr97vAQRSkmuFyHqTUBO91YUZLMIhCtzFNy6uTfnsDYR7ADVI6Xp45g5ptdhoxEJM/5bD4KEmjKTIroT6YNExOkZaFiaj2i88XnVzfOJHCWvBIpwzlNpMF+C/uxvouC4OAAXZWqzjnRmuog+F2PxHYE/a4QhieYCsMQud937t9oDJikWCocp4QJLG9xXGgjkxkgEEuVRCA9GJayEIukiA27Y2aGM2qowvRnLpWx6/NUGrkozTIyoXZGgx5wGU+l+uFMX5SSOpOlKkVrVaXSRan8cv1+ugDIGcjA5LhgPPF4oKeUc2tLwjIqNJPCSmcAk986Q7OcKsgV5TxhIi7GxMATl5O5nI3BpZyia4m+axoEIbL5gUwKqUE5vSPCoOiO8ILiwwgSmheZ0C55SZ1Ct0pm1QLCbT67xOihEpMeclj2ECyZm9mv94nqFMfERD1A1FksHQ6wSrhBJrRRBfhsMANEpikVoPzfgsG6HiIiAWxc0mC7cWSVfy2MM4nEpqiMWkhaRMzykp4VFkhDXUYu+f+cUR05N00KwqWnfYfW+1uIpbMeYhEEURSNiU6DfGZSKUZIx4rlRr9yavDaQshnD1aqQmDOMiYIZsbCAZG2crCTM+AjU9qg46O6NGzRVIX+G30rBHpQQ+WJAQ9/M61tAYPezP5/YwM7j+pSiT3+a3MLTq7w7PvnD39dhEdHA5tNERyM7lwM7RwUJJwyAmpoAQE2SSH3SAIWhN8G4VHq1jUp4ohMCbNHzxKEbmYhgU4fZM9pmbn2AK4eM5qwIsOC -ZP8b4dKcLqQEzkqo3B4baYk8CA23QqjZ0dUao6XyqtxZ2pIJ0Es4zq5wnPkEbiFX6+nVGLbW60N1tBWqq4/4J0XzjmkGb36cQ0aznJn7RKpnYN/E2lcnLOXEHgC29J19tbzMDYsBE6OI0DlRUDsAk4JjDiTXYL8jK3yROt4qUqtfs08aKbsVJ3wpO7/oDP+YPBSosrOaXo19a70+NF9vheYqOvKkWMJGla/3A863NVg9us6HxclWWKyiXVu+c0AGDrMih9KZIwKEKjZKJjALxafuPXR1xhyfyykUV2KLDyiemVUC2opz9qusRbuVtnIxFDOEDl7gazDdsTW+SL3ZLlINye+TZvB804Yn7AN5Hw5/bIXDOlL/pP4vbhav8X1J1uf323Z+D49fDE0cHG0HUccTvTxx0LI/qWHtiOLOiOKgZaNUh6pjistwtuyQajj3iioOWjYhNRgdV9wZVxy07HDmodoXsjho2d7UQDxbtjho2S28Gb4cttiykagh6tiiny227FNqWDu2uDO2OGzZL9Wh6tjiMpwt+6Qazr1ii8OWnUgNRscWd8YWhy27nHmo9oUtDlt2ODUQz5YtDj39QjpLlJxQPs854ACQk/xlfXkeehqIBsh03NDLDYeerqQBmh0l3B0l9DRFDSLUMcFlFD09UAMU94oAjjzNRQMMOt63M9438vQrTSK0L3Rv5GlRGvj/bFneyMPzV/n7gr4cjzzMvwk0Hc/z8rzRhv1E96V450RvtGFj030h9jK90YYdzV5+GR5t2DR0X4R3z/U27Ej27kvw8YbtyLP8Ahy6+Ud+X58gAq8Siw/h9W05xAQ6v7rpVzeZziQMEzWrLuGVN+2k4LPFq3i6ugoUOkOQcxiRWEmt3Y28JhfxTsvbRfaOD4J8znvLOllmT0WqerBS2ctP/5z30MTuXd5XijlhGSIFuAPL7UWoKnTzDWDY3tnpB/8BUEsDBBQAAAAIAAAAIVxKkEntwwkAAB/X -AABAAAAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX3NvdXJjZV91bmxvY2tfYnVuZGxlX21hbmlmZXN0LmNzdu2cXW/bNhSG7wfsPwi9lut8tWmRq7Ub0ALbWrTbbgVaYmJitKhJVNLs1+9Qshw3rCSKFJlqOHe2RYoU31eH9AMebuo84zRhWVyUTJRM3sdlnavvpJQsbS9JtqOFYLmMK1GXKU1STqoqTkVeCc4yImmW7K9cM05jScobKuEz5VnV1bklvKZJKe6qmOWVLOsdzWVS0n9qVtIsPqrf/agKxPQLqyTLb75qgHAu7h41KgpaEinKhKSSifzHH96tflq9+fP3n3/9ZXVychqfxr+/e//xl58//LFSV9It3ITmNzTJtywpaCZksmU324QLkkF7q0+nq5NtPFYshjIbmqfbBFqGwixPxHWS1pUU2T08SCrKLIYRIuujvlbrtkp7uVpvE7K26Jyql+yoJOr+fY0/T6tb1QF6taMZq3dwC9l9zMmOxufxNeEVjZ+9UX2Kqi2lMo5uaZ6JMipB9xK+wsfm/itxvdrfP3r7+a/n0Tr6VcjorfgpjjZCSk4jTjaUR2xHbui36+37BVV/a7rRVSy2Qoo44t39Buo+2/cZXAQd/8hJSiO5pXCZ8KgkdxH9ovq9bru/vhPl381zRURCOVZFBZHbWFXJo5RJ2v5YwXA0V6JraJsSGA0O5qNZdGzoiOVRI+iRNKDDscsrNejPnz2y4Fl85s2C8CpmNfj+Fl5gZQlaJu0QKFu2A6ub8Lrm3Ml746027jsuBmPQivb26MeoqbsXLY5SwtkG3mV4i8ENN40TMlYVnNy3JmlskKfwECANfGsC1jJNcQ7vny9TNO+gkqKCl0aF0MMj+zBDsb2vGEiXQHQvaBOD9YbbaEQ52bGcHIrQK1HIpq4sCdQmJYSi++S6bEP51S2r2AbmhQJ0ZwWTKpp1v8Fts+aBL1rh36uHjgpeg3Rt -69GD0qDgPrA1Y7MiOeHQ62of51RMev/1hdYzRxV3LC0F3Lm4P6r0B0yQq0qSHYxQe+voq6JrMExJm890f8v+al0PD8PYNbREf194DHqi2ok26rSPrKy+jyHf6Gs7rFBU1iXEi3wjvqzpF6gNUicwae2rVtYvgOoOh9Al77X+PC+y6/jhehcEP3QPsFd4vXfbN8PbEtV/4VH94l24ia6vrSacFe8Ok9pvo/OYPH7l/6+T2kuPi+2qLgrOQArQYFMzng0sso8uuy2y2zupmbRrfb8QVe815RCmS5HRZAcTU8kIv2rmN7UaB59QmNrgWkbzCl59WHqrdVNdCCXvlZoXGGf/tnOh+vNSqfIpTHVgiVRwmNa65bnqQ7c8BwGLbq09tsr+pCZNuv8Bqu4foV1kp4Kof1cHf24eWlF1P3/4GEHvc8nAESWs8YkEr3S3Gm73c9dQJtLmz17zkPFxE80tjp9l0Qv8S49rueqOcq6WUhkEEHBS65Yd/A33u6ozabeJgoeC3aoNYkCrXrsie7SiaqMj/GU/OE/dc31o5WHRtkwvvPIYAiXdNayjLpvVPcvTetOQDzWUHjww1F6j/XGB9EH3rlwrMUS0DT2o/3gqbKfTRUr92kbqswsDrVWhp4FL0DLSpSW58PTEZqlt7MLAfKmzHwImZ1+c2ixKjH0RCDF1fkDGhIxJt7gVWDe2+PdCmbp3ADGTZoBzrwYIApoOEQ5J0xTlL7yuvcOyps4CCJsQNo07/4XXdV1w3NSZH3mTnR2skLuxHYIRp84GiJwG1b60UfvyzEBtVehpkBO0jMhpUS58ZbPsNnZhYOTU2Q+Rk7MvXtssTYx9EQg5dX5A5ITISbP4mRVtN7b494KcuncAkZNmgFOvBgiCnA4RDpHTFOXPvK69wyKnzgKInBA5jTvfaq+6ufNDI6fO/Iic7Oxgxd6N7RAMOXU2QOQ0qPaLx2pv77NS3FC1xGwnA5jgYZrg+41sfZf9JMwN -dwa50qKs9vLx2trBajNSJAOPITxyFl/bRO0g/gyoyEB0JERIiHQfa3DcwccheJCB0REDaSq/nlFlZ+hjEquQ9UyQ9/xkxkXvfGTHQGcEOgh0xu2t7Q13sfec+MbA4Uht7DTX8LWD5rMwGgOtEc0MSno+RVK1natXUz8JZyPdQTqzKLdpJ3o4uS0Qn8GEstn01zYeO+nvGdFg4hgymn4rTwLNo1Z+akqDCWK9Ql/OKrRXUIOJYFYKa+dtOCkchtVgwhfCGnOHa7uq3RweCtdgYpeT7BeTEPSo7N6JDSZwGamqHUc9NKZqO1Svqn4Stka6g8hmUW7TDshwclsgZIMJWbPpr23cddLfM7LBxCtENv1WnkSfR6381MgGE6x6hdaOjnYS2iuywUQqK4W1IyucFA6DbDBhCpGNucMn7WUed3goZIOJUW6yT2LRo7J7RzaYAGWkqnbMM6ckO8or4+Lu0Vne/QX8JEGNdQipzZIM90I7Y8LRcDNyGyOnIbhxtoC2QdfRAjOgGyPpkd0gu9HdrGFoRzeHoDdGdkd8o2mtHcnsqLUzwDGLW0hwpoisnQDhKPJ8DMdIbYQ4CHHGTa7td3Y1+ZwYx8jnyHHslNcAtaPys5AcI8UR5QwKqx2fPDyoauPUgLJ+kqZGu4Q0Z1Ge086DcPZcMJ6DyVOzuUDbxOvsAu9IB1OokOn0GvrlREhtYOinpzqYSNUrt3bssbPcnsEOplNZ6aydEuGscyi2g0lVCHfMfa7tjHb3eTi8g6lVbuJPxNcG4gcgPJhgZaStdlzx8KiqjVYD2vpJshrtEiKeRXlOO07C2XPBEA8mW83mAm3Tr7MLvCMeTLlCxNNv6Ink2sDQT494MPGqV27tSGNnuT0jHky/stH5UjtYwlnnUIgHk7AQ8Zj7fOIeahOfh0M8mIrlJv5Ejm0gfgDEgwlZRtpqxx7nItkHzqSN58fnWH/7op9ErKGOINNZlMm08yYsTTYjyRl1F0Ic -Z9m1Tb+Wss+AbkblRmqD1EZ3sAajLR0cgtWMWhwxjaavdqSxpb7OcGY8PiGXmSKsdnqEpbDz0ZhRhRHEIIgZN7a299nW2HPil1FvI3mxUvuVhpct1Z6Ft4yqjKhlUEztuOL+AVXboHrU9JMoNdgVpC2L8pl2QoS1z4LwFkyMmk15bSOutfJekQsmQyFz6TfxBFg8YuKnpS6YANUrsXYssbXEHsELJj1Zaaud92CtbQj2golOCF/Mva3tSrb3dhj8gslNboJPwMgjgnsmMJjQZKSndvxw/4iqbUo9evpJZBrsCiKYJfnstXagg7XPgiAYTFyaTXlto6y18l4RDCYrIYLpN/EEgjxi4qdFMJig1CuxdrSwtcQeEQwmJVlpqx3JYK1tCASDiUiIYMy9PWFP8Zi3wyAYTD5yE3wCTx4R3DOCwYSjPj3/A1BLAwQUAAAACAAAACFc1O5gFjkGAAD5LwAANwAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9zb3VyY2VfdW5sb2NrX3BhY2subWTdWsFy2zYQvfMrdiY3D0nHspu28al1k3EOad3E6ZWESUjEBCRYAJSsjj++C4CQFFu2MZIpyz54LBILYN/DYvfNcN/An+efkosPf/x1CefJb/BVdLKg8K3hovgOF6T4HkWXFVMwkaJrlbVR1iaZEt5RkGKmgDVaQCEaJTgriaYlSDJLxoxTqEhTivEYrrqm5FSl8EkDLtcIDTUlqpNoTKespE1B0yg6OPiqie7U+4MDyKuMZG6zrLMOZS06lElKynluTG87YmaNRr/g0NmqM/3eZvTXdzj44ZopzZpJPwDGUTv6Fgc/M6XWjeHM6M0b+N29vpBMSKYZVVF045/mcAOfKWnM9JveUsENGiRJ8h7sP/AP+PYIHxTVXRtD0SktynmM2zJexoCsIatFd0U0Ew20UkxpQ5AjnHL8zs4e4c/2PAahasEJx+3dNDyHsis0 -mxqH6HUrpFbLWcdmVjVXrCAcd1AtLcwOMagZ5Rw9j6GknNSsIe69WVJLgpZE4iHNQdJCyNIsOTrBJQ0pfdSccaKUY6R/U5g3d7lYJSG/wlWrTMisqAhrMjHOejIyt1OO1kcjZ7uKLauppjJzCM38thJarFqzmkyoGVG4DkLLZkJ+VxWletXK8OeWktQv5RZdtWrPH99PdW3LGdrgoD3HNQg8zVnJatoopNhY10jTeu80rVsq8UpIi6SPCfzFxWRhZ87gI5NKw8lbz/WtuPzSNXDnWL6Yy+uuFl6TG7gkckI1xjzl9oB/uEXuJtoLsTamYd2rPspzzDI2ySSYQBI8aM5pg2fTVCxraSl0VrFJhZhIidwkX46St5VBFxQcJqRz4+NpTUvW1biM9j8bUtO8HyeHfTKxd/rQLd1H8yHmmsMNnDTzTGAQs/59TqaFmuaLO7sxF2HBP7pteg/8ccf5Vqgfd2eJ+3gb3A9f4xMLbyVlWTN6Klptcly2mruysSQ23Z1OmWJXnGYtnhBrmTbR49/h0qVxYSjifPrNlun3LrQnipmHk9vIm7j6sQS8si46jKWnFGYFzEINen0lrg/pNS7aIAhOrvoV1caMLF2442baluMn4OGh9D1yBoMd9z1bL094qwz5UNGxd4NyjDEpSopVBt1ghJ/ay8Js5Wkp3hMcK00x0nPMm+Zmdy3GJCtPlZnA2X/uYqE5Uca+wHuDCArB78utK45sl1vdSubye5x9Tl3ExVa5Jbgc/2Ds08hQIRPi1ROFz6P64rZRMRTohzzZFuzo5CXICfRyJ3rCs7EvgsLjHl5ReOSvRlJ46naiKTx7ey4qPCcDqgrPxHPIisWRD6QrPLbXKiw8f0MpiwV/+yUtPOxdaAtPwR6ICw97SHXx8+glqAv0cifqwrOxL+rC4x5eXXjkr0ZdeOp2oi48e3uuLjwnA6oLz8RzqIvFkQ+kLjy216ouPH9DqYsFf/ulLjzsXagLT8Ee -qAsPe1N1Uc1LKSbUpCQX2likMOj5XnwBedi5rbVEAPZdSIgAlNsphwCcL0IwBBC1tU4I4OoZ5UEAAxuqggDcTy0GQo5zAw0QgOQllv4Atjap+CFs7a7QB4Dctr4HAB64rAeAHKKaP/8XiEe8G7Se7/KLQwjO4Sr6i/rCEELVoDV9D74ohHAwQFUf6gtC0JE+cV1/yV8MQvh66sr+DF8IQmAOWdt39EUgBGZYdbcdjLf+fnoHBJOsIZ9w31UMrIGzr/+kfRvmuZjBpYBvikbRUQoXnBQUdEVBUpwjyaxvyY3BZZIYbKWIYUFxDEKCrb+JGCd9/XVtl0TbpYo1bZkt0VUajVL4yDiH3PZE5zHkvsk6I9o8Cgtd2CuK2zbmpenwzTG7a9nhuWu8bDnMKtqgh/92zDRoI8R1Cbc/ELuXstSl0XEKZ0w7yAq1yr3Owhhh0imVc+BMmUG90n2K83uwhjIHvtAd4XwO5haaPJ5GJ6nta83bua5EcwyqkKzFBC+7JuPM1NYMfZE2ZaQtFg4DlVO3MKvNKlTG8PdZbBvbJ+hj30PNCauBdHjYUGKxLSkyQmznujnH1LWCC4wAIud9h7zvdDc96quo1ZLHvnPewsHqzyx6Q4YC0fC5bY4vBXXt8QXuhETe6ZI/XXiu7viqtDn9fj8Xcva6WEP72B9W9D9QSwMEFAAAAAgAAAAhXPsnnmVhBAAAPw0AADQAAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc2VudGluZWxfcGFja2V0Lm1kxVdtTyM3EP6+v2IkviG8CTm4q+iLRKFtkK4tAtqvG2c9yVrntbe2NyEVP76PnRdQOFSddHAfiHa9Yz8z88x4Hg7oj/GVuP7l8s87GotzumUbtWVD17L+xLEoDg8vZZQCy35FkdvOyMhnh4c0GfwV2IeB/Lf3g0tX9y1swuDCKb4fjIaj92J4KkbvBrLrjK5l1M4GkWzwwEpM -VyI2LHqcIWASGhcHCkgD2+iqY+Vi1VSyCht/qi10WYfFBF7dSrwztdLqGYf4DTwK2YNq68HWsRu3DMmb41F64Vp3TMbVn7KHj0dJM6+MbCvjlsoFrny2rJJltRhWo0lR3DU6UJd5IDzNnCc4SDPtQyRZszG9kZ6Uxt4oamejrCNt/SvpKm+zLhIvtGJbM/X4ZsizNNSyDL3nnCOSngkP7FmVRXFwQL8/fqUUUVE80E1v6YHudMud01h/oHMfdQ0W8I2lcj1OeoChEII+84svE1RbLjaBYhPWVbUDD3ZewZsqReCdETfHYthMsGtIDX4nnzdLBi0r3bcVnOG513H1fdesAqgFOVFOtcHSF8GOTjLu6OStgT+MMvCH0esANyvl3Rw1i4rTVtsXU/2S4etA76X7bcH3Uv71wQ1aonpseDQ6/qQCqc/S/rLpa8Hvpf7tHdhL/2s4UDfSGLZzfnJwo+fNizT834bXdWWPkm/rzB49X8+ZNFyS0PgNs7woBF24tkvTZ71b7HaT8noWKbo881oZ64bVyzejd0ta6thka0xmpribU9IqjLz1zOcSmNcyBKz802NyhnQ2ey2NAOKCLXXjDfYPP9KwPB6mhd5qzLYF1EWfJqrY+EAb/OeHutA6I3PMCR52qq+jXjxGhtNPqWNfpxH7BSdbRwsd9BRjt8uiQUcEcPR0PSBViZUjCkuohHQc0EbDLdwRKc7XXNZAFGoHAnK0p0fZXdfFRBxFL21I9Nh6RT8lg++GyaOrWc5zalqaSW1CohSnuqw2pFrIJDbA3Vj8TGwgT7wDf60OSUVCx4zFBVnuPTDq3kQojbXs2Oilj1BBuTjgjFZJcOKG0MnhnW7a3RNZPa0Vk6Dx5hZPpHp9j22wT3Hy7l4fdXWslouqlsGdVKrldpLLcEMQstrIAMBh+Z6WccdQbp+z69vbHDUym8NCSc68a3M2un5qdEr9JjKxiYw2PQKUX5N0E7WRuqWp662SfnWW -mAu93vXI+vNaqVlnRVhZHA9CUpIHyOggZS/RZByaVQEr04gWSHIxBADdoNyhEGmCCnFeVXwPaTghI6cMsnKjYKFH+qEqW8jIdMKgA0uMWltI06PSpjxLhREhF3NJZgAZtspR7WTlmrvzGfroqXAsiuMSIRuT06Oe/xuxdiSr0TVkWYxKgojPG3ZWgJQ2+ZvY8b0NdHH7d5bDE077EruP11IyKLvVpCzelciDwDtNQj+fQ6M/MbN8H6unGjjtSSWrUIIKriHlDeLBSmpFbXv0GG4R5OIoVXCIriuL/wBQSwMEFAAAAAgAAAAhXJHdoqbFAgAAdzUAADsAAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2Ffc2VudGluZWxfc2FtcGxlX21hbmlmZXN0LmNzdu2XQWvbMBiG74P9B9GzzNpQ6CGnwQbdZRtjd6PanyMxWRKSkpJ/P7nZ0iXI1me7t32Hktr4NfLzwgtPEL3TUKuW+70ZfsLpBhzARO6kCMCj6sFZla49OK0aEYELH1XzJwiitfsYuBSmtV1XGxshvH/39fHL98+fvv2sHquPlbF1Y0VUZlf3INL/Jnqrqx931a2slFFRCc3RCf43kR7kt0zyO55/nLvHrQ291UKreNymu+2+ieowXBxUUE/pE5yHRjkV02ed7wUJbZvetQ3PoPXw0s6LFLRm24IWvTJiuKhDYz1srUswhK6jFyY44cE0x3OA36T3W9+yxu6dNR+GF7KEjale7IA9QZdewRI6JroIngUrfnEWJRiWKkg3zL4HrxrWKdBtYMqwCKmjdNybOZC7dOY5iE/PE2A0YCeP4eWUKp0RTkfD486lCT4O3+Z+9oakyMWIbO6JM4rzrBkZKL/uCDFGMl6xJAPxsSkh/giAD5vZW5IiF1vysCHOKM6ztmSg/LolxBjJeMWWDMTHtoT4nwHKY+vtDnT9ckJlMHIzncnozViAUE8rTgH0teQQZgTm4qQU -oE+rDlVQQjiqO4VQTniINob2zGHJag+RxpBetS0I+aEWShBHBagQyikQ0cbQnrkuWREi0hjSq9YFoUPUwgBRg2hrI1XtoLWx1vY5/YnhO6aUqJTKSNF4hIBfAM8sTBH3tRoRbCTs4sgU0U8LEhWBwTgqScVYTpOIOZb57KnJyhLxxvJeuTYIZaIuMCBHtakYy4kTMccyn703WX0i3ljeK/cGIVHUxQlkI4XWYHbwDwypdhIjU7hsRqlKQaogU0Fmg5AFXEsW4V+AvzhJyDKmtYuqmYt0VMGQ4ZyIUQtLWlg4UFk1owaWNPAmG4WQNWpnLtRRcUOGc/pGLSxpYeFKZYWOGljSwJusFELx/vt2fgNQSwMEFAAAAAgAAAAhXOXKIXynBAAAuU0AADAAAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2Ffc2FtcGxlX2xhYmVscy5jc3bt2NFv2jgcwPH3k+5/sPawp6RHAoV2PKGWK+gYVG2l054iNzHEUmLnHEOP/36/QIsazU7CgoSR/DBtdLGTmI/21X45TrOEBDRyxJoVv2Ehabj/iaQpyThl0sn3V5ENgQ+CZAkNsSROlmDGSBSEnElMGRHFKvgQUUk5c3LJBV6RIMYsSihbBYxLkhcXSNgn332E3f5bUwGbCIIjvpb5n3/MJ9PH8f3ixZ24I5dx2B7LYnlK8O5Wgifuk+d2YpcyuBNOnMYrHPVfOh0UOx+beU6xS8dz5wv3bjF6mc4f3O/jEfx57nbgDtP59GU6mjkplmFMIpSSiK7TvyKyoSFBHzt++YeQDO0PDtEIXpjKLYKTQIdjRTnJsICDjIZIkJCLCOFQrnGC3k/OQVJgli+JcHYr4SJCM4kOR5yjV7LkgiDYngh4KXgYnK8FSYsDvvoCr8tCOHr4uhL09PUe9idJsk6w+HjqkK8zzt6fc4gYRwndwFvAZbmTTYY8T3mCE3j2YXHXdSjppviwoTl9BRIZ -PBPNqIS3OPwsh1OJ4GGG+RtsUxz1UsCLwfMOI5LglDJcfAhyeGUy5JksHi/YvSqcB2Hh9rDgGAxL2PdEFPZbvUPwdRD+ns4tA+MYZPE23+1EYR+yW34aFKqN34l0dUQeJz+ep3ejGfyj8WylmCTF7x2dD1ii8+H3fg1IT4XC79mCmAviqITUcShF5FqLwVbESAotMlIHoyIkfS0TWxJTtQz8o0sCS3RCBv6vJRmoVAx8WxJzQRxVkjoOpZLcaDHYkhhJoUVJ6mBUlORWy8SW5Lxa4m0k+IokwW4XyprMtKrXOLq/Vsy1PPhv6Y/7p8XDeObORt8hIHP3rjTXyvlSInAh6P8WwhkhKBLShsHniHieDsG+IZaAGQRq09EGhD4enq/jUWqHVWKAEu0cq2aR3oZiluV1VSBKsyyLwRAMR2ajnkIpHD0tBFsOoxi0Skc9iop4XGuJ2HqYJkU7u6pZpNehmF95fZWI0vzKYjAEw5H1qKdQqsdAC8HWwygGrepRj6KiHjdaIrYe55CSEBwFLKZBRiIug4S/wS9c3KtqXlW3ytFfoJpZ3bqz8ejehVu4+3vMFv+WZladqz56kygjIoSvAe0u+vb4/IyK+1gYZ4GhSElbFp9j4nd0KPYtsSTMI1GblbZA9GHxPR2XUlesGsPUaOdbtcuqrChmXL6vAlKacVkcBuI4OjNNaJRC09XCsKUxlkXL1DRBUhGbnpaMrY3JcrTzsNplVVoUMzH/WiWkNBOzOAzEcXRtmtAo1aavhWFrYyyLlrVpgqSiNgMtGVub88oJY5wkhK3Ip282pqu4yQyt2Vqn7jLFPM2/ce8mo9lsPH8YH9SU5mnela+m8srXLMJiC19purPAhZVzRjmKHp3STalMtzo1+zBZMxdipjZWpxSkz1a3o/NUqpZldQmstGO6hovrMSlGdl1PJag0srN6LkXPb5asuZ3PLev6Wjk2Zpfl5iQ1a66oomddrSkbtIujpZ0ENlxc -z0kxFez2VIRKU0Gr51L0/GbQmtspBe1aK8cG7bLcnCRozRVVBK2vNWWDdm5aPwFQSwMEFAAAAAgAAAAhXHqeVGf8AwAAaCQAADMAAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2FfY2hhaW5fb2ZfY3VzdG9keS5jc3atlm9PqzAUh9/f5H6H+wEgoYWN7eUyd3XJ3Iya3PiKVFZHE1YIdBq//e3mv6E9tKU1M6nAKX1+e048eUEYz9g2aMm+Lulx1RxOF0gjWP52RbA9rSvGxcdT9JnKPxpalywnggZ1STin2yyvuJD70eZYVcv7pJFXH1+/1kS8r4lgFc8eiciL48N7umWHfcbJnn6sy0oEeXWo5WNVk73QsjydjpaUtG+7fq7lrjlpGiZfLB8VDeHtk1zvqSiqY0lO2fNHyfv6WFLxLTsdQ35ON2pJKKqG7Kh8e346YtBWhyan2ROT3A0Vh0aCBlv6zN4IeCVoG3y+shVEHNrfv9ZXy/BmcbG5D6/CWTjfzMMoQoG8+nWRVzIvuQnfyYOSU3ZNVYa3KIyKkHF5MlKaVwTqm0H0pwg+NkPBcZcIheuNPNLsfrm+DK8Xx+Otw0i+Yble3i9nq+DbT01lTnLbhpLyM1w1IrZAfGLcF+DbVu94GML7u1w7wcUWcHXx2srekMrytqb5ySQvqKqN38FjCPzm6uFuOZ+t5Bd858CfmBLgxFpgWQJR4+SnwokKFSdeHB7ZYFpJrIPsaDwCEV09HtsAOoisw+1ReQzCe3I5NYVIsbXLsgTiTvFPl1MVa4q9uDyxwbRyWQfZcXkCIrq6PLUBdHBZh9vj8hSE9+MyiroQxeu2qXa0zEqyl6pxk8mivyaAbiumCyT/4Txc3G4uF6twNbuWCq/DuZ/pAiErUIXOLpjnQiMEQTr6jLAVolZoF2BYaYQhfE9Gx+YU4KyhKYLZFfMGilXAfuYNlNjBWmqtR+2InYCgrmaP7DCd1NZD -98g9AiPwZPfYHAScPjRFML1iAkFjFbGfCQSldrCWdutRO3anIKir3RM7TCe79dA9dk/ACDzZ/W0iKynZZrxgWU23lcjK6kX+kuNmffOIriqAH1DNJNNwtZhdhF/HXW3++ZlJcGSJqxDcFfZccRxBqI6GY2QJqlXcFRuWHCMoBD+OY2xDAk4o2rK+BBRTCsYqbD9TCo5tka1FNwHuqB6DuK6uJ7awjrKboPfonoBBePJ9ZAMDzizasr4MFHMLHqm4/cwteGyLbO27CXDH9zGI6+p7agvr6LsJeo/vKRiEJ9+/TXN5QcqS8h09O2/BdoXJJGNWG+geU0w1eBLOr2ar1WJ9ufjMwtNUMx0UgKIFfOJ3mmEKwTv2QhwNQtc2hM8g4NaIIygWP50RI3sqcP4xLNZnopiFYqQKws8sFONhIQxsD/MIzhskxmAArh0SD8P30iLmYfQ0SQxG46lLEnswcGoyLNanopig4kSVhJ8JKh4NC2Fgl5hH0OmSERiAa5eMh+F76RLzMHq6ZAxGM6BL/gNQSwMEFAAAAAgAAAAhXFOOt9WdBAAAdw8AADUAAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2FfY2hhaW5fb2ZfY3VzdG9keS5tZKVXTW/bOBC9+1cM0FsQ5cPNNrt7c520MZDaQeI99EQzFBWxoUgtSdkxkB+/Q1Ky1a6VyC4QOCI1M3wz82jP+wDTm0lyd301m8NNMoIHWpSSwy195NICVSmMcyoU6AzGlXU6XQ8G81xYKCl75g5Kw0tquAUbHXN00VkGmTZgOJVAGZeyktSE8AWntjK84MrZE5g4wEhKu2Y/Bb4UKVeMnwwGR0cPjrrK/n10BAuMla4JRiXxIFIftECzEXNiyYHhjkip48FBikIoSqh8IpIWpOSpdkTqVaotJ8szMvSeD9wsBeOI9N+KW9c6yWlSbxKfBmkDD54xXRnq5P0+fsLdUKtEZwmLtQKj -V9u3/yiBEUMdTKXC/vkQ9+84AldP4AxVNuOm8Rh8+ACzypWVgy9CcjsYvMLIOJFR5uAV7qjL4RX3kiSB+hNXi7pAERphdrnAtwssDD1VuagrkRNKfjI8iYY+APNZEJ2ROou3Yvxq2wrzw2rV26029n7IKG1c8IyP9j3nIvWuvlyBt3BnkEZ85es11sqhNTcYru5ZLCILT3NR4BFC+XpeL3n4jy6pcEKrX4vb9elBY1OTs/NkOkvGs9F8Mv2afLse4fM0OUtuksl0Mp+MbkNOeN/CdUu8i9KEaeqw+55h+Kyc0TK5P0/O8kQohEFl8Npt6F+dQe4NWsYFdSzHu1TwVFTFacoDx2uXFtxhF9wvk+neYDO8bT2hbkz7Av3YBfTu5vvDZDy6xQI/7Im3zNdWMLzZQtmSM9/vfug7HPvmcrErl+HFYSQZXvRlyfDiYJr80Yl4b554vH2I0qDdmymfOrEeShUPeX+uNAn8Jlkud6VzOTyMLJfDvmS5HB5Mlj87Ee9NFo+3D1katHuT5a9OrIeSxUPenyxNAr9HlnP8Qvx+dT/7en2b3I6+IUGmyfjtX598nRr9xKWfkLDX6o3fny7T3b9AVmfO4zbiZQfQ8y6gHRR5B+aWIz1Abozfhjjsgvg2M95B2kWNHrg7XHdn4Sehz5KqZ5wbuUwtzDVONX74cRyuKuOHzXk9bA4GCUaPU3xKHteLn9bUtdbUn0oePR2JSMOLyEmiaMHba6mjH9NViS44ta9QBTROhkucprenbdb1aYwaI7jxbs1IjFfG5bpxZxzn/ZZ7vW7cm/mN4F94WcYXOCwa+oQDr2YhlbipK8M4yXDARmNXGcXjMf6exYxRoHAc+n1V7/mPWHy4r8JEnsCVDgrGoUxwQKMi8HP/MZTYAowWGhNn0MnVMaAwegy9aWkEoHaXBNoELzX2NY7r1gdgWkpaWg71nTsNtD5tSJJsSYLRvGSBR47aCYUOXYEfxwE3zbp1AjZY -olSDQljb1iKQRQatBIqNMgqVY5h/xkQq9az0Sh2DXSuXcxypQ3KZeMEqYiRqnlHLtM6gjPHSHxWr3BaDQShhRMwPpeS2JSCFekb0KDbBaUzXOlMFB/7ipYE/UBTYVPDWeFigvq5USg0q1UZZbWq+SUvqJ5S3CNMD21QcZkqutwB9tf4HMlQiSNsllSgQsc9GY5EpBjgOijnij4i8KsV2Vejt9Iqa1Mu/k8F/UEsDBBQAAAAIAAAAIVyJaNjNdwkAAPAWAAA7AAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfaF9hX3NhbXBsZV9zdWJtaXNzaW9uX3BhY2subWSdWNtuGzkSfddXEAgwD4HamngXu4vkIfBImYkB2/FYTmb3qUOxKTXH7GaHF8sK8vF7imRfbCcZZ1506eal6pyqU0U+YxdvT4vLN6t31+xtccLWvOm0ZOuwaZRzyrTskoub2ey6Vo51+Mk6KztupWO3sq2MZS7OKNw441OQzuOHY7ytWMO9tIprVikntHHByiN26hnWa41njeT0qGLyVlWyFTJOojecCWm92iq8XK/WR7PZ8+drz31wL58/Zx/TvuW4bwnLRC3FTWklrw4fMfxEeHUrmcCSqoIdcaJWjWp5yfWu1LwpO1kZX2qzr4yT5e3P5THNvLTGG2F0nNHWKg8bJuXXw/h1rbpOtTvmRgsrU8KP0uFVGVqvMDpCVgrTbpVtXPkpGA8XkidcCNl5DghKV7kSNpciOG+SK1ehjau+OKY/fM9k662S8dnx8X/IhESd5hup4+N//AtPl2kJZs2+fzh79oxdmFZo1SoBYghU2WC92exS87YF3hQKySyQaCX4GIdf/bSaMy6k1kFzCwIrFZqFMKED9/2kvfI1ZjEd8cdYl3llqvVAAXvUoeEtQwTxVjVYNzh5FG077yNmNUTMbPaFLU2DHWAm+8KuDDz9wsBvwDht/Gv8Q5Cwjdwa2OsyHfT4LTbW -RA3IwCSsVBQF++Yn3p+/OSEHWukcy37BTPkpqFuuyQCppfDWVLLYKzC670d9YRXCWMgCDHsuPEN0Om/hz4KeWKPxxG4BHoZ+PEj3kb5zVFSyI2BaTw8vTL8JQEemSADmDdxjndlL5MurPp/kuMmYa4Q1bw9MaAl0293C0QutPnNKTIb0VRWy9Ci6uzbEIENsIy8IIlYfKmt2UtOCVt1Njc3fyA/KV+zddVpJG8GnXcHFK3YjZccqeyBjK7ysewocaQftsbWmidvgT9XDR6xRHEamsnFLrgVZ54Le0sRK5VkwQhE4TFjjHFa/wUY/YOgWzuqsZgmVDfeiZqertPHq/M050U7fi19fHLMFW569KJD5d4cc9Fh+2Jy8o2Wd4Tfj64fWrHrOuNbJpJh4jqktxT+xaqL4OYQC2yhT88/cViY4MoXyKIWWIlIHupPBUcRfXq7XFBmdtFGLYaFpq5B0sKu5k0/EaA4meUW7bC0iGWvNCazCqtbFaK4UPaQBkF1jq3l0f19LX2OFrZVyagdVD0QdkasS0RBUoKBIAjPVZ7whvx7kWnSaV7WM64hADrQyWJA34oFUozdWEjS08MbAXyxEOoQlh4D+DiVAW5tdlDhngkWOghROiAi+0fLVAznD4knBkH5/IlPH5HO1CbqiXFVQzQCtS/6dDJoZg6R3HjZQvHDQc3BKGNSwJlqBHEAVRAkU+i/1YplKCrs1OjRyznKUSDvHMg1YQFWycp5FuBgii41VJ2l2ruoTHaUAJQdImj+kt5cIBKp4JMBU6Eme86toChGyiMWNvb86I2lOtWnSJOTnsVomJY/h+hR1zjg7di6hToL0yvvOvVwsegpcE98cCdMscnwUwS1oEQLwLwszIfoeIYFQRiZakvTsjpWxu0ErBKwwFj8pSvAT7oWOcoZind9ypVPUGMqHvcJqssHDuObVr7+DljufdNrDvjo+z+B/BrKbAMmUKXCu8eqda4xGyPgD8mQz8Rnz -zPAOe37F6e8OjZz4IhfuxZPxOXE3TN5RdiivD0Pij41BStIia+EQ7THKBq1a9FVnoXP2Y81Y8gGpJ1CUpe6j2GhjqgX9CpAg+TiQkwOoOLDo0NeOZmNVtZPs0uhDA+t+s6g0E0QiqUcCUzEgwtGHUEHZR5VzMnq/398bO0H5HopPB7EPshRcSLmGPqAbEFcowBbNsdooomusDJR3fZsVF0b4pfltaDaU8e5RttHK81j6AC/EKhY8l+RA9B0iia7N9YiavmxoL1/nSmvVQRXWatdwtgTPbBk06QoykQQM2ZyMjeteJwDZOiWQewCko1W4rpCndUTz/Xoh20VON7fo8U8in/aJwcQL1+9TYJ+eqMKN+/ztLEde72TP6yTJX1GWI3aoWfE1fuzqWC2N9QARmYA1GmrQOPDetWOSm1gtWLY/C/1gf+8ki5pqBDWcayh4Oj1FYhqWxyQSTtE9Wy9v2BJljbO3kmtfC2KLICcaqHKsYhc6MHAfeJWXINCPRNt7++PqaFrkPd96KvcEUrHnqI5wLpdHQBatXJxcniwZ1VaYI1JsoRnYShv7WIKPgp5y+7ezSzpfRKj7jsrisLNcf6DiHmybYPgj/Fexk667luJpTu/DnUIt9/JeUfghl3+J5Ri0UH1Gw31YvPnpjPyEBmFNBEtOVSYd7Ek9ZYKHjlMJEG3I1ESevJMiUk0VI2dfzrXr9x/Y+v0qD3yShz7culARoZ/rYqS1CD+eEHDSSWrxEqNW7iDo3sDj0/W7lAaJtl70e+qIKhvaUlWFlrdS97FLJ3Dqh5ww1Pb1pwCddfry3cX/Bq8eOEsRcKa26DeEitcD35ATnB8OtFuk9+94HKEuEj8bS3XcCTSxscPdIqQ3dPkRQx40Un6jncWmjnSygfY7SnYCIF+IJADQxAbp8smAmsoidgo4RcAS6rr6zmpoqX7vb09ms4L9Ac1lBxNym/bN6nq/oaTdhrNV3/ouHp9qHfn94Gjfl5bX -tHvN0dbiXTMW8NxhpsqRjm34an3M6j6IYz53b+dsbDfm40Ek/qP5OPbvSOJxpKCiBKfTrqgI989rhJmjE4nPNS6XrsnprUint3QWcfetedDM0iYrE2HNQ55cQTtQGA9R2ITGkZvWxPb/dDXsM7k4cXm/COW3mnJPN1K7XI1rjCjMtvh6WQYoBwq0n1k9Z8f/pE+a9e9jVk+ZW/I26yWRQeil45eldI4J2vtYIkxbFDHP7U76cqukpncxVkuamalqoXghHs6pQbN+EsKvYwBfyT8Th+wqYL9ZAnnoWOg2Yjw9zb9xdpr3l0EesAcZAQ7tTWv27fR8Nhx8H2wyBP13+sv7rdOk6+41YbghyEEwOSFNuZjs7a0Eu3mZcfj8XlC56Mzj21IKrJiIj25Cp97RFY/yEN68Dd1DoE/G6M4YjS9kAliJYoVtzk7PTy9O7msxaVPFPY8dODQcQV8ZETmN83v6yEqkHppZUmtWSaHI0HQ39wtyveL2ML0RpvPOIxn5yrVvAjXfzBV0SauSGNGlrUZJnd4LP7j9RYCaOxyOEQEHZrBAvJCYHtn5VlLj2VFcUiDBjcGGEdH/A1BLAwQUAAAACAAAACFc2QjDh+QEAABJDAAANQAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9zcGxpdF9zY29wZV9wbGFuLm1krVZNcxM5EL37V3QVtxT2QiiW3XAKgV1SRUg2DnuVZantUaEZzUoaG1P58ftaM5MYSGrDwsUefXSr33utVj+i929PpxdvXp9f0dvpMc1b7/J0bkLL9OYTmy670NCF181kclW5RC0+Cf+aVtr7pTYfya0oNEwbbmyIZHTThEwmbDgSthS3kbUNXU4zOs1iLTtq1qmLbIk3znJjeDaZHBzMs85dOjo4oEWSWFSSWJQcq8TLboFNxya7DctR1lmduWz3rnaNVtqvlde1atmGrHzY2pBYbZ6oQ7G87Jri/Omh -DPSWuMnRcZk7PPwNkxfaxTJ8IYPIK44SZDtOP59MHj2iPxx727M1mUzpjK0DIzKZjmghMS0e06LGdFerRtf7Qx+yjDLXLUegjayMTLRvlWtcdtoPoxXwlO+Q6uA1ztqNO1R9nmr1cf3VarHYXzOhsZ2w9YXtXJn6m9XBdlzbuOSWHsxHNq51WSAB6UnoWmTEDVSoqEyZU86KHXs2OQbLqoZJHNCM3lLF1rqmxJa27D2+1SpqI3kmk5YhHiKRsWgfC3Ohzc4guhx1k1odkS67L8xcrdfwHrpoGEg8YhWZbvUTWXFWmkyuyzddD6INaXs9IrsZXwbP+JtLDPh/DRqSXIZreJhOp3TP79E4wLZFrljtyeP1Uimj62V0FuG2we9qjmodcbSqdjaGNfsFHFxVTOc3dvROLyXA0ZAuekP6Uwyxsn9VxPzZrzLZjuDVl8v3BTbqlVTNuBTm3kDOxo2gUDbeFcGz/4oguXWttbewr5TcDK0ypyz58CCKzhySp4U2c3FEJ8glOum8XKdBWZSSpStho07QVe+c5hw3znD6PkKf/Aicu4j9CeE/QIbDF/8nERr3EZdv6YLcKkGA2XuT4b1splcunPaby/SH+fFd0TwvkyxlR8edaphtQvVoMi5yKfFDUF8Tdg+F3+K/ixLXZF6jzgJ+iChnrma1dblSqVvK2VJFSnQ/lLL3cfYTdP4Ohp/+/hCGpTLOKy1l8ZL/6VzkGs9gkofsVcjVUAIT1V3KBEISYmF6d3p2+h5PeSeVvsSadN2ipjP2ZwJe9ml2p4/IwNvQXnkmeRMT5UrLagoeB+RArkk5dhIN8SewlhOhFpfiTmJW/J+j2Qjl6cTa4B8Qjbg1QUISraPeqqHFKOhmJm1oySup5rjqaxZXJ5V2zTSspgZugt317qQdyW61o20FpccXoQJkL+2Kxtw+dHFUOgEqOtx0QDBA2Bn51gYkYXpMOuIZA4rHgioybAzyMpGkI9ojNFUWzVB5 -+8iH9awodV6giu6XHWxFpf5ZK13XbXZDqSCdlMz7nXRl7la9NOg29QjZE8ihGLapl7HIcsvvh8SU9vBsK26opDswce0gUZ+r/btPQ8b/0la7JK+0mMlbC7hwhF4ANKAVzGTdCmGLuEN2yGnHCddq9N+3FfvOhxlkA8hyGcAGDVPlWhH2JdlQ+knITgwicdagWBuCJ21iSCP8WenVID4t95MUJIbC5sPSZ7gJf52U+Huupj1XpT3WHeSM7jNL3GMPDT3BnDOpyPNSxBkb4aFo7TfC0P1V6Molnkz+HjvrdqwUxmtXpxE5qAKnOt3hCZcFlPX3DymCDtoLFUMa7APs72KrwdUNvl4IOQuYLCI2gs5uNFxjP98cOJv8C1BLAwQUAAAACAAAACFcz8QsJ0gDAADsGgAAMwAAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9zcGxpdF9zY29wZV9wbGFuLmNzdu1YTW8bOQy9F+h/IHqeBrstdovCpzaHbYCmXcDtWZAl2kNUI00ljbP+93302ImdpHC2H5dgbjMUSZF874Fj91ayEd907MUaZ6MXbyvfmNYcfcqNS0Of4rHDzrbz6DVTToGb4lLmXTiee957ji+ltZm9yfx1kMwdx1oaz06KpLivI8VqXTWl2jqU68uPrE+f1JZNKl0KNkjdmGAXBgV2iyx+xaZPYdNxNquMaNNufE4rDs3doOZTy/Tx2kTvYTqZ5nzvQP+ODvSPOjSlR45doy//bnRUM9Kmhs5E2928hFRnVLnrOaObzMbNqH9nJEoVG7bPS4n6dFDt7tR0KNd8WR2dbb1vTjAsP7gq66O4uXHdrbNd3HiyBgqLgK4zAOkFg1YgFZAtAuJnxIFdzcmz6XCat8Xuw0rL3kvE9eWKQ8CTWWZABmRn5DnYDpfpm9lyBPX3VRyur9nG0oMX0W0OQqSzgKCkITtGoeDWs7eptjRSrlA3lEqotXBeM72/uLz4 -8IbyoIUSmErFdj3KYvhXAtQcytmM7qbIDAgiHVxEClah2lo9LSkgf00ksdQ8KGeJ/+tTroVSHsskDdP0HyOjL4UVR7v0mLjTrC5pQVXpb68MJluGnQTOXFnTgpcYCyiSV4xM562V+DwtnztkSX4zZhMPf1lu6KoVt2+EWvQb2BNb2A77Rp65kpK2pCQoOKZKDv6ouUrHfRKVINkMLNBCoy1lRowDwIWupLZpqGSB4Fq28FFIq7NnDSa/5KxiPqT9XqaZrd8cv92v2T2PCgZSs7gHavRO2OXeQJej4UiMLycxTmKcxHgoxiKrztrgoZXWjJsXd1RlyulF+v3g5lJANwDCc/Whc7CPzoegyoI04UnzaheyVbIy49MYR3MwRxya/jXr949J8ZPiJ8U/VPF39unvVPj/W94vXk1SnqQ8SfnUl3SUL2DEQpLOUTmjn84P+5q+N/SDGumtpIvRqJ70ef7mWJx/TeKcxPmIxVm0L2/zxkRmX67/h+qDjbc0ijvBwiOPp09u77p7Vu3pdXjaA+3xCnBg6imD2ujZaFOmDAstSOnWvJh+Bk9ifcxi/cUfxfeuxd/5Yfzje/jP15O0J2k/Ymn/7B7+BlBLAwQUAAAACAAAACFcLowEzpwDAABCBwAANgAAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9tYXRlcmlhbF9kaXNjbG9zdXJlLmNzdoVVTW8jNwy9G/B/IHyW7U26aIvmFMQpUmDTBkjvA1miPdpoRK0+7Hh/fUlNxl7sR/fgOKMRHx8fH2lDQ6SAoahEHlX0OgS0ncVskovFUVDalKp956l0CT9Vl9CqbPP5odvijhJ2uXcxurBXvf6sk+0odb0O1vNRF6jgfPZ4fwtHVwLmDIYqJwZKIDAH7ZkDoEdTEllcHl2wdHy7pSwenMGloVCYDeS6zSXpgms5YeJ8knbaoFrcNrIT+sB3ktNewR5pwJJOCpjSdB1KQl0G -yTzUXGCLkNBQsmhhLAqkKLmwWqgTZnVAppVYnsj/iGp/00Q6OJMhIIcWEqRIR2R1bsC6bDxlvNA+82pkdDiB8agDC7XO8sK7z1qkZzbZ2Yp5NZ89k3V1AO33LnC06k820R69YCX3qqYXndeDY6juOprSHQ+d0Zned3bAoVUgn6dEB2eFUIzeYYLnzXOjwj2+gRfECDadpALLL6cmQsaoG/1dogGEAD/YSetJKZBeC+M77Y1QztXvJMq6txDlRCwwiXJm4BdM6ur3X2B4BPOjEBExYsqczgW4eoXN4/0jcIe4sb5ptfp5dTsWyENMYxmi71YX08NfG2bbABlPvtd/Xl3DGu4+XC1jotcTDCjiqzNjUaP5iPTL9PLNeeMTBD3gJOnZXKyOWEJKeFjeQqJjvmG5wLsDgkHvM2j2nAvGV/bgpaTNZCHt/VgXitQZ3A5qbiYj0Z1bxCm3jsYRpJqlJEEeZ0eMsT+7j6t+ut/88+8fT8/Pk8Ay8HzVVlOEVOx15ql6t/oVjgX4gpEOX6LYtlZxVhkBLqwZo/QcV7fe5Z6PAtakOX31pXJtnrRlDotzaYvvtUtN9xiRB15ISd+WyYXcht46OZQL48COY33skZMnDkL8oiBwWaKzUHejUSMz0959qlTyajGffRiH5qt11ITTtseGYiqqsZovFOVtxOfMQsQV0C2xbAzDe65nwGlM1f0Dq/XdLNPp/+KIqGesb2zBHfe0dzw+bMnKTRJjaNHT6K3Hr03GsH0ddJCN9JE7d9lHuafqZfldTDif3UpU9TqNfp90U2J1zRY5ZWfI9Dg0Ajz8hW1cHO806S6uI8nJW1Qb2viggPJAnk8L7+Sz49pTW4rcIp7SwKXoHZODd9AruH4vf+X9b9fQtyESSvlH23lxR2Hn0gAH8nXAlqgJnBTzHNgfWlw5QgZanicHtDEYS8svHYAR+ttfhfnsP1BLAwQUAAAACAAAACFcWwEwimgEAAC/GwAAMAAA -AGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9iZW5jaF9zaGVldC5tZO2ZX08bORDA3/dTjMQbwklYoFBydxKFu6PSqUVA+7ox3knWwmsvtjdpKj78jZ1sEkj4E6mgky4SLF57PDOe33hI7C34cv6ZXfx59vUaztkJfEItCrgqEH2SXBfSAf1wEKasuPAwQs9uoojn7haUdB76xoIvEPrS0hsXqFStuI3qHGovNaoWfPZBkzYeSuSutpgDDmVOurCVJNvbJ8LLIYKttTve3oZe+5tD69r8Z23bZ0bUJWly7VOT44922kk/sM4BS/favKqUFNxLox0LMtTAnN2MGbnEatLBSMQVxrdz7nlbFzKrMDc+KzKeBWsZj5Zbwg175MclHzUeBnXgsawU9/iOTvFRtuCByxoXGhcnjE6vvr+fT5F55kJazAJV65gEEdduGvxSXN8CuQ+k3kp04A1lhVJBIk2PkmRra5pg12FiktzDFd7BPQRd93BivRQKqXUtS6yMpPDT2II+esO7WobkuQnGQs+FopQrjMrRkjFUOXWSYsbYMcQ/y89HAyS9S+0e7YS4ERhlLtMmE4bCpQcBBrXJBaPY5S7rFL0gvVogDHWgoOfuR3pQKLFbYi7rMtO8nLWV8d2AFS33xDkT3eo8k1p6yVVo9qWmhnGlUVxJP27GsvKrK7PbweJQlJ0NkB95HTL6wayrTJQPh6az4sBQOnmjMKssCllJH5xu+oh5ntMiu25EGzustm/DjjG6m6PiJakJL5kTxmLXVISQ9HrLtau4Jdjj+QRnaiuQTEfIVAtwwipdI/rp/kvhT/c38V8v/ntrxP8wfSn+h+km/uvFf38p/sU4t2aAKosWpF5Rf54SeaYChaj//+LcxMdY+odG83LM6GOHI+e6zqOVSv6cqCYB7oKEIA+NN8KoB7k7B3awFrCmZD1H7KmitUH2i5B9WAtZU+WeQ/ZUndsg+0XIDpeQKeR5 -Nv9kqsyIfnlY0EJhfFpoUxrfHtrRmtCa4vg8tU15fGNsH9fE1hTI57FtSuQbY9vtLHETBVcK9QAXsBRyUKyolC+JburlOxBcPnp4DcGmbL4G4aZ4vjXD5QOM1zBsauhrGG4q6ZsyDCeTf5Pv8JcRtUsSBqfhxNsiIBcFlDxo5QqsGQEfcKmdj2feNCBolfRdnk1PQ2D6DQH4RMKRGfCz80yuc7A4OYrFFtm54M5RTzzVdDNDLLdyiBqqc6BW38Nvv0OnRdWeOmoi42CI1tWusbasaU452lwEOFd5ABVSWMmvl9RpA1OssIB6Z7G/wb0DDe+J12lnBxZ5T3oPdqJfi7ThjzBw1AnWz0y8K+D5kGuB4SD5nH0CE24VTkH2ae4YwmePSKTPpXLhvqEVQf4T+i/NKHJc8wvE8UTrJEfmgZrGxUGl6hiMlYtduda41EfLDKtc07dQ8P+zzoVK9o7OBchf8IcPm7SkLCLQvV7vhrsiqca+MHoPnLCy8q5don1YV1dcsLSq8dK8O/FoEm1efoskCoyFayN4+TppSSnpQEvbxz/SPbslW0s7LTn5F1BLAwQUAAAACAAAACFcGYLmM/QEAAAhDAAAQgAAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9taW5pbXVtX21lYXN1cmVtZW50X2NoZWNrbGlzdC5tZI1WbU/jOBD+nl8xErovqGlLObgVdzpp6e6JlZZbDrj7mppkSiwcO7Kdlq748ffYadq0dFkkGhJ7ZjwvzzOeI/r76kt68/nTt3u6Sj/StdSyaiq6ZaHSaxausVyx9jQtOX9S0vkkuS+lo9xUtWXn2JEvmebSOk8iZ6UaJWy05aAnNSuS2pso5SqhFEOwtiL3MheK+JnzxkujaSF5OaQvnmBdG09Ve3pBvJAF65yHSXJ8fOeFb9zF8THNxFJIHPCYWTibVVtn3QyC/0zJbWXLTGRwQzxxBttBo1gFqdtG -R4GTCT4uldBPZMWSYMRKjjuTyYcgh0XPVa2E52hw9K9j60bie2NHn0zexHNHU1Pw82gynpyn47N0cjoSda0QZwjQpUEGL1ykD6sU+Ugb2Egh4krjR4XwYqRLmdVcwMXgMVzZiSvrXBjmbjFLkqMj+miRR8Xpvay4NgiRrgV8f06Sl26PXujWxH9fjSiQMLxtxB0+7rypUVBdyFiIF6imaUq95wXtLEFgpk2WGxHzDxfxjpQZNYNIJXxeom4VF7KpRgXqlzOtBbA/jr9yQJNfw/O3CZVY6fZRfdTEiwd4bCxV0jmcMaAHzgXytbEeACisdEhs2DMVA2cLoWTR+leuCmseWWVKVAC17nvozNwHQ8jTT/3q7KRGq1WnNBdSua1PLX+QTbYghY/lXjsVmKLnptEFrx1TwF62rbMyS/xiXYJr4+E5LUEQtnmgXbR8cXN3R0Et7o/H5wcdjQJA0tJRfUWFlYjxz/HwZEwL10U5IOMqo5AlvxqFijeg4QIfnfzZLwPY4KKIOXdL8DkABnYm4wEVHJPZxoe1s0EokbdCO9QCHF3RH+Phh3EbaF4GtutH7kVbyseyH+7JcHI43IeQMmFX6zoLj4Ni9CeTg9F7UNrT5kgSbmsiVk7OSfq2cL9TYWKLqa2pjGdCe7pKp/A6MGqqhKzSqZVtg/pLsipcoFN8i2RaBtagO+pIpuQQUWICegnO5sgbutRdllcx8BBGXKOdOrxWBHi9fKW6Xj2gjD7CGzFEwCEJFFbJzGMb7rUUNNfwbBV71c1cbuzWzDik6GS3/lGi1WyZjrr6jQb6ewP32h3Czo6kFhX/QBR1nn49SVGa51W3FsRbfVPHqmR9zGXzeJsYve/uWngXoJ3w2t6GDl2Bvrkqe3rcK9FW7JXapjx7il2B9lXrq/akvRNA2W57rfnKUifSsfJ13N0ChDfUjSoL6SQaaobulMta+j5E1nvU2xsgZU1sv3OhHO/a6NrDKwPojWyDo9sG -csBMuMIYfAYAszzYOA1XxhaRI6nz5qGFWE8WWaCOoTfWALUCIwHdsKVwN4OTSZIGfLVDQyb8LHybqG9shj/xCPNxVeKCsfHKzmQRV5xp0IFQGcXtvTptrA3MwBhxZbyr8ev3gM/WIiwbO8Ee//c5+APYH+bNYQgcws37YPgejL+v47ynof0Eam+h6E1gv92d3t0X4hm9QveWD6Gyna/mADXK3pIpjMX0n1ANAw2z2exBuDKpV740+hQN0coaQ6BtdKZk8DWTPhiFC8N6FeSjycv1vdRN0t1kHRgYXHehWYs4g7Z315Duyx69wBMBBJPAbAJcluzizOSlAlpTDHxCUxiJW3jWwrkwjg/wuAyP6QDtGLHMjcLskTb1gIQu1lN8vI/CBUiiwTg4TP4HUEsDBBQAAAAIAAAAIVxDGxbF0QYAAHQTAAAxAAAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfYWxnX2xhbV9wcm90b2NvbC5tZO1YW2/bOBZ+z684QB8WKCzfprftLBZIk86kQDwJmkxfGVqiLW4oUSApO170x+93KEqym+6iC+zDADsvQUTy3L/zkccv6Pz61+z6fJXdfry8uadbZ4PNraErWRd2szk7e/myX3v/8iU91KUWjSpsENJshZGVaNK22M3F8gHnLyCqCxlUFDC60rUcT0dZY/eF9WoQubOtyxWpnS5UnXeC3clatU4akbcmtE6J8lA4u1VGLOfL10eSv3++ZqEyhMa/n82adu2nzudT67YzVc9yWwdVh5l0QedGlaEyM2h4Mwv5rHgd8vny7fzdP87O7p2svYHrFEpF0GK0L1VB8B5BBJUhBF3rusvW+9u7O+o9okqF0hak62Dp+tPq02/ndJWdk4ddXWO/UBuJKDztNQ62gYJTEltbMjooJzk+CtJtFc5ID33SY6kgY3MJcRnk9OzsxQu6Ho9/VrluFJ3XeWnd2dlX+kUrU9BX+iJNq+grVrIs -o/QXXw99JGItvfYP2FpSo5DCOtB+thsiHeM6FfMx3yx3+/nmt5sv5/T7LX25/vIreVvothoUTGi1p7/R29f0eCmRFeokqZEw1ynNnfXe6PpROVa4ePcTVStCsDkr8q3ZsCOFZle6/zxkveIk0+KJLlcfV50m+IlU2prV+INDUlVW6SecbJzKW+etmx1Zm8CID12pGBrOGqOKLJQ6f6yVR+6tKSa0oJJ6zcljWxdtHvROiaaUPuYht1WFBGrUaETFhQGWrafbK1rM57SH+673f9CWwMRKPsJjs3aAUHZlTZXd7aWrKB2YnOau5Qzc6W0ls3NTOJ2XdA0wz5OLyoztYqwskAy2MJ++oX0Yaj26GtVtrEPlDLF0lqQj5DjV3AvPq1dxTJp7s5RO5vzxz5iq3qrvzP6VwAe0mC6/b/5IOvlhGzSpNBN0ADbr7n/WoYzKUau8VBUvcgPVhe+8GWon9hrMtRdtFTH1ek4o8ivUAJA60j5LQWYOWncSLkFDPaI+KB/8z4BAVY2LjVa58l3G1sqDrCip4aNzPsvIGVO6bs3jids+uMNRM3gV2qYLAEAVqeUrZEgw1DSnM9XP7pSr9bZk2ObtugMlNHETzH5ZLAnmhli4jL1rSGNszLWCR+pZEo9spkyqqkn8InK2/NPb5GFPhyBxB12VBFWLSK1PISY7Qw4eb+VR4QiEugUX/H35DnA6UKlv7y6yAtXeIUW5dbEYxCyPcPID3yRVg+DWGqx4APKDXBv1PIecDno3hwj4nDHAzMh8ew/3I4NfJr7lnRdDDUXqKZH6/odIM1kvUKEEeg4XmYOWtgHih14A21hXCAC6lYk6B8s45PQTSw5s2juzbPIg9jsBWrKvRFGp6hvZEd4drhnQXVHiLdlgI3Wd2HA7JS58dohRBnrE1dtf23ys5uu8aQxqgWSL2nbX9AlLCeuwiuZBFnBJe1SHRVXphyi8rJSQ+Fay6DNhejUD/bKPx8ZB+9VKXMi7 -m1cCShZPgiEtEo0L0DinJYhFKU7J2HPOTU86cA+EzM19on1cUw2IJh4dXROgFQGoFobv4Y7WYreIGrGwfPQF7cX6L64XrPvp8L0yf79tIvZiPsaHEx4/fbH+qOjrPAVg/kcwnM7nb34MigPNiVSIYx4UHYeJZ5z132M0tf+fMB1hCs7GM4iDGbFaohT/f2DFbfonWP/IYO1w6Om+lIFWLd7yHyBd8UAE2dWYcdz+GT3wMPrA/xzhUBdx5Tt47Q6OHh99I7z42VwhrSh0Oo3PDVDafViPN6Dk10t/RlQ3vhKP22+3o8zJ5jBfnEjfibx6vp2kh82d9ppvb554dKNDH3O/zi+3OAzwot/jhXiC/JgnFZHXVdSjHJ2G9GQWgadjVBwj+uFIsH95fcJD0MF6iPI/xBbxZoTIRrFS9R/nFO3jILLRDuVOAzbL42GbS7y4SYf+zPGw8hd/OtSklo8DhcccbuKM6JXbqWE2WGtr7LZ7HmMg1/U09dvAkOjG6O03Yw3sSzxZHc+Q8SEL8OJdzqPAce0y8IZvfXac0OhQsE86j+9ePMmgKgab5UbqKsY67bvUNiPXsB/n9SHWIL31MRVuwoRS6akvPZ7Tqe4TOq71hIeHE2c2UhvOFlvy0PxhdpVdkCx2/ObnxpqmRvxg27qQ7sB9dl8ij+PvHFBFPW2Qz+Vmg9ko2ubg+t96phD8bPcepjSGFjZMXcCQ3amaDVJbY5PnUeUnqGDA366N6dOln4w/lXD4koYpoRsbm/Lgu1kEGbRt8myjeeaPP8bwhqEdg9RPuzhgZJ/1UIkoO4ZfqgjmlPLnuMrX5HA8/cj0b8AwPfsXUEsDBBQAAAAIAAAAIVwX3Jk1zQQAAFcOAAAwAAAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfcmVjaXBlX2xvY2tfdjBfMi5qc29u7VdNbxs3EL3nVxA+W66kuGmRnlzbrYvaiFHnVhQERY52CXPJDcmV -rAb+73nD/ZBsuGgB9xIgBx20O/NmOPNm+PbzGyGOrDl6L458bWVLJmSpXCWdaqQLWxMSyUjatoS/+l5u5nJ5dMxeWnljjcoke39nG+vV5NxDjRB7t1ZF8llulGNnG7xslb5XFT3NARDWW39oB4zFgBFDDjo4+U+ZTwb7uCmr3CU2VzrbzdNTrUOUtVQyITXryfUu5VUklYJnv481CWOTDhuKO/Gpo45EVP4+ibPrX2fXZzez28uLDx8FzjzjQwuVRIbPWqVMKYtW5VrksFXRCCUMrcknu3IwsBGvNTk308Fn5CdSZ7NaWWfzTminbCNWpFUHUJtFDWBjkX8Wnrqo4Na53EUStLGGvEZobwQaJCKxDz3YhHNV4mp29t3V7Gf8zkWF1qWT/qSjH0675hr9iYdc51LUPoYcYsh6Z2KoyMnlfPl9cZ8sV1GhZU3wNoeIeE9MJr8BL9uUOmKT+WhiQAyP9m3scPZia0GxhhRbLo9g+FdJ2VCylZdZxYoy5/z5WZhG5WgfSsNdBWYCZSTVstVZbjdSo7Wn0jTUjBk0pGvlrS5EKceZpbDOpaf3t0r04X4S4AlFgawSSmJEE0znusQd911D0WoB0qpj4UPmh6OjcGo1sIsnKHjT9WRs0dMyAfOTd2ILrlDUiCEKo97f3t0JR8oci0QObUfEdQxNYVfbrZxNNR4944ILyqAHU4ciMbvLKHGgyytg9vUQIQr61FnMGsccn2rmN2XUAOBqBdqz4dbmGi859FjqpyRIOaLW1Y6DMPmenQjV4KMUhi5Ols9e1baqZ0PmYhU6bxRmTYcGa0OBVGOoMjKyTIYczcoqCC+MToehdmgFernzSDyjPYeTwKm44KuZQQG5PiKGbcK8psR8eyx8y9S0jkmEwVUo8UuUG/nFUxyDmyxeS8tDf1Rf33tKSXYNo5zO53urvgMtXg41lOvI665v+YuG4IXErGJHj0uzryOWads6qxU2lPShX7B7gDFnLM6W -2oz1gcJgn+XSBqrTdKqkGpIK/9F1XrohGmR3AKVjSMlZf8/5Hiax+PFtcyPP1d2HUwmgxYO8uLm8kWnHuwU7wT5wqbJc1BKV6Zk9oWLnRpDg7/7uQJoYMOSpn0TYP6NCMDbdpyhBDIl1YNx+jsqOMLZreFGViS05/bJYcozz6wXjP+xGFBS/U27vyywiBOJFqtn77Q9H5d3jQOxSpYNrMGzHVr6eTT0mmv4/0+pkPn/336nF16fHmGc5FJLXoGUwBl4R7uKy73mzNlgLr+HcMIjfaPdvtMOt57D8cbw993gXfw3kWyy/ke/rJN90uYZiADDcO3QgQC9CUVC92hokFCR3RUlYn8Mktg46BjVNzgzCFhB/EK5tzUrmILleh6Vy84P4UB5J7QbPonDEYAc+NF1f5mNohHwMLdK1/IddD8NCPHVIq6eQyPhsKIq7KAkIm0kqjlJ7SvB3onaSUrPg3e64yM1RBfXCj8M9EUfTxAoV0U6H2JhHzUKQHjRazLkf6sfebwr725o1kFg5fMFwMamKrJjWyroEnZlDO54FMkkU2RkD4Bt8SkCSAZulU685xaA5T4o8f/P45gtQSwMEFAAAAAgAAAAhXInad4PAAgAAGgoAADIAAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9uZXh0X21lYXN1cmVtZW50cy5tZK2WS0/jMBDH7/kUI3GrZFLCaxdOUJDgsIAKu9fUJENirWNn/Sh0xYdnnD5RyW4j5dDEqf8z85uMY88e3N3csofrq/snuMM3Bz+QW2+wQuVsFA0Gj447b88GA5goxNymZcpTS7NCoZyQYEwGWjWCuuQWPwlSpdNq7jFPjX61weJ6yqXnThuwG851mnPHw/y9d7V3MHr81czEPy0aG/O/3sRXOvMNWjzSOb7FyTA5YcNjlhzGvK6lyLgTWlkWNDTAnD3PmCuRefLBSGJL7eIQKFalSGvMtUsV5b2kbJzvZ3Y6 -iaK9PRjj3CnCSE/R8AKjaIx/vKB8oObW0k0iz8EshRZqNNC8iTM4jKJ3eAhjoPvX8neSMMZgcaWnG3YRnhbjy43xaDGeo2W6ItycfI7pzTahjNBGuBnJxl7BOvaTqLDWQrkws8rpHS6ME5nE5l+ea+9WPGfwCavtSuIDGk9oFTWLiBE8o1pmmiqhivBaaayc0ZKND9iwnMAywSGUsLD+2iBIK8yFr1IixyJkdl6XM0v0MqW18yxkkyxBJB0gkqMNiuSoT4zDDhinyQbGadInxtEWRjnLjS7og5S8EkqoHYrSZtIF5LgTSGth+kA56YTSWpw+UE63UMKmkK53JKlf6cdzWgL/KFC7UReYbx1hWovUD873jjitheoH52C4xZOVXEpUBW54L0VR7lCx/5l2Itved3chay1fr2zb2/EubK217I8tnJy3JDG1Qdc0C1HEmojLlgVCmwLcIFDfAC/CWAc5ZsKKKQLPUEovuYGKDlAjuGTh++eZg6zE7Pd+4+wyDkd15clSaRe6HONAvDRh5sd/CPHChVxQsxU16NA8zMHZGrwIrUJwfkGtA5dgvVjNZZKLioIISezz3sTCsumC0Oucg50pyobOekrozfmgCBniqhMzFB6tDc0TaCVn+9EHUEsBAhQDFAAAAAgAAAAhXOw9/1MZBQAAXgsAACYAAAAAAAAAAAAAAKQBAAAAAGVtYWlsL3RoZV9vc21vbGFsaXR5X2xhYl9yZnFfZW1haWwudHh0UEsBAhQDFAAAAAgAAAAhXCfcL18gCAAAKBAAACAAAAAAAAAAAAAAAKQBXQUAAG1hbmlmZXN0L2F0dGFjaG1lbnRfbWFuaWZlc3QuY3N2UEsBAhQDFAAAAAgAAAAhXAyMv0U4CQAAtxcAADQAAAAAAAAAAAAAAKQBuw0AAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9zZXJ2aWNlX3JlcXVlc3QubWRQSwECFAMU -AAAACAAAACFcFSN0j7gEAACjSwAAPAAAAAAAAAAAAAAApAFFFwAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX3Jhd19tZWFzdXJlbWVudHNfdGVtcGxhdGUuY3N2UEsBAhQDFAAAAAgAAAAhXDygkzjZCwAAtjABADUAAAAAAAAAAAAAAKQBVxwAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9idW5kbGVfZW50cnlfc2hlZXQuY3N2UEsBAhQDFAAAAAgAAAAhXB5Q03zABQAAcjgAADcAAAAAAAAAAAAAAKQBgygAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9idW5kbGVfZW50cnlfc2hlZXQubWRQSwECFAMUAAAACAAAACFcSpBJ7cMJAAAf1wAAQAAAAAAAAAAAAAAApAGYLgAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX3NvdXJjZV91bmxvY2tfYnVuZGxlX21hbmlmZXN0LmNzdlBLAQIUAxQAAAAIAAAAIVzU7mAWOQYAAPkvAAA3AAAAAAAAAAAAAACkAbk4AABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc291cmNlX3VubG9ja19wYWNrLm1kUEsBAhQDFAAAAAgAAAAhXPsnnmVhBAAAPw0AADQAAAAAAAAAAAAAAKQBRz8AAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9zZW50aW5lbF9wYWNrZXQubWRQSwECFAMUAAAACAAAACFckd2ipsUCAAB3NQAAOwAAAAAAAAAAAAAApAH6QwAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX3NlbnRpbmVsX3NhbXBsZV9tYW5pZmVzdC5jc3ZQSwECFAMUAAAACAAAACFc5cohfKcEAAC5TQAAMAAAAAAA -AAAAAAAApAEYRwAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX3NhbXBsZV9sYWJlbHMuY3N2UEsBAhQDFAAAAAgAAAAhXHqeVGf8AwAAaCQAADMAAAAAAAAAAAAAAKQBDUwAAGF0dGFjaG1lbnRzL2RhdGEvbmhpX3BlZG90X2hfYV9jaGFpbl9vZl9jdXN0b2R5LmNzdlBLAQIUAxQAAAAIAAAAIVxTjrfVnQQAAHcPAAA1AAAAAAAAAAAAAACkAVpQAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2FfY2hhaW5fb2ZfY3VzdG9keS5tZFBLAQIUAxQAAAAIAAAAIVyJaNjNdwkAAPAWAAA7AAAAAAAAAAAAAACkAUpVAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc2FtcGxlX3N1Ym1pc3Npb25fcGFjay5tZFBLAQIUAxQAAAAIAAAAIVzZCMOH5AQAAEkMAAA1AAAAAAAAAAAAAACkARpfAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2Ffc3BsaXRfc2NvcGVfcGxhbi5tZFBLAQIUAxQAAAAIAAAAIVzPxCwnSAMAAOwaAAAzAAAAAAAAAAAAAACkAVFkAABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9oX2Ffc3BsaXRfc2NvcGVfcGxhbi5jc3ZQSwECFAMUAAAACAAAACFcLowEzpwDAABCBwAANgAAAAAAAAAAAAAApAHqZwAAYXR0YWNobWVudHMvZGF0YS9uaGlfcGVkb3RfaF9hX21hdGVyaWFsX2Rpc2Nsb3N1cmUuY3N2UEsBAhQDFAAAAAgAAAAhXFsBMIpoBAAAvxsAADAAAAAAAAAAAAAAAKQB2msAAGF0dGFjaG1lbnRzL3JlcG9ydHMvbmhpX3BlZG90X2hfYV9iZW5jaF9zaGVl -dC5tZFBLAQIUAxQAAAAIAAAAIVwZguYz9AQAACEMAABCAAAAAAAAAAAAAACkAZBwAABhdHRhY2htZW50cy9yZXBvcnRzL25oaV9wZWRvdF9oX2FfbWluaW11bV9tZWFzdXJlbWVudF9jaGVja2xpc3QubWRQSwECFAMUAAAACAAAACFcQxsWxdEGAAB0EwAAMQAAAAAAAAAAAAAApAHkdQAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfYWxnX2xhbV9wcm90b2NvbC5tZFBLAQIUAxQAAAAIAAAAIVwX3Jk1zQQAAFcOAAAwAAAAAAAAAAAAAACkAQR9AABhdHRhY2htZW50cy9kYXRhL25oaV9wZWRvdF9yZWNpcGVfbG9ja192MF8yLmpzb25QSwECFAMUAAAACAAAACFcidp3g8ACAAAaCgAAMgAAAAAAAAAAAAAApAEfggAAYXR0YWNobWVudHMvcmVwb3J0cy9uaGlfcGVkb3RfbmV4dF9tZWFzdXJlbWVudHMubWRQSwUGAAAAABYAFgByCAAAL4UAAAAA - ---===============4953287593533092104==-- diff --git a/data/nhi_pedot_h_a_rfq_outbox/rfq_outbox.csv b/data/nhi_pedot_h_a_rfq_outbox/rfq_outbox.csv deleted file mode 100644 index 2440175..0000000 --- a/data/nhi_pedot_h_a_rfq_outbox/rfq_outbox.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,source_url,subject,email_file,bundle_zip,bundle_bytes,bundle_sha256,attachment_count,send_status -materials_metric,Materials Metric,https://materialsmetric.com/,RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Materials Metric),data/nhi_pedot_h_a_rfq_outbox/emails/materials_metric_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip,36253,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,20,ready_to_send -the_osmolality_lab,The Osmolality Lab,https://theosmolalitylab.com/,RFQ: non-GLP acellular hydrogel-coupon H-A measurements (The Osmolality Lab),data/nhi_pedot_h_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip,36279,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,20,ready_to_send -cambridge_polymer_group_hydrogel,Cambridge Polymer Group,https://www.campoly.com/services/analytical-testing/material-characterization-techniques/hydrogel-characterization/,RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Cambridge Polymer Group),data/nhi_pedot_h_a_rfq_outbox/emails/cambridge_polymer_group_hydrogel_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip,36349,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,20,ready_to_send -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services,RFQ: non-GLP acellular hydrogel-coupon H-A measurements (MilliporeSigma Cell Culture Media Stability and Testing Services),data/nhi_pedot_h_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip,36340,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,20,ready_to_send diff --git a/data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip b/data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip deleted file mode 100644 index f912d38..0000000 Binary files a/data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip and /dev/null differ diff --git a/data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip b/data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip deleted file mode 100644 index 09850c3..0000000 Binary files a/data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip and /dev/null differ diff --git a/data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip b/data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip deleted file mode 100644 index 8997056..0000000 Binary files a/data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip and /dev/null differ diff --git a/data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip b/data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip deleted file mode 100644 index 6a21d2a..0000000 Binary files a/data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip and /dev/null differ diff --git a/data/nhi_pedot_h_a_rfq_outbox_manifest.json b/data/nhi_pedot_h_a_rfq_outbox_manifest.json deleted file mode 100644 index fc4a60d..0000000 --- a/data/nhi_pedot_h_a_rfq_outbox_manifest.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "attachment_count": 20, - "attachment_manifest": "data/nhi_pedot_h_a_rfq_outbox/attachment_manifest.csv", - "delivery_missing_required_file_ids": [], - "missing_attachment_paths": [], - "non_evidence_boundary": "RFQ emails, vendor capability replies, and quote packages are sourcing artifacts only. They do not count as material evidence until real returned measurements pass LIMINA QC.", - "outbox_csv": "data/nhi_pedot_h_a_rfq_outbox/rfq_outbox.csv", - "outbox_dir": "data/nhi_pedot_h_a_rfq_outbox", - "purpose": "Vendor-specific RFQ emails and zip bundles for sending the real NHI-PEDOT H-A measurement request.", - "quote_request_count": 4, - "ready_to_send_count": 4, - "rows": [ - { - "attachment_count": 20, - "bundle_bytes": 36253, - "bundle_sha256": "6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "materials_metric", - "email_file": "data/nhi_pedot_h_a_rfq_outbox/emails/materials_metric_rfq_email.txt", - "send_status": "ready_to_send", - "source_url": "https://materialsmetric.com/", - "subject": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Materials Metric)", - "vendor_name": "Materials Metric" - }, - { - "attachment_count": 20, - "bundle_bytes": 36279, - "bundle_sha256": "b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "the_osmolality_lab", - "email_file": "data/nhi_pedot_h_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt", - "send_status": "ready_to_send", - "source_url": "https://theosmolalitylab.com/", - "subject": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (The Osmolality Lab)", - "vendor_name": "The Osmolality Lab" - }, - { - "attachment_count": 20, - "bundle_bytes": 36349, - "bundle_sha256": "bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "cambridge_polymer_group_hydrogel", - "email_file": "data/nhi_pedot_h_a_rfq_outbox/emails/cambridge_polymer_group_hydrogel_rfq_email.txt", - "send_status": "ready_to_send", - "source_url": "https://www.campoly.com/services/analytical-testing/material-characterization-techniques/hydrogel-characterization/", - "subject": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Cambridge Polymer Group)", - "vendor_name": "Cambridge Polymer Group" - }, - { - "attachment_count": 20, - "bundle_bytes": 36340, - "bundle_sha256": "6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "sigmaaldrich_media_testing", - "email_file": "data/nhi_pedot_h_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt", - "send_status": "ready_to_send", - "source_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "subject": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (MilliporeSigma Cell Culture Media Stability and Testing Services)", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - } - ], - "send_steps": [ - "Open the vendor-specific email text file.", - "Attach the matching vendor zip bundle.", - "Send to the vendor or collaborator through the user's email account.", - "Record contact_date in data/nhi_pedot_h_a_quote_tracker.csv.", - "Paste any reply into the quote tracker before selecting an execution path." - ], - "status": "ready_to_send_outbox" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_rfq_packet.json b/data/nhi_pedot_h_a_rfq_packet.json deleted file mode 100644 index dc0cc96..0000000 --- a/data/nhi_pedot_h_a_rfq_packet.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "attachment_paths": [ - "reports/nhi_pedot_h_a_service_request.md", - "data/nhi_pedot_h_a_raw_measurements_template.csv", - "data/nhi_pedot_h_a_bundle_entry_sheet.csv", - "reports/nhi_pedot_h_a_bundle_entry_sheet.md", - "data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv", - "reports/nhi_pedot_h_a_source_unlock_pack.md", - "reports/nhi_pedot_h_a_sentinel_packet.md", - "data/nhi_pedot_h_a_sentinel_sample_manifest.csv", - "data/nhi_pedot_h_a_sample_labels.csv", - "data/nhi_pedot_h_a_chain_of_custody.csv", - "reports/nhi_pedot_h_a_chain_of_custody.md", - "reports/nhi_pedot_h_a_sample_submission_pack.md", - "reports/nhi_pedot_h_a_split_scope_plan.md", - "data/nhi_pedot_h_a_split_scope_plan.csv", - "data/nhi_pedot_h_a_material_disclosure.csv", - "reports/nhi_pedot_h_a_bench_sheet.md", - "reports/nhi_pedot_h_a_minimum_measurement_checklist.md", - "reports/nhi_pedot_alg_lam_protocol.md", - "data/nhi_pedot_recipe_lock_v0_2.json", - "reports/nhi_pedot_next_measurements.md" - ], - "disqualifiers": [ - "Only returns pooled averages or narrative pass/fail certificates.", - "Will not preserve run_id, sample_event, and target_field mapping.", - "Cannot return source files or raw exports for provenance.", - "Requires replacing the requested material stack or timepoints without a documented deviation log.", - "Treats vendor capability claims as final material suitability evidence." - ], - "non_claim_boundary": "Vendor capability claims do not count as material evidence. Only returned real run-level measurements that pass LIMINA QC and claim audit can advance the material.", - "purpose": "Per-candidate RFQ material for obtaining real NHI-PEDOT H-A measurements.", - "quote_requests": [ - { - "candidate_id": "materials_metric", - "email_body": "Hello Materials Metric team,\n\nI am requesting a feasibility review and non-GLP R&D quote for a small acellular biomaterials measurement package.\n\nStudy summary:\n- Active material route: limina_alg_lam_pedot_lowdose_v0_2\n- Runs: 12\n- Raw measurement entries requested: 228\n- Articles: no-coating control, alginate-laminin hydrogel control, low-loading ALG-LAM-PEDOT lead, high-loading boundary comparator\n- Timepoints: 0 h, 24 h, 72 h\n- Required outputs: sample-level pH, osmolality, conductivity, visible precipitate, visible shedding, swelling fraction, delamination score, optical transparency fraction, raw exports/images, and chain-of-custody by run_id\n\nImportant constraint: we need one result per provided run_id/sample_event/target_field. Pooled averages or narrative certificates alone will not satisfy the study. The compact bundle entry sheet is preferred when one raw export/report supports multiple values.\n\nCould you please confirm:\n- Can they execute the entire 12-run H-A service request as a custom R&D study?\n- Can they include pH, osmolality, and conductivity, or should media tests be subcontracted?\n- Can they return raw exports plus chain-of-custody by run_id?\n- Whether you can fill or accept the provided raw-measurement CSV or compact bundle-entry CSV schema without changing column names\n- Minimum sample volume/coupon count requirements\n- Expected turnaround time, quote range, and any sample-prep constraints\n\nAttached/package files to review:\n- reports/nhi_pedot_h_a_service_request.md\n- data/nhi_pedot_h_a_raw_measurements_template.csv\n- data/nhi_pedot_h_a_bundle_entry_sheet.csv\n- reports/nhi_pedot_h_a_bundle_entry_sheet.md\n- data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv\n- reports/nhi_pedot_h_a_source_unlock_pack.md\n- reports/nhi_pedot_h_a_sentinel_packet.md\n- data/nhi_pedot_h_a_sentinel_sample_manifest.csv\n- data/nhi_pedot_h_a_sample_labels.csv\n- data/nhi_pedot_h_a_chain_of_custody.csv\n- reports/nhi_pedot_h_a_chain_of_custody.md\n- reports/nhi_pedot_h_a_sample_submission_pack.md\n- reports/nhi_pedot_h_a_split_scope_plan.md\n- data/nhi_pedot_h_a_split_scope_plan.csv\n- data/nhi_pedot_h_a_material_disclosure.csv\n- reports/nhi_pedot_h_a_bench_sheet.md\n- reports/nhi_pedot_h_a_minimum_measurement_checklist.md\n- reports/nhi_pedot_alg_lam_protocol.md\n- data/nhi_pedot_recipe_lock_v0_2.json\n- reports/nhi_pedot_next_measurements.md\n\nThis is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal QC gates.\n\nThank you.", - "name": "Materials Metric", - "scope_instruction": "Ask whether they can execute the full H-A package or pair with a media physicochemical lab.", - "service_type": "custom_biomaterials_characterization", - "source_url": "https://materialsmetric.com/", - "subject": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Materials Metric)", - "unknowns_to_resolve": [ - "Can they execute the entire 12-run H-A service request as a custom R&D study?", - "Can they include pH, osmolality, and conductivity, or should media tests be subcontracted?", - "Can they return raw exports plus chain-of-custody by run_id?" - ] - }, - { - "candidate_id": "the_osmolality_lab", - "email_body": "Hello The Osmolality Lab team,\n\nI am requesting a feasibility review and non-GLP R&D quote for a small acellular biomaterials measurement package.\n\nStudy summary:\n- Active material route: limina_alg_lam_pedot_lowdose_v0_2\n- Runs: 12\n- Raw measurement entries requested: 228\n- Articles: no-coating control, alginate-laminin hydrogel control, low-loading ALG-LAM-PEDOT lead, high-loading boundary comparator\n- Timepoints: 0 h, 24 h, 72 h\n- Required outputs: sample-level pH, osmolality, conductivity, visible precipitate, visible shedding, swelling fraction, delamination score, optical transparency fraction, raw exports/images, and chain-of-custody by run_id\n\nImportant constraint: we need one result per provided run_id/sample_event/target_field. Pooled averages or narrative certificates alone will not satisfy the study. The compact bundle entry sheet is preferred when one raw export/report supports multiple values.\n\nCould you please confirm:\n- Can they run matched pre/post aliquots from 37 C acellular neural-medium soaks?\n- Can they preserve one result per LIMINA run_id rather than batch averages?\n- Can they accept PEDOT:PSS/alginate/laminin soak media as nonclinical R&D samples?\n- Whether you can fill or accept the provided raw-measurement CSV or compact bundle-entry CSV schema without changing column names\n- Minimum sample volume/coupon count requirements\n- Expected turnaround time, quote range, and any sample-prep constraints\n\nAttached/package files to review:\n- reports/nhi_pedot_h_a_service_request.md\n- data/nhi_pedot_h_a_raw_measurements_template.csv\n- data/nhi_pedot_h_a_bundle_entry_sheet.csv\n- reports/nhi_pedot_h_a_bundle_entry_sheet.md\n- data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv\n- reports/nhi_pedot_h_a_source_unlock_pack.md\n- reports/nhi_pedot_h_a_sentinel_packet.md\n- data/nhi_pedot_h_a_sentinel_sample_manifest.csv\n- data/nhi_pedot_h_a_sample_labels.csv\n- data/nhi_pedot_h_a_chain_of_custody.csv\n- reports/nhi_pedot_h_a_chain_of_custody.md\n- reports/nhi_pedot_h_a_sample_submission_pack.md\n- reports/nhi_pedot_h_a_split_scope_plan.md\n- data/nhi_pedot_h_a_split_scope_plan.csv\n- data/nhi_pedot_h_a_material_disclosure.csv\n- reports/nhi_pedot_h_a_bench_sheet.md\n- reports/nhi_pedot_h_a_minimum_measurement_checklist.md\n- reports/nhi_pedot_alg_lam_protocol.md\n- data/nhi_pedot_recipe_lock_v0_2.json\n- reports/nhi_pedot_next_measurements.md\n\nThis is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal QC gates.\n\nThank you.", - "name": "The Osmolality Lab", - "scope_instruction": "Ask for pH/osmolality/conductivity on all pre/post aliquots and whether they can add appearance/clarity notes.", - "service_type": "media_physicochemical_testing", - "source_url": "https://theosmolalitylab.com/", - "subject": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (The Osmolality Lab)", - "unknowns_to_resolve": [ - "Can they run matched pre/post aliquots from 37 C acellular neural-medium soaks?", - "Can they preserve one result per LIMINA run_id rather than batch averages?", - "Can they accept PEDOT:PSS/alginate/laminin soak media as nonclinical R&D samples?" - ] - }, - { - "candidate_id": "cambridge_polymer_group_hydrogel", - "email_body": "Hello Cambridge Polymer Group team,\n\nI am requesting a feasibility review and non-GLP R&D quote for a small acellular biomaterials measurement package.\n\nStudy summary:\n- Active material route: limina_alg_lam_pedot_lowdose_v0_2\n- Runs: 12\n- Raw measurement entries requested: 228\n- Articles: no-coating control, alginate-laminin hydrogel control, low-loading ALG-LAM-PEDOT lead, high-loading boundary comparator\n- Timepoints: 0 h, 24 h, 72 h\n- Required outputs: sample-level pH, osmolality, conductivity, visible precipitate, visible shedding, swelling fraction, delamination score, optical transparency fraction, raw exports/images, and chain-of-custody by run_id\n\nImportant constraint: we need one result per provided run_id/sample_event/target_field. Pooled averages or narrative certificates alone will not satisfy the study. The compact bundle entry sheet is preferred when one raw export/report supports multiple values.\n\nCould you please confirm:\n- Can they do simple optical transparency and delamination scoring on MEA witness coupons?\n- Can they handle hydrated alginate-laminin-PEDOT:PSS coupons under culture-medium timing?\n- Can they pair physical scoring with pH/osmolality/conductivity or only coupon characterization?\n- Whether you can fill or accept the provided raw-measurement CSV or compact bundle-entry CSV schema without changing column names\n- Minimum sample volume/coupon count requirements\n- Expected turnaround time, quote range, and any sample-prep constraints\n\nAttached/package files to review:\n- reports/nhi_pedot_h_a_service_request.md\n- data/nhi_pedot_h_a_raw_measurements_template.csv\n- data/nhi_pedot_h_a_bundle_entry_sheet.csv\n- reports/nhi_pedot_h_a_bundle_entry_sheet.md\n- data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv\n- reports/nhi_pedot_h_a_source_unlock_pack.md\n- reports/nhi_pedot_h_a_sentinel_packet.md\n- data/nhi_pedot_h_a_sentinel_sample_manifest.csv\n- data/nhi_pedot_h_a_sample_labels.csv\n- data/nhi_pedot_h_a_chain_of_custody.csv\n- reports/nhi_pedot_h_a_chain_of_custody.md\n- reports/nhi_pedot_h_a_sample_submission_pack.md\n- reports/nhi_pedot_h_a_split_scope_plan.md\n- data/nhi_pedot_h_a_split_scope_plan.csv\n- data/nhi_pedot_h_a_material_disclosure.csv\n- reports/nhi_pedot_h_a_bench_sheet.md\n- reports/nhi_pedot_h_a_minimum_measurement_checklist.md\n- reports/nhi_pedot_alg_lam_protocol.md\n- data/nhi_pedot_recipe_lock_v0_2.json\n- reports/nhi_pedot_next_measurements.md\n\nThis is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal QC gates.\n\nThank you.", - "name": "Cambridge Polymer Group", - "scope_instruction": "Ask whether they can execute the full H-A package or pair with a media physicochemical lab.", - "service_type": "hydrogel_characterization", - "source_url": "https://www.campoly.com/services/analytical-testing/material-characterization-techniques/hydrogel-characterization/", - "subject": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (Cambridge Polymer Group)", - "unknowns_to_resolve": [ - "Can they do simple optical transparency and delamination scoring on MEA witness coupons?", - "Can they handle hydrated alginate-laminin-PEDOT:PSS coupons under culture-medium timing?", - "Can they pair physical scoring with pH/osmolality/conductivity or only coupon characterization?" - ] - }, - { - "candidate_id": "sigmaaldrich_media_testing", - "email_body": "Hello MilliporeSigma Cell Culture Media Stability and Testing Services team,\n\nI am requesting a feasibility review and non-GLP R&D quote for a small acellular biomaterials measurement package.\n\nStudy summary:\n- Active material route: limina_alg_lam_pedot_lowdose_v0_2\n- Runs: 12\n- Raw measurement entries requested: 228\n- Articles: no-coating control, alginate-laminin hydrogel control, low-loading ALG-LAM-PEDOT lead, high-loading boundary comparator\n- Timepoints: 0 h, 24 h, 72 h\n- Required outputs: sample-level pH, osmolality, conductivity, visible precipitate, visible shedding, swelling fraction, delamination score, optical transparency fraction, raw exports/images, and chain-of-custody by run_id\n\nImportant constraint: we need one result per provided run_id/sample_event/target_field. Pooled averages or narrative certificates alone will not satisfy the study. The compact bundle entry sheet is preferred when one raw export/report supports multiple values.\n\nCould you please confirm:\n- Can conductivity be added to the report?\n- Can the service handle customer-prepared hydrogel coupon soak media rather than only standard media lots?\n- Can they return raw sample-level values in the LIMINA CSV schema?\n- Whether you can fill or accept the provided raw-measurement CSV or compact bundle-entry CSV schema without changing column names\n- Minimum sample volume/coupon count requirements\n- Expected turnaround time, quote range, and any sample-prep constraints\n\nAttached/package files to review:\n- reports/nhi_pedot_h_a_service_request.md\n- data/nhi_pedot_h_a_raw_measurements_template.csv\n- data/nhi_pedot_h_a_bundle_entry_sheet.csv\n- reports/nhi_pedot_h_a_bundle_entry_sheet.md\n- data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv\n- reports/nhi_pedot_h_a_source_unlock_pack.md\n- reports/nhi_pedot_h_a_sentinel_packet.md\n- data/nhi_pedot_h_a_sentinel_sample_manifest.csv\n- data/nhi_pedot_h_a_sample_labels.csv\n- data/nhi_pedot_h_a_chain_of_custody.csv\n- reports/nhi_pedot_h_a_chain_of_custody.md\n- reports/nhi_pedot_h_a_sample_submission_pack.md\n- reports/nhi_pedot_h_a_split_scope_plan.md\n- data/nhi_pedot_h_a_split_scope_plan.csv\n- data/nhi_pedot_h_a_material_disclosure.csv\n- reports/nhi_pedot_h_a_bench_sheet.md\n- reports/nhi_pedot_h_a_minimum_measurement_checklist.md\n- reports/nhi_pedot_alg_lam_protocol.md\n- data/nhi_pedot_recipe_lock_v0_2.json\n- reports/nhi_pedot_next_measurements.md\n\nThis is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal QC gates.\n\nThank you.", - "name": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "scope_instruction": "Ask for pH/osmolality/conductivity on all pre/post aliquots and whether they can add appearance/clarity notes.", - "service_type": "cell_culture_media_testing", - "source_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "subject": "RFQ: non-GLP acellular hydrogel-coupon H-A measurements (MilliporeSigma Cell Culture Media Stability and Testing Services)", - "unknowns_to_resolve": [ - "Can conductivity be added to the report?", - "Can the service handle customer-prepared hydrogel coupon soak media rather than only standard media lots?", - "Can they return raw sample-level values in the LIMINA CSV schema?" - ] - } - ], - "scorecard_columns": [ - "candidate_id", - "contact_date", - "reply_date", - "can_cover_full_h_a", - "needs_split_scope", - "run_id_level_raw_data", - "media_physicochemical_coverage", - "coupon_physical_coverage", - "csv_schema_acceptance", - "bundle_entry_sheet_acceptance", - "sample_handling_fit", - "turnaround_days", - "quoted_cost", - "decision", - "notes" - ], - "scoring_rubric": [ - { - "criterion": "run_id_level_raw_data", - "pass_condition": "Vendor accepts one result per run_id/sample_event/target_field and does not require pooled reporting.", - "weight": 5 - }, - { - "criterion": "media_physicochemical_coverage", - "pass_condition": "Vendor can report pH, osmolality, and conductivity before/after the requested timepoints, or clearly names a partner/subcontract path.", - "weight": 4 - }, - { - "criterion": "coupon_physical_coverage", - "pass_condition": "Vendor can report swelling fraction, visible precipitate, shedding, delamination score, optical transparency, and supporting images.", - "weight": 4 - }, - { - "criterion": "csv_schema_acceptance", - "pass_condition": "Vendor can fill or accept either the LIMINA raw-measurement CSV or the compact bundle-entry CSV without changing column names.", - "weight": 4 - }, - { - "criterion": "bundle_entry_sheet_acceptance", - "pass_condition": "Vendor can use the compact one-row-per-source-file bundle sheet when one raw export/report supports multiple values.", - "weight": 2 - }, - { - "criterion": "sample_handling_fit", - "pass_condition": "Vendor can handle neural medium, alginate/laminin/PEDOT:PSS coupons, 37 C timing, and chain-of-custody constraints.", - "weight": 3 - }, - { - "criterion": "turnaround_and_cost", - "pass_condition": "Vendor can provide a practical R&D quote and turnaround for the 12-run/228-entry package.", - "weight": 2 - }, - { - "criterion": "non_glp_scope_control", - "pass_condition": "Vendor can keep the first pass as exploratory R&D and not force a full GLP/ISO program before H-A.", - "weight": 2 - } - ], - "status": "ready_to_send_rfq" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_rfq_reply_action_pack.json b/data/nhi_pedot_h_a_rfq_reply_action_pack.json deleted file mode 100644 index 4955b4c..0000000 --- a/data/nhi_pedot_h_a_rfq_reply_action_pack.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "boundary": "This reply action pack is sourcing logistics only. Vendor replies and quotes can authorize execution, but only returned measurement files can become material evidence.", - "generated_artifacts": { - "csv": "data/nhi_pedot_h_a_rfq_reply_action_queue.csv", - "json": "data/nhi_pedot_h_a_rfq_reply_action_pack.json", - "report": "reports/nhi_pedot_h_a_rfq_reply_action_pack.md", - "template_dir": "data/rfq_reply_review_templates/h_a" - }, - "inputs": { - "reply_log": "data/nhi_pedot_h_a_rfq_reply_log.csv", - "send_log": "data/nhi_pedot_h_a_rfq_send_log.csv", - "tracker": "data/nhi_pedot_h_a_quote_tracker.csv" - }, - "purpose": "Action queue for preserving source-backed vendor replies and turning them into provider-selection inputs.", - "status": "h_a_rfq_reply_action_pack_waiting_for_send", - "summary": { - "action_rows": 4, - "awaiting_reply_rows": 0, - "ready_for_reply_log_apply_rows": 0, - "received_needs_review_fields_rows": 0, - "received_needs_source_file_rows": 0, - "status_counts": { - "waiting_for_rfq_send": 4 - }, - "waiting_for_send_rows": 4 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_rfq_reply_action_queue.csv b/data/nhi_pedot_h_a_rfq_reply_action_queue.csv deleted file mode 100644 index f1e9239..0000000 --- a/data/nhi_pedot_h_a_rfq_reply_action_queue.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,reply_action_status,send_status,sent_at,tracker_contact_date,reply_status,reply_at,reply_source_file_to_save,reply_template,required_review_fields,hard_required_fields,missing_review_fields,selection_decision,quoted_cost,turnaround_days,next_action -materials_metric,Materials Metric,waiting_for_rfq_send,pending_send,,,not_sent_yet,,data/rfq_reply_files/h_a/materials_metric_reply.txt,data/rfq_reply_review_templates/h_a/materials_metric_reply_review_template.md,can_cover_full_h_a;needs_split_scope;run_id_level_raw_data;media_physicochemical_coverage;coupon_physical_coverage;csv_schema_acceptance;bundle_entry_sheet_acceptance;sample_handling_fit;non_glp_scope_control,run_id_level_raw_data;csv_schema_acceptance;sample_handling_fit;non_glp_scope_control,can_cover_full_h_a;needs_split_scope;run_id_level_raw_data;media_physicochemical_coverage;coupon_physical_coverage;csv_schema_acceptance;bundle_entry_sheet_acceptance;sample_handling_fit;non_glp_scope_control,pending_outreach,,,"Send the RFQ first, then save a real send confirmation and apply the send log." -the_osmolality_lab,The Osmolality Lab,waiting_for_rfq_send,pending_send,,,not_sent_yet,,data/rfq_reply_files/h_a/the_osmolality_lab_reply.txt,data/rfq_reply_review_templates/h_a/the_osmolality_lab_reply_review_template.md,can_cover_full_h_a;needs_split_scope;run_id_level_raw_data;media_physicochemical_coverage;coupon_physical_coverage;csv_schema_acceptance;bundle_entry_sheet_acceptance;sample_handling_fit;non_glp_scope_control,run_id_level_raw_data;csv_schema_acceptance;sample_handling_fit;non_glp_scope_control,can_cover_full_h_a;needs_split_scope;run_id_level_raw_data;media_physicochemical_coverage;coupon_physical_coverage;csv_schema_acceptance;bundle_entry_sheet_acceptance;sample_handling_fit;non_glp_scope_control,pending_outreach,,,"Send the RFQ first, then save a real send confirmation and apply the send log." -cambridge_polymer_group_hydrogel,Cambridge Polymer Group,waiting_for_rfq_send,pending_send,,,not_sent_yet,,data/rfq_reply_files/h_a/cambridge_polymer_group_hydrogel_reply.txt,data/rfq_reply_review_templates/h_a/cambridge_polymer_group_hydrogel_reply_review_template.md,can_cover_full_h_a;needs_split_scope;run_id_level_raw_data;media_physicochemical_coverage;coupon_physical_coverage;csv_schema_acceptance;bundle_entry_sheet_acceptance;sample_handling_fit;non_glp_scope_control,run_id_level_raw_data;csv_schema_acceptance;sample_handling_fit;non_glp_scope_control,can_cover_full_h_a;needs_split_scope;run_id_level_raw_data;media_physicochemical_coverage;coupon_physical_coverage;csv_schema_acceptance;bundle_entry_sheet_acceptance;sample_handling_fit;non_glp_scope_control,pending_outreach,,,"Send the RFQ first, then save a real send confirmation and apply the send log." -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,waiting_for_rfq_send,pending_send,,,not_sent_yet,,data/rfq_reply_files/h_a/sigmaaldrich_media_testing_reply.txt,data/rfq_reply_review_templates/h_a/sigmaaldrich_media_testing_reply_review_template.md,can_cover_full_h_a;needs_split_scope;run_id_level_raw_data;media_physicochemical_coverage;coupon_physical_coverage;csv_schema_acceptance;bundle_entry_sheet_acceptance;sample_handling_fit;non_glp_scope_control,run_id_level_raw_data;csv_schema_acceptance;sample_handling_fit;non_glp_scope_control,can_cover_full_h_a;needs_split_scope;run_id_level_raw_data;media_physicochemical_coverage;coupon_physical_coverage;csv_schema_acceptance;bundle_entry_sheet_acceptance;sample_handling_fit;non_glp_scope_control,pending_outreach,,,"Send the RFQ first, then save a real send confirmation and apply the send log." diff --git a/data/nhi_pedot_h_a_rfq_reply_intake.csv b/data/nhi_pedot_h_a_rfq_reply_intake.csv deleted file mode 100644 index 385c2be..0000000 --- a/data/nhi_pedot_h_a_rfq_reply_intake.csv +++ /dev/null @@ -1 +0,0 @@ -candidate_id,vendor_name,reply_file,reply_sha256,detected_by,file_type,from_address,to_address,subject,reply_at,message_id_or_reference,send_verified,intake_status,applied_to_reply_log,boundary diff --git a/data/nhi_pedot_h_a_rfq_reply_intake.json b/data/nhi_pedot_h_a_rfq_reply_intake.json deleted file mode 100644 index e8de180..0000000 --- a/data/nhi_pedot_h_a_rfq_reply_intake.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "applied_rows": 0, - "boundary": "RFQ replies and quotes document sourcing and execution selection only. They are not material measurement evidence and cannot advance suitability gates without returned measured rows.", - "intake_csv": "data/nhi_pedot_h_a_rfq_reply_intake.csv", - "label": "NHI-PEDOT H-A", - "needs_manual_review_rows": 0, - "needs_verified_send_rows": 0, - "profile": "h_a", - "purpose": "Scan original RFQ reply files and conservatively register sent EML replies for human review without scoring or selecting providers.", - "ready_to_register_rows": 0, - "reply_file_dir": "data/rfq_reply_files/h_a", - "reply_log_csv": "data/nhi_pedot_h_a_rfq_reply_log.csv", - "row_count": 0, - "rows": [], - "status": "nhi_pedot_h_a_rfq_reply_intake_waiting_for_reply_files", - "tracker_field_count": 17, - "unmatched_rows": 0 -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_rfq_reply_log.csv b/data/nhi_pedot_h_a_rfq_reply_log.csv deleted file mode 100644 index 9b18fba..0000000 --- a/data/nhi_pedot_h_a_rfq_reply_log.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,reply_status,reply_at,responder_name,quote_id_or_reference,reply_source_file,reply_source_sha256,computed_reply_source_sha256,can_cover_full_h_a,needs_split_scope,run_id_level_raw_data,media_physicochemical_coverage,coupon_physical_coverage,csv_schema_acceptance,bundle_entry_sheet_acceptance,sample_handling_fit,non_glp_scope_control,turnaround_days,quoted_cost,decision,notes,tracker_contact_date,tracker_reply_date,tracker_decision -materials_metric,Materials Metric,not_sent_yet,,,,data/rfq_reply_files/h_a/materials_metric_reply.txt,,,,,,,,,,,,,,,,,,pending_outreach -the_osmolality_lab,The Osmolality Lab,not_sent_yet,,,,data/rfq_reply_files/h_a/the_osmolality_lab_reply.txt,,,,,,,,,,,,,,,,,,pending_outreach -cambridge_polymer_group_hydrogel,Cambridge Polymer Group,not_sent_yet,,,,data/rfq_reply_files/h_a/cambridge_polymer_group_hydrogel_reply.txt,,,,,,,,,,,,,,,,,,pending_outreach -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,not_sent_yet,,,,data/rfq_reply_files/h_a/sigmaaldrich_media_testing_reply.txt,,,,,,,,,,,,,,,,,,pending_outreach diff --git a/data/nhi_pedot_h_a_rfq_reply_log.json b/data/nhi_pedot_h_a_rfq_reply_log.json deleted file mode 100644 index d188475..0000000 --- a/data/nhi_pedot_h_a_rfq_reply_log.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "applied_tracker_field_updates": 0, - "error_count": 0, - "errors": [], - "field_contract": { - "hash_rule": "If reply_source_sha256 is supplied, it must match the current SHA-256 of reply_source_file.", - "reply_status_values": [ - "awaiting_reply", - "cannot_quote", - "clarification_received", - "declined", - "needs_clarification", - "no_reply", - "not_sent_yet", - "out_of_scope", - "pending_reply", - "quote_received", - "received", - "reply_received" - ], - "required_when_declined": [ - "reply_at", - "responder_name", - "reply_source_file" - ], - "required_when_received": [ - "reply_at", - "responder_name", - "reply_source_file", - "can_cover_full_h_a", - "needs_split_scope", - "run_id_level_raw_data", - "media_physicochemical_coverage", - "coupon_physical_coverage", - "csv_schema_acceptance", - "bundle_entry_sheet_acceptance", - "sample_handling_fit", - "non_glp_scope_control" - ] - }, - "hard_required_fields": [ - "run_id_level_raw_data", - "csv_schema_acceptance", - "sample_handling_fit", - "non_glp_scope_control" - ], - "label": "NHI-PEDOT H-A", - "non_evidence_boundary": "RFQ reply logs and quote trackers document sourcing and execution selection only. They are not material evidence and cannot advance suitability gates without returned measured rows.", - "pending_rows": 4, - "profile": "h_a", - "purpose": "Track source-backed RFQ replies and safely apply parsed reply fields to the quote tracker.", - "received_rows": 0, - "reply_file_dir": "data/rfq_reply_files/h_a", - "reply_file_readme": "data/rfq_reply_files/h_a/README.md", - "reply_log_csv": "data/nhi_pedot_h_a_rfq_reply_log.csv", - "review_fields": [ - "can_cover_full_h_a", - "needs_split_scope", - "run_id_level_raw_data", - "media_physicochemical_coverage", - "coupon_physical_coverage", - "csv_schema_acceptance", - "bundle_entry_sheet_acceptance", - "sample_handling_fit", - "non_glp_scope_control" - ], - "row_count": 4, - "status": "nhi_pedot_h_a_rfq_reply_log_waiting_for_reply_files", - "tracker_csv": "data/nhi_pedot_h_a_quote_tracker.csv", - "valid_reply_candidate_ids": [], - "valid_reply_rows": 0, - "valid_reply_summaries": [], - "warning_count": 0, - "warnings": [] -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_rfq_send_action_pack.json b/data/nhi_pedot_h_a_rfq_send_action_pack.json deleted file mode 100644 index 7b193a6..0000000 --- a/data/nhi_pedot_h_a_rfq_send_action_pack.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "boundary": "This send action pack is logistics scaffolding only. It must not be used as evidence; only real returned measurement files can advance H-A gates.", - "generated_artifacts": { - "csv": "data/nhi_pedot_h_a_rfq_send_action_queue.csv", - "json": "data/nhi_pedot_h_a_rfq_send_action_pack.json", - "report": "reports/nhi_pedot_h_a_rfq_send_action_pack.md", - "template_dir": "data/rfq_send_confirmation_templates/h_a" - }, - "inputs": { - "contact_plan": "data/nhi_pedot_h_a_vendor_contact_plan.json", - "eml_drafts": "data/nhi_pedot_h_a_rfq_eml_drafts.json", - "outbox": "data/nhi_pedot_h_a_rfq_outbox_manifest.json", - "send_log": "data/nhi_pedot_h_a_rfq_send_log.csv" - }, - "purpose": "One actionable checklist for sending first-wave NHI-PEDOT H-A RFQ bundles and recording real send confirmations.", - "status": "h_a_rfq_send_action_pack_ready", - "summary": { - "action_rows": 4, - "eml_draft_missing_rows": 0, - "eml_draft_ready_rows": 4, - "missing_outbox_file_rows": 0, - "ready_to_send_rows": 4, - "sent_confirmation_verified_rows": 0, - "sent_needs_confirmation_rows": 0, - "status_counts": { - "ready_to_send": 4 - } - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_rfq_send_action_queue.csv b/data/nhi_pedot_h_a_rfq_send_action_queue.csv deleted file mode 100644 index 6c90bc7..0000000 --- a/data/nhi_pedot_h_a_rfq_send_action_queue.csv +++ /dev/null @@ -1,5 +0,0 @@ -send_order,candidate_id,vendor_name,send_action_status,primary_send_method,recipient_or_form,contact_url,quote_url,email_file,eml_draft_file,eml_draft_status,bundle_zip,bundle_sha256,attachment_count,send_log_csv,send_log_status,sent_at,confirmation_source_file_to_save,confirmation_template,sent_bundle_sha256_to_record,tracker_contact_date,tracker_reply_date,next_action -1,materials_metric,Materials Metric,ready_to_send,email_or_request_service_form,info@materialsmetric.com,https://materialsmetric.com/contact-us/,https://materialsmetric.com/contact-us/,data/nhi_pedot_h_a_rfq_outbox/emails/materials_metric_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml,ready_to_open,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,20,data/nhi_pedot_h_a_rfq_send_log.csv,pending_send,,data/rfq_send_confirmation_files/h_a/materials_metric_send_confirmation.txt,data/rfq_send_confirmation_templates/h_a/materials_metric_send_confirmation_template.md,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,,,"Open the prepared .eml draft, review recipient/body/attached bundle, send manually, save the original confirmation, then run send-confirmation intake." -2,the_osmolality_lab,The Osmolality Lab,ready_to_send,email_or_contact_form,info@osmolab.com,https://theosmolalitylab.com/contact-us/,https://theosmolalitylab.com/contact-us/,data/nhi_pedot_h_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml,ready_to_open,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,20,data/nhi_pedot_h_a_rfq_send_log.csv,pending_send,,data/rfq_send_confirmation_files/h_a/the_osmolality_lab_send_confirmation.txt,data/rfq_send_confirmation_templates/h_a/the_osmolality_lab_send_confirmation_template.md,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,,,"Open the prepared .eml draft, review recipient/body/attached bundle, send manually, save the original confirmation, then run send-confirmation intake." -3,cambridge_polymer_group_hydrogel,Cambridge Polymer Group,ready_to_send,request_quote_form_or_email,info@campoly.com,https://www.campoly.com/contact-us/,https://quote.campoly.com/material-testing/,data/nhi_pedot_h_a_rfq_outbox/emails/cambridge_polymer_group_hydrogel_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml,ready_to_open,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,20,data/nhi_pedot_h_a_rfq_send_log.csv,pending_send,,data/rfq_send_confirmation_files/h_a/cambridge_polymer_group_hydrogel_send_confirmation.txt,data/rfq_send_confirmation_templates/h_a/cambridge_polymer_group_hydrogel_send_confirmation_template.md,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,,,"Open the prepared .eml draft, review recipient/body/attached bundle, send manually, save the original confirmation, then run send-confirmation intake." -4,sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,ready_to_send,service_page_or_technical_service,PSTechService@milliporesigma.com,https://www.sigmaaldrich.com/US/en/collections/offices,https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services,data/nhi_pedot_h_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml,ready_to_open,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,20,data/nhi_pedot_h_a_rfq_send_log.csv,pending_send,,data/rfq_send_confirmation_files/h_a/sigmaaldrich_media_testing_send_confirmation.txt,data/rfq_send_confirmation_templates/h_a/sigmaaldrich_media_testing_send_confirmation_template.md,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,,,"Open the prepared .eml draft, review recipient/body/attached bundle, send manually, save the original confirmation, then run send-confirmation intake." diff --git a/data/nhi_pedot_h_a_rfq_send_cockpit.json b/data/nhi_pedot_h_a_rfq_send_cockpit.json deleted file mode 100644 index 7f35022..0000000 --- a/data/nhi_pedot_h_a_rfq_send_cockpit.json +++ /dev/null @@ -1,168 +0,0 @@ -{ - "boundary": "This cockpit is logistics scaffolding only. It does not send email, create measurement evidence, select a provider, authorize execution, or advance material suitability gates.", - "generated_artifacts": { - "html": "reports/nhi_pedot_h_a_rfq_send_cockpit.html", - "json": "data/nhi_pedot_h_a_rfq_send_cockpit.json", - "report": "reports/nhi_pedot_h_a_rfq_send_cockpit.md" - }, - "inputs": { - "dispatch_manifest": "data/nhi_pedot_h_a_rfq_dispatch_manifest.json", - "eml_integrity_audit": "data/nhi_pedot_h_a_rfq_eml_integrity_audit.json", - "reply_action_pack": "data/nhi_pedot_h_a_rfq_reply_action_pack.json", - "reply_action_queue": "data/nhi_pedot_h_a_rfq_reply_action_queue.csv", - "reply_intake": "data/nhi_pedot_h_a_rfq_reply_intake.json", - "send_action_pack": "data/nhi_pedot_h_a_rfq_send_action_pack.json", - "send_action_queue": "data/nhi_pedot_h_a_rfq_send_action_queue.csv", - "send_confirmation_intake": "data/nhi_pedot_h_a_rfq_send_confirmation_intake.json" - }, - "next_commands": [ - "python3 scripts/intake_limina_rfq_send_confirmations.py --profile h_a", - "python3 scripts/apply_limina_rfq_send_log.py --profile h_a", - "python3 scripts/intake_limina_rfq_replies.py --profile h_a", - "python3 scripts/apply_limina_rfq_reply_log.py --profile h_a", - "python3 scripts/run_limina_iteration.py" - ], - "purpose": "Single local handoff surface for manually sending first-wave NHI-PEDOT H-A RFQ drafts and preserving real source confirmations.", - "rows": [ - { - "bundle_exists": true, - "bundle_sha256": "6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "materials_metric", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/h_a/materials_metric_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/h_a/materials_metric_send_confirmation_template.md", - "contact_url": "https://materialsmetric.com/contact-us/", - "dispatch_bundle_match": "true", - "dispatch_status": "ready_for_manual_dispatch", - "email_file": "data/nhi_pedot_h_a_rfq_outbox/emails/materials_metric_rfq_email.txt", - "eml_draft_exists": true, - "eml_draft_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/materials_metric_rfq_draft.eml", - "eml_integrity_attached_bundle": "true", - "eml_integrity_errors": "", - "eml_integrity_status": "pass", - "next_action": "Open the prepared .eml draft, review recipient/body/attached bundle, send manually, save the original confirmation, then run send-confirmation intake.", - "primary_send_method": "email_or_request_service_form", - "quote_url": "https://materialsmetric.com/contact-us/", - "recipient_or_form": "info@materialsmetric.com", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_next_action": "Send the RFQ first, then save a real send confirmation and apply the send log.", - "reply_source_file_to_save": "data/rfq_reply_files/h_a/materials_metric_reply.txt", - "reply_template": "data/rfq_reply_review_templates/h_a/materials_metric_reply_review_template.md", - "send_action_status": "ready_to_send", - "send_order": "1", - "vendor_name": "Materials Metric" - }, - { - "bundle_exists": true, - "bundle_sha256": "b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "the_osmolality_lab", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/h_a/the_osmolality_lab_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/h_a/the_osmolality_lab_send_confirmation_template.md", - "contact_url": "https://theosmolalitylab.com/contact-us/", - "dispatch_bundle_match": "true", - "dispatch_status": "ready_for_manual_dispatch", - "email_file": "data/nhi_pedot_h_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt", - "eml_draft_exists": true, - "eml_draft_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/the_osmolality_lab_rfq_draft.eml", - "eml_integrity_attached_bundle": "true", - "eml_integrity_errors": "", - "eml_integrity_status": "pass", - "next_action": "Open the prepared .eml draft, review recipient/body/attached bundle, send manually, save the original confirmation, then run send-confirmation intake.", - "primary_send_method": "email_or_contact_form", - "quote_url": "https://theosmolalitylab.com/contact-us/", - "recipient_or_form": "info@osmolab.com", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_next_action": "Send the RFQ first, then save a real send confirmation and apply the send log.", - "reply_source_file_to_save": "data/rfq_reply_files/h_a/the_osmolality_lab_reply.txt", - "reply_template": "data/rfq_reply_review_templates/h_a/the_osmolality_lab_reply_review_template.md", - "send_action_status": "ready_to_send", - "send_order": "2", - "vendor_name": "The Osmolality Lab" - }, - { - "bundle_exists": true, - "bundle_sha256": "bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "cambridge_polymer_group_hydrogel", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/h_a/cambridge_polymer_group_hydrogel_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/h_a/cambridge_polymer_group_hydrogel_send_confirmation_template.md", - "contact_url": "https://www.campoly.com/contact-us/", - "dispatch_bundle_match": "true", - "dispatch_status": "ready_for_manual_dispatch", - "email_file": "data/nhi_pedot_h_a_rfq_outbox/emails/cambridge_polymer_group_hydrogel_rfq_email.txt", - "eml_draft_exists": true, - "eml_draft_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/cambridge_polymer_group_hydrogel_rfq_draft.eml", - "eml_integrity_attached_bundle": "true", - "eml_integrity_errors": "", - "eml_integrity_status": "pass", - "next_action": "Open the prepared .eml draft, review recipient/body/attached bundle, send manually, save the original confirmation, then run send-confirmation intake.", - "primary_send_method": "request_quote_form_or_email", - "quote_url": "https://quote.campoly.com/material-testing/", - "recipient_or_form": "info@campoly.com", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_next_action": "Send the RFQ first, then save a real send confirmation and apply the send log.", - "reply_source_file_to_save": "data/rfq_reply_files/h_a/cambridge_polymer_group_hydrogel_reply.txt", - "reply_template": "data/rfq_reply_review_templates/h_a/cambridge_polymer_group_hydrogel_reply_review_template.md", - "send_action_status": "ready_to_send", - "send_order": "3", - "vendor_name": "Cambridge Polymer Group" - }, - { - "bundle_exists": true, - "bundle_sha256": "6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "sigmaaldrich_media_testing", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/h_a/sigmaaldrich_media_testing_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/h_a/sigmaaldrich_media_testing_send_confirmation_template.md", - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "dispatch_bundle_match": "true", - "dispatch_status": "ready_for_manual_dispatch", - "email_file": "data/nhi_pedot_h_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt", - "eml_draft_exists": true, - "eml_draft_file": "data/nhi_pedot_h_a_rfq_outbox/eml_drafts/sigmaaldrich_media_testing_rfq_draft.eml", - "eml_integrity_attached_bundle": "true", - "eml_integrity_errors": "", - "eml_integrity_status": "pass", - "next_action": "Open the prepared .eml draft, review recipient/body/attached bundle, send manually, save the original confirmation, then run send-confirmation intake.", - "primary_send_method": "service_page_or_technical_service", - "quote_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "recipient_or_form": "PSTechService@milliporesigma.com", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_next_action": "Send the RFQ first, then save a real send confirmation and apply the send log.", - "reply_source_file_to_save": "data/rfq_reply_files/h_a/sigmaaldrich_media_testing_reply.txt", - "reply_template": "data/rfq_reply_review_templates/h_a/sigmaaldrich_media_testing_reply_review_template.md", - "send_action_status": "ready_to_send", - "send_order": "4", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - } - ], - "status": "h_a_rfq_send_cockpit_ready_for_manual_send", - "summary": { - "confirmation_files_present": 0, - "dispatch_manifest_blocked_rows": 0, - "dispatch_manifest_ready_rows": 4, - "dispatch_manifest_status": "h_a_rfq_dispatch_manifest_ready", - "eml_integrity_fail_rows": 0, - "eml_integrity_pass_rows": 4, - "eml_integrity_status": "h_a_rfq_eml_integrity_ready", - "missing_bundle_rows": 0, - "missing_eml_rows": 0, - "ready_to_use_rows": 4, - "reply_files_present": 0, - "reply_intake_files": 0, - "reply_intake_status": "nhi_pedot_h_a_rfq_reply_intake_waiting_for_reply_files", - "send_confirmation_intake_files": 0, - "send_confirmation_intake_status": "nhi_pedot_h_a_rfq_send_confirmation_intake_waiting_for_confirmation_files", - "sent_confirmation_verified_rows": 0, - "vendor_rows": 4 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.json b/data/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.json deleted file mode 100644 index 3cbea24..0000000 --- a/data/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "boundary": "Applying RFQ send-confirmation entries updates outreach logistics only. It does not create measurement evidence or advance material suitability gates.", - "generated_artifacts": { - "json": "data/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.json", - "report": "reports/nhi_pedot_h_a_rfq_send_confirmation_entry_apply.md" - }, - "inputs": { - "send_log": "data/nhi_pedot_h_a_rfq_send_log.csv", - "sheet": "data/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.csv" - }, - "purpose": "Apply reviewed non-EML H-A RFQ send confirmations into the send log without treating outreach as evidence.", - "rows": [], - "status": "h_a_rfq_send_confirmation_entry_apply_no_apply_rows", - "summary": { - "applied_rows": 0, - "apply_rows": 0, - "blocked_rows": 0, - "error_count": 0, - "sheet_rows": 4 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.csv b/data/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.csv deleted file mode 100644 index 20fef6f..0000000 --- a/data/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,entry_status,send_log_status,send_confirmation_source_file,source_file_exists,computed_send_confirmation_source_sha256,send_confirmation_source_sha256_to_apply,expected_bundle_sha256,sent_bundle_sha256_to_record,send_status_to_apply,sent_at,sent_by,send_method,recipient_or_form,message_id_or_confirmation,human_reviewed_by,apply,notes,boundary -materials_metric,Materials Metric,waiting_for_confirmation_file,pending_send,data/rfq_send_confirmation_files/h_a/materials_metric_send_confirmation.txt,false,,,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,04af9bbc0857b04e8f39e4d474d3ab193323ce959955e0a6bcba5f41680e3efd,sent,,,email_or_request_service_form,info@materialsmetric.com,,,no,,"Manual RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence." -the_osmolality_lab,The Osmolality Lab,waiting_for_confirmation_file,pending_send,data/rfq_send_confirmation_files/h_a/the_osmolality_lab_send_confirmation.txt,false,,,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,1d35e982de9927db9a09d36a0e233228c08b2c6778738204080f6df8bbfbd45e,sent,,,email_or_contact_form,info@osmolab.com,,,no,,"Manual RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence." -cambridge_polymer_group_hydrogel,Cambridge Polymer Group,waiting_for_confirmation_file,pending_send,data/rfq_send_confirmation_files/h_a/cambridge_polymer_group_hydrogel_send_confirmation.txt,false,,,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,1aa6c9dbbfa7eabf95a5d035d8debb384f94e05742cbd9320926b8f50ef6ecd8,sent,,,request_quote_form_or_email,info@campoly.com,,,no,,"Manual RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence." -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,waiting_for_confirmation_file,pending_send,data/rfq_send_confirmation_files/h_a/sigmaaldrich_media_testing_send_confirmation.txt,false,,,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,8cd878fd88d9db1624b3336ff5350a86c1f9f878a521366985d301eb66e27ce0,sent,,,service_page_or_technical_service,PSTechService@milliporesigma.com,,,no,,"Manual RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence." diff --git a/data/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.json b/data/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.json deleted file mode 100644 index a17e862..0000000 --- a/data/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.json +++ /dev/null @@ -1,113 +0,0 @@ -{ - "boundary": "Manual RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence.", - "generated_artifacts": { - "csv": "data/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.csv", - "json": "data/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.json", - "report": "reports/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.md" - }, - "inputs": { - "existing_sheet": "data/nhi_pedot_h_a_rfq_send_confirmation_entry_sheet.csv", - "send_action_queue": "data/nhi_pedot_h_a_rfq_send_action_queue.csv", - "send_log": "data/nhi_pedot_h_a_rfq_send_log.csv" - }, - "purpose": "Guarded manual-entry sheet for non-EML H-A RFQ send confirmations such as web-form confirmations, PDFs, screenshots, or saved pages.", - "rows": [ - { - "apply": "no", - "boundary": "Manual RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence.", - "candidate_id": "materials_metric", - "computed_send_confirmation_source_sha256": "", - "entry_status": "waiting_for_confirmation_file", - "expected_bundle_sha256": "6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35", - "human_reviewed_by": "", - "message_id_or_confirmation": "", - "notes": "", - "recipient_or_form": "info@materialsmetric.com", - "send_confirmation_source_file": "data/rfq_send_confirmation_files/h_a/materials_metric_send_confirmation.txt", - "send_confirmation_source_sha256_to_apply": "", - "send_log_status": "pending_send", - "send_method": "email_or_request_service_form", - "send_status_to_apply": "sent", - "sent_at": "", - "sent_bundle_sha256_to_record": "04af9bbc0857b04e8f39e4d474d3ab193323ce959955e0a6bcba5f41680e3efd", - "sent_by": "", - "source_file_exists": "false", - "vendor_name": "Materials Metric" - }, - { - "apply": "no", - "boundary": "Manual RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence.", - "candidate_id": "the_osmolality_lab", - "computed_send_confirmation_source_sha256": "", - "entry_status": "waiting_for_confirmation_file", - "expected_bundle_sha256": "b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a", - "human_reviewed_by": "", - "message_id_or_confirmation": "", - "notes": "", - "recipient_or_form": "info@osmolab.com", - "send_confirmation_source_file": "data/rfq_send_confirmation_files/h_a/the_osmolality_lab_send_confirmation.txt", - "send_confirmation_source_sha256_to_apply": "", - "send_log_status": "pending_send", - "send_method": "email_or_contact_form", - "send_status_to_apply": "sent", - "sent_at": "", - "sent_bundle_sha256_to_record": "1d35e982de9927db9a09d36a0e233228c08b2c6778738204080f6df8bbfbd45e", - "sent_by": "", - "source_file_exists": "false", - "vendor_name": "The Osmolality Lab" - }, - { - "apply": "no", - "boundary": "Manual RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence.", - "candidate_id": "cambridge_polymer_group_hydrogel", - "computed_send_confirmation_source_sha256": "", - "entry_status": "waiting_for_confirmation_file", - "expected_bundle_sha256": "bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1", - "human_reviewed_by": "", - "message_id_or_confirmation": "", - "notes": "", - "recipient_or_form": "info@campoly.com", - "send_confirmation_source_file": "data/rfq_send_confirmation_files/h_a/cambridge_polymer_group_hydrogel_send_confirmation.txt", - "send_confirmation_source_sha256_to_apply": "", - "send_log_status": "pending_send", - "send_method": "request_quote_form_or_email", - "send_status_to_apply": "sent", - "sent_at": "", - "sent_bundle_sha256_to_record": "1aa6c9dbbfa7eabf95a5d035d8debb384f94e05742cbd9320926b8f50ef6ecd8", - "sent_by": "", - "source_file_exists": "false", - "vendor_name": "Cambridge Polymer Group" - }, - { - "apply": "no", - "boundary": "Manual RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence.", - "candidate_id": "sigmaaldrich_media_testing", - "computed_send_confirmation_source_sha256": "", - "entry_status": "waiting_for_confirmation_file", - "expected_bundle_sha256": "6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd", - "human_reviewed_by": "", - "message_id_or_confirmation": "", - "notes": "", - "recipient_or_form": "PSTechService@milliporesigma.com", - "send_confirmation_source_file": "data/rfq_send_confirmation_files/h_a/sigmaaldrich_media_testing_send_confirmation.txt", - "send_confirmation_source_sha256_to_apply": "", - "send_log_status": "pending_send", - "send_method": "service_page_or_technical_service", - "send_status_to_apply": "sent", - "sent_at": "", - "sent_bundle_sha256_to_record": "8cd878fd88d9db1624b3336ff5350a86c1f9f878a521366985d301eb66e27ce0", - "sent_by": "", - "source_file_exists": "false", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - } - ], - "status": "h_a_rfq_send_confirmation_entry_sheet_waiting_for_confirmation_files", - "summary": { - "already_sent_rows": 0, - "blocked_rows": 0, - "entry_rows": 4, - "ready_to_apply_rows": 0, - "source_file_present_rows": 0, - "waiting_for_confirmation_file_rows": 4 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_rfq_send_confirmation_intake.csv b/data/nhi_pedot_h_a_rfq_send_confirmation_intake.csv deleted file mode 100644 index 0932995..0000000 --- a/data/nhi_pedot_h_a_rfq_send_confirmation_intake.csv +++ /dev/null @@ -1 +0,0 @@ -candidate_id,vendor_name,confirmation_file,confirmation_sha256,detected_by,file_type,from_address,to_address,subject,sent_at,message_id_or_confirmation,attachment_bundle_sha256,expected_bundle_sha256,bundle_hash_match,intake_status,applied_to_send_log,boundary diff --git a/data/nhi_pedot_h_a_rfq_send_confirmation_intake.json b/data/nhi_pedot_h_a_rfq_send_confirmation_intake.json deleted file mode 100644 index c68cf34..0000000 --- a/data/nhi_pedot_h_a_rfq_send_confirmation_intake.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "applied_rows": 0, - "boundary": "RFQ send confirmations only document outreach logistics. They are not material measurement evidence and cannot advance suitability gates without returned raw measurements.", - "bundle_hash_matched_rows": 0, - "intake_csv": "data/nhi_pedot_h_a_rfq_send_confirmation_intake.csv", - "label": "NHI-PEDOT H-A", - "needs_review_rows": 0, - "profile": "h_a", - "purpose": "Scan original RFQ send confirmations and conservatively auto-fill send-log rows only when a sent .eml proves the expected bundle attachment.", - "ready_to_apply_rows": 0, - "row_count": 0, - "rows": [], - "send_confirmation_dir": "data/rfq_send_confirmation_files/h_a", - "send_log_csv": "data/nhi_pedot_h_a_rfq_send_log.csv", - "status": "nhi_pedot_h_a_rfq_send_confirmation_intake_waiting_for_confirmation_files", - "tracker_field_count": 17, - "unknown_existing_rows": [], - "unmatched_rows": 0 -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_rfq_send_log.csv b/data/nhi_pedot_h_a_rfq_send_log.csv deleted file mode 100644 index 1877842..0000000 --- a/data/nhi_pedot_h_a_rfq_send_log.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,wave,send_status,sent_at,sent_by,send_method,recipient_or_form,message_id_or_confirmation,send_confirmation_source_file,send_confirmation_source_sha256,computed_send_confirmation_source_sha256,sent_bundle_sha256,email_file,bundle_zip,expected_bundle_sha256,attachment_count,tracker_contact_date,tracker_reply_date,tracker_decision,notes -materials_metric,Materials Metric,first_wave,pending_send,,,email_or_request_service_form,info@materialsmetric.com,,data/rfq_send_confirmation_files/h_a/materials_metric_send_confirmation.txt,,,,data/nhi_pedot_h_a_rfq_outbox/emails/materials_metric_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,20,,,pending_outreach, -the_osmolality_lab,The Osmolality Lab,first_wave,pending_send,,,email_or_contact_form,info@osmolab.com,,data/rfq_send_confirmation_files/h_a/the_osmolality_lab_send_confirmation.txt,,,,data/nhi_pedot_h_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,20,,,pending_outreach, -cambridge_polymer_group_hydrogel,Cambridge Polymer Group,first_wave,pending_send,,,request_quote_form_or_email,info@campoly.com,,data/rfq_send_confirmation_files/h_a/cambridge_polymer_group_hydrogel_send_confirmation.txt,,,,data/nhi_pedot_h_a_rfq_outbox/emails/cambridge_polymer_group_hydrogel_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,20,,,pending_outreach, -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,first_wave,pending_send,,,service_page_or_technical_service,PSTechService@milliporesigma.com,,data/rfq_send_confirmation_files/h_a/sigmaaldrich_media_testing_send_confirmation.txt,,,,data/nhi_pedot_h_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,20,,,pending_outreach, diff --git a/data/nhi_pedot_h_a_rfq_send_log.json b/data/nhi_pedot_h_a_rfq_send_log.json deleted file mode 100644 index 368feda..0000000 --- a/data/nhi_pedot_h_a_rfq_send_log.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "applied_tracker_contact_dates": 0, - "error_count": 0, - "errors": [], - "field_contract": { - "confirmation_hash_rule": "If send_confirmation_source_sha256 is supplied, it must match the current SHA-256 of send_confirmation_source_file.", - "hash_rule": "If sent_bundle_sha256 is supplied, it must match expected_bundle_sha256 from the RFQ outbox manifest.", - "required_when_sent": [ - "sent_at", - "sent_by", - "send_method", - "recipient_or_form", - "message_id_or_confirmation", - "send_confirmation_source_file" - ], - "send_status_values": [ - "do_not_send", - "emailed", - "form_submitted", - "needs_attention", - "paused", - "pending_send", - "sent", - "submitted" - ] - }, - "label": "NHI-PEDOT H-A", - "non_evidence_boundary": "RFQ send logs and quote trackers only document execution logistics. They are not material evidence and cannot advance suitability gates without returned measured rows.", - "pending_rows": 4, - "profile": "h_a", - "purpose": "Track real RFQ send confirmations and safely apply verified send dates to the quote tracker.", - "row_count": 4, - "send_confirmation_dir": "data/rfq_send_confirmation_files/h_a", - "send_confirmation_readme": "data/rfq_send_confirmation_files/h_a/README.md", - "send_log_csv": "data/nhi_pedot_h_a_rfq_send_log.csv", - "sent_rows": 0, - "status": "nhi_pedot_h_a_rfq_send_log_waiting_for_sent_entries", - "tracker_csv": "data/nhi_pedot_h_a_quote_tracker.csv", - "unknown_existing_rows": [], - "valid_sent_candidate_ids": [], - "valid_sent_rows": 0, - "valid_sent_summaries": [], - "warning_count": 0, - "warnings": [] -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_runs_active.csv b/data/nhi_pedot_h_a_runs_active.csv deleted file mode 100644 index fdc7385..0000000 --- a/data/nhi_pedot_h_a_runs_active.csv +++ /dev/null @@ -1,13 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,mea_coupon_id,electrode_material,hydrogel_matrix,hydrogel_modulus_kpa,hydrogel_thickness_um,pedot_pss_loading_fraction,pedot_pss_pre_rinse_protocol,laminin_or_peptide_density,crosslinking_protocol,sterilization_or_aseptic_protocol,medium_name,medium_lot,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,visible_precipitate,visible_shedding,swelling_fraction,delamination_score,optical_transparency_fraction,eis_1khz_initial_ohm,eis_1khz_final_ohm,charge_storage_capacity_initial,charge_storage_capacity_final,cell_model,seeding_density,viability_fraction,ldh_fold_control,neurite_coverage_fraction,mean_neurite_length_um,electrode_yield_fraction,spike_rate_hz,burst_rate_hz,gate_results,source_file,notes -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,limina,H-A,0 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,,400,0.012,overnight_medium_conditioning_before_measurement,ehs_laminin_same_as_control_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,limina,H-A,24 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,,400,0.012,overnight_medium_conditioning_before_measurement,ehs_laminin_same_as_control_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,limina,H-A,72 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,,400,0.012,overnight_medium_conditioning_before_measurement,ehs_laminin_same_as_control_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,limina,H-A,0 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem,,400,0,not_applicable_no_pedot,ehs_laminin_same_as_lead_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,limina,H-A,24 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem,,400,0,not_applicable_no_pedot,ehs_laminin_same_as_lead_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,limina,H-A,72 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem,,400,0,not_applicable_no_pedot,ehs_laminin_same_as_lead_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,limina,H-A,0 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,,400,0.006,overnight_medium_conditioning_before_measurement,ehs_laminin_same_as_control_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,limina,H-A,24 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,,400,0.006,overnight_medium_conditioning_before_measurement,ehs_laminin_same_as_control_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,limina,H-A,72 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,,400,0.006,overnight_medium_conditioning_before_measurement,ehs_laminin_same_as_control_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,limina,H-A,0 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,limina,H-A,24 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,limina,H-A,72 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 diff --git a/data/nhi_pedot_h_a_sample_labels.csv b/data/nhi_pedot_h_a_sample_labels.csv deleted file mode 100644 index 7dd8f09..0000000 --- a/data/nhi_pedot_h_a_sample_labels.csv +++ /dev/null @@ -1,37 +0,0 @@ -sample_id,run_id,article_id,timepoint,sample_event,replicate,planned_container_id,condition,storage_handling_notes,contents_note,required_readouts -NHIPEDOT-H-A-no_coating_mea_control-R1-0h-initial,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0 h,initial,1,H-A-01-NO-COATING-MEA-CON-0-H-INITIAL,matched medium/device control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-no_coating_mea_control-R1-0h-final,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0 h,final,1,H-A-02-NO-COATING-MEA-CON-0-H-FINAL,matched medium/device control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-no_coating_mea_control-R1-0h-physical_inspection,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0 h,physical_inspection,1,H-A-03-NO-COATING-MEA-CON-0-H-PHYSICAL-INS,matched medium/device control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-no_coating_mea_control-R1-24h-initial,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24 h,initial,1,H-A-04-NO-COATING-MEA-CON-24-H-INITIAL,matched medium/device control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-no_coating_mea_control-R1-24h-final,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24 h,final,1,H-A-05-NO-COATING-MEA-CON-24-H-FINAL,matched medium/device control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-no_coating_mea_control-R1-24h-physical_inspection,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24 h,physical_inspection,1,H-A-06-NO-COATING-MEA-CON-24-H-PHYSICAL-INS,matched medium/device control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-no_coating_mea_control-R1-72h-initial,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72 h,initial,1,H-A-07-NO-COATING-MEA-CON-72-H-INITIAL,matched medium/device control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-no_coating_mea_control-R1-72h-final,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72 h,final,1,H-A-08-NO-COATING-MEA-CON-72-H-FINAL,matched medium/device control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-no_coating_mea_control-R1-72h-physical_inspection,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72 h,physical_inspection,1,H-A-09-NO-COATING-MEA-CON-72-H-PHYSICAL-INS,matched medium/device control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h-initial,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0 h,initial,1,H-A-10-HYDROGEL-LAMININ-C-0-H-INITIAL,soft matrix control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h-final,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0 h,final,1,H-A-11-HYDROGEL-LAMININ-C-0-H-FINAL,soft matrix control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h-physical_inspection,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0 h,physical_inspection,1,H-A-12-HYDROGEL-LAMININ-C-0-H-PHYSICAL-INS,soft matrix control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h-initial,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24 h,initial,1,H-A-13-HYDROGEL-LAMININ-C-24-H-INITIAL,soft matrix control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h-final,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24 h,final,1,H-A-14-HYDROGEL-LAMININ-C-24-H-FINAL,soft matrix control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h-physical_inspection,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24 h,physical_inspection,1,H-A-15-HYDROGEL-LAMININ-C-24-H-PHYSICAL-INS,soft matrix control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h-initial,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72 h,initial,1,H-A-16-HYDROGEL-LAMININ-C-72-H-INITIAL,soft matrix control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h-final,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72 h,final,1,H-A-17-HYDROGEL-LAMININ-C-72-H-FINAL,soft matrix control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h-physical_inspection,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72 h,physical_inspection,1,H-A-18-HYDROGEL-LAMININ-C-72-H-PHYSICAL-INS,soft matrix control,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h-initial,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0 h,initial,1,H-A-19-LEAD-NHI-PEDOT-LOW-0-H-INITIAL,0.6 wt percent PEDOT:PSS lead,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h-final,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0 h,final,1,H-A-20-LEAD-NHI-PEDOT-LOW-0-H-FINAL,0.6 wt percent PEDOT:PSS lead,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h-physical_inspection,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0 h,physical_inspection,1,H-A-21-LEAD-NHI-PEDOT-LOW-0-H-PHYSICAL-INS,0.6 wt percent PEDOT:PSS lead,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h-initial,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24 h,initial,1,H-A-22-LEAD-NHI-PEDOT-LOW-24-H-INITIAL,0.6 wt percent PEDOT:PSS lead,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h-final,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24 h,final,1,H-A-23-LEAD-NHI-PEDOT-LOW-24-H-FINAL,0.6 wt percent PEDOT:PSS lead,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h-physical_inspection,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24 h,physical_inspection,1,H-A-24-LEAD-NHI-PEDOT-LOW-24-H-PHYSICAL-INS,0.6 wt percent PEDOT:PSS lead,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h-initial,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72 h,initial,1,H-A-25-LEAD-NHI-PEDOT-LOW-72-H-INITIAL,0.6 wt percent PEDOT:PSS lead,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h-final,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72 h,final,1,H-A-26-LEAD-NHI-PEDOT-LOW-72-H-FINAL,0.6 wt percent PEDOT:PSS lead,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h-physical_inspection,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72 h,physical_inspection,1,H-A-27-LEAD-NHI-PEDOT-LOW-72-H-PHYSICAL-INS,0.6 wt percent PEDOT:PSS lead,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h-initial,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0 h,initial,1,H-A-28-CHALLENGE-NHI-PEDO-0-H-INITIAL,1.2 wt percent PEDOT:PSS boundary comparator,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h-final,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0 h,final,1,H-A-29-CHALLENGE-NHI-PEDO-0-H-FINAL,1.2 wt percent PEDOT:PSS boundary comparator,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h-physical_inspection,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0 h,physical_inspection,1,H-A-30-CHALLENGE-NHI-PEDO-0-H-PHYSICAL-INS,1.2 wt percent PEDOT:PSS boundary comparator,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h-initial,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24 h,initial,1,H-A-31-CHALLENGE-NHI-PEDO-24-H-INITIAL,1.2 wt percent PEDOT:PSS boundary comparator,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h-final,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24 h,final,1,H-A-32-CHALLENGE-NHI-PEDO-24-H-FINAL,1.2 wt percent PEDOT:PSS boundary comparator,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h-physical_inspection,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24 h,physical_inspection,1,H-A-33-CHALLENGE-NHI-PEDO-24-H-PHYSICAL-INS,1.2 wt percent PEDOT:PSS boundary comparator,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h-initial,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72 h,initial,1,H-A-34-CHALLENGE-NHI-PEDO-72-H-INITIAL,1.2 wt percent PEDOT:PSS boundary comparator,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h-final,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72 h,final,1,H-A-35-CHALLENGE-NHI-PEDO-72-H-FINAL,1.2 wt percent PEDOT:PSS boundary comparator,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h-physical_inspection,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72 h,physical_inspection,1,H-A-36-CHALLENGE-NHI-PEDO-72-H-PHYSICAL-INS,1.2 wt percent PEDOT:PSS boundary comparator,"Keep sample identity and timepoint separated; record actual storage, transfer, and receipt conditions before entering measurements.",nonclinical R&D acellular medium/coupon sample; no live cells,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction diff --git a/data/nhi_pedot_h_a_sample_submission_pack.json b/data/nhi_pedot_h_a_sample_submission_pack.json deleted file mode 100644 index c9af8ae..0000000 --- a/data/nhi_pedot_h_a_sample_submission_pack.json +++ /dev/null @@ -1,157 +0,0 @@ -{ - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "boundary": "This pack is a nonclinical R&D material disclosure and shipping-readiness checklist. It is not a certified SDS, toxicology opinion, biological safety approval, or material evidence.", - "chain_of_custody_rows": 36, - "component_rows": [ - { - "actual_lot_required": "yes", - "component": "MEA witness coupon or equivalent electrode-window coupon", - "hazard_or_handling_note": "No electronics need to be powered; disclose substrate material and any cleaning/sterilization residues.", - "planned_description": "Actual coupon material, geometry, and surface treatment must be recorded before shipment.", - "role": "device-contact substrate/control surface", - "sds_required_before_shipping": "vendor_dependent" - }, - { - "actual_lot_required": "yes", - "component": "Sodium alginate", - "hazard_or_handling_note": "Provide supplier SDS and lot; keep dry powder handling separate from hydrated coupon shipment notes.", - "planned_description": "alginate_laminin_2pct_wv_caso4_dmem", - "role": "hydrogel matrix", - "sds_required_before_shipping": "yes" - }, - { - "actual_lot_required": "yes", - "component": "Calcium sulfate dihydrate", - "hazard_or_handling_note": "Provide supplier SDS and final preparation batch ID.", - "planned_description": "183 mM calcium sulfate dihydrate dispersed in 1x DMEM for gelation.", - "role": "ionic crosslinker", - "sds_required_before_shipping": "yes" - }, - { - "actual_lot_required": "yes", - "component": "DMEM or DMEM/F12 / CL1-proxy medium", - "hazard_or_handling_note": "Disclose all supplements if used; do not send biohazardous or cell-containing material.", - "planned_description": "Actual medium name and lot must be entered in H-A rows; no live cells are included.", - "role": "crosslinking and soak medium", - "sds_required_before_shipping": "yes" - }, - { - "actual_lot_required": "yes", - "component": "PEDOT:PSS dispersion", - "hazard_or_handling_note": "Provide supplier SDS, loading fraction, pre-rinse/conditioning record, and whether free dispersion is present in shipped aliquots.", - "planned_description": "0.6 wt percent PEDOT:PSS lead, selected from the published neural-culture loading", - "role": "conductive phase", - "sds_required_before_shipping": "yes" - }, - { - "actual_lot_required": "yes", - "component": "Laminin or equivalent cell-adhesion cue", - "hazard_or_handling_note": "Disclose biological source if applicable; no live cells or human subject material should be included.", - "planned_description": "EHS laminin or equivalent laminin cue retained above or within the hydrogel", - "role": "neural cell-contact cue retained above or within hydrogel", - "sds_required_before_shipping": "yes" - }, - { - "actual_lot_required": "yes", - "component": "Acellular soak aliquots", - "hazard_or_handling_note": "Confirm volume, container, temperature, and no-biohazard acceptance with vendor before shipment.", - "planned_description": "Pre/post aliquots for pH, osmolality, conductivity, and appearance after 0 h, 24 h, and 72 h H-A soaks.", - "role": "media physicochemical test article", - "sds_required_before_shipping": "vendor_dependent" - } - ], - "nonclinical_statement": "Planned H-A samples are nonclinical R&D, acellular medium/coupon samples with no live cells and no intended human or animal use.", - "outputs": { - "component_csv": "data/nhi_pedot_h_a_material_disclosure.csv", - "json": "data/nhi_pedot_h_a_sample_submission_pack.json", - "report": "reports/nhi_pedot_h_a_sample_submission_pack.md" - }, - "pre_ship_questions": [ - "Will you accept acellular neural-medium soak aliquots and hydrated hydrogel/MEA witness coupons as nonclinical R&D samples?", - "What minimum aliquot volume and coupon count are required for pH, osmolality, conductivity, and imaging/inspection?", - "Which supplier SDS files, lot numbers, and preparation-batch records are required before shipment?", - "Do you require a quote number, sample submission form, purchase order, or project ID before samples are sent?", - "What container, temperature, timing, and chain-of-custody requirements apply to 0 h, 24 h, and 72 h samples?", - "Can returned files preserve run_id, sample_event, target_field, source_file, and instrument export provenance?" - ], - "protocol_id": "nhi_pedot_alg_lam_protocol_v0_2", - "purpose": "Prepare vendor-facing sample composition, nonclinical status, and pre-shipment questions for the NHI-PEDOT H-A RFQ.", - "rejection_rules": [ - "Do not ship any live cells, human subject material, animal tissue, or unknown biological material.", - "Do not ship hydrated PEDOT:PSS/alginate/laminin samples until the vendor confirms SDS and sample acceptance requirements.", - "Do not treat vendor acceptance, quote numbers, or sample-submission forms as measured evidence.", - "Do not substitute vendor-proposed pooled reporting for LIMINA run_id-level raw data without a documented rejection or split-scope decision." - ], - "requested_raw_entries": 228, - "requested_runs": 12, - "sample_event_count": 36, - "sample_label_count": 36, - "shipping_status": "do_not_ship_until_vendor_confirms_quote_sample_acceptance_sds_and_custody", - "status": "sample_submission_precheck_ready", - "vendor_pre_ship_rows": [ - { - "candidate_id": "materials_metric", - "pre_ship_action": "Use the service/quote request path first if a file upload is available; otherwise email the RFQ text and attach the vendor zip bundle.", - "pre_ship_status": "do_not_ship_until_vendor_confirms", - "quote_or_contact_url": "https://materialsmetric.com/contact-us/", - "sample_submission_url": "", - "vendor_name": "Materials Metric" - }, - { - "candidate_id": "the_osmolality_lab", - "pre_ship_action": "Ask explicitly whether acellular neural-medium aliquots with PEDOT:PSS/alginate/laminin exposure fit their non-blood/non-urine and no-biohazard sample policy.", - "pre_ship_status": "do_not_ship_until_vendor_confirms", - "quote_or_contact_url": "https://theosmolalitylab.com/contact-us/", - "sample_submission_url": "https://theosmolalitylab.com/submit-samples/", - "vendor_name": "The Osmolality Lab" - }, - { - "candidate_id": "cambridge_polymer_group_hydrogel", - "pre_ship_action": "Use the quote form for initial feasibility; do not ship samples until a quote number, sample submission form, SDS expectations, and custody requirements are confirmed.", - "pre_ship_status": "do_not_ship_until_vendor_confirms", - "quote_or_contact_url": "https://quote.campoly.com/material-testing/", - "sample_submission_url": "https://www.campoly.com/contact-us/submit-sample/", - "vendor_name": "Cambridge Polymer Group" - }, - { - "candidate_id": "sigmaaldrich_media_testing", - "pre_ship_action": "Use the service page/contact path first; if routed through support, ask them to assign the RFQ to cell culture media stability/testing or Process Solutions custom testing.", - "pre_ship_status": "do_not_ship_until_vendor_confirms", - "quote_or_contact_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "sample_submission_url": "", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - }, - { - "candidate_id": "intertek_china_healthcare_testing", - "pre_ship_action": "Use only after first-wave stalls or if China/APAC logistics are preferred; ask for non-GLP R&D routing and raw CSV return.", - "pre_ship_status": "do_not_ship_until_vendor_confirms", - "quote_or_contact_url": "https://www.intertek.com.cn/contact/", - "sample_submission_url": "", - "vendor_name": "Intertek China Healthcare and Medical Device Testing" - }, - { - "candidate_id": "wuxi_apptec_medical_device_testing", - "pre_ship_action": "Best as chemistry/E&L or biocompatibility escalation after H-A or if local China execution is required.", - "pre_ship_status": "do_not_ship_until_vendor_confirms", - "quote_or_contact_url": "https://www.wuxiapptec.com/contact", - "sample_submission_url": "", - "vendor_name": "WuXi AppTec Medical Device Testing" - }, - { - "candidate_id": "tuv_sud_china_medical_device_testing", - "pre_ship_action": "Use as second-wave regulatory/ISO route; ask whether non-GLP raw run_id-level testing can be scoped separately.", - "pre_ship_status": "do_not_ship_until_vendor_confirms", - "quote_or_contact_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "sample_submission_url": "", - "vendor_name": "TUV SUD China Medical Device Testing" - }, - { - "candidate_id": "pony_testing_medical_device", - "pre_ship_action": "Use as China-local broad screening fallback only if the response commits to raw sample-level values and source-file provenance.", - "pre_ship_status": "do_not_ship_until_vendor_confirms", - "quote_or_contact_url": "https://www.ponytest.com/", - "sample_submission_url": "", - "vendor_name": "PONY Testing Medical Device and Life-Science Services" - } - ] -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_sentinel_interpretation.json b/data/nhi_pedot_h_a_sentinel_interpretation.json deleted file mode 100644 index 8b5ab47..0000000 --- a/data/nhi_pedot_h_a_sentinel_interpretation.json +++ /dev/null @@ -1,369 +0,0 @@ -{ - "evaluations": [], - "missing_expected_rows": [], - "missing_required_fields": [ - { - "article_id": "no_coating_mea_control", - "missing_fields": [ - "date", - "medium_name", - "medium_lot", - "temperature_c", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "source_file" - ], - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "timepoint": "0 h" - }, - { - "article_id": "no_coating_mea_control", - "missing_fields": [ - "date", - "medium_name", - "medium_lot", - "temperature_c", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "source_file" - ], - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "timepoint": "24 h" - }, - { - "article_id": "no_coating_mea_control", - "missing_fields": [ - "date", - "medium_name", - "medium_lot", - "temperature_c", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "source_file" - ], - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "timepoint": "72 h" - }, - { - "article_id": "hydrogel_laminin_control", - "missing_fields": [ - "date", - "medium_lot", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "source_file" - ], - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "timepoint": "0 h" - }, - { - "article_id": "hydrogel_laminin_control", - "missing_fields": [ - "date", - "medium_lot", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "source_file" - ], - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "timepoint": "24 h" - }, - { - "article_id": "hydrogel_laminin_control", - "missing_fields": [ - "date", - "medium_lot", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "source_file" - ], - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "timepoint": "72 h" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "missing_fields": [ - "date", - "medium_lot", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "source_file" - ], - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "timepoint": "0 h" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "missing_fields": [ - "date", - "medium_lot", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "source_file" - ], - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "timepoint": "24 h" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "missing_fields": [ - "date", - "medium_lot", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "source_file" - ], - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "timepoint": "72 h" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "missing_fields": [ - "date", - "medium_lot", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "source_file" - ], - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "timepoint": "0 h" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "missing_fields": [ - "date", - "medium_lot", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "source_file" - ], - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "timepoint": "24 h" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "missing_fields": [ - "date", - "medium_lot", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "source_file" - ], - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "timepoint": "72 h" - } - ], - "next_action": "Replace fixture, pending, and record_actual/record_lot placeholders with real measured provenance before interpreting H-A.", - "provenance": { - "claimable_measurement_source": false, - "exists": true, - "measured_row_count": 0, - "path": "data/nhi_pedot_h_a_sentinel_template.csv", - "path_fixture_marker": false, - "placeholder_examples": [ - { - "markers": [ - "date=missing", - "notes=pending_real_measurement", - "source_file=missing" - ], - "row_number": 1, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h" - }, - { - "markers": [ - "date=missing", - "notes=pending_real_measurement", - "source_file=missing" - ], - "row_number": 2, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h" - }, - { - "markers": [ - "date=missing", - "notes=pending_real_measurement", - "source_file=missing" - ], - "row_number": 3, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 4, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 5, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 6, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 7, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h" - }, - { - "markers": [ - "date=missing", - "laminin_or_peptide_density=record_lot", - "medium_name=record_actual", - "notes=pending_real_measurement", - "source_file=missing", - "sterilization_or_aseptic_protocol=record_lot" - ], - "row_number": 8, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h" - } - ], - "placeholder_row_count": 12, - "row_count": 12, - "source_file_issue_count": 0, - "source_file_issue_examples": [], - "synthetic_examples": [], - "synthetic_row_count": 0 - }, - "source_file_issues": [], - "status": "h_a_invalid_provenance" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_sentinel_sample_manifest.csv b/data/nhi_pedot_h_a_sentinel_sample_manifest.csv deleted file mode 100644 index 9794698..0000000 --- a/data/nhi_pedot_h_a_sentinel_sample_manifest.csv +++ /dev/null @@ -1,37 +0,0 @@ -sample_id,run_id,sample_event,phase,timepoint,replicate,article_id,readouts,handoff_notes -NHIPEDOT-H-A-no_coating_mea_control-R1-0h-initial,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,H-A,0 h,1,no_coating_mea_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-no_coating_mea_control-R1-0h-final,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,H-A,0 h,1,no_coating_mea_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-no_coating_mea_control-R1-0h-physical_inspection,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,H-A,0 h,1,no_coating_mea_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-no_coating_mea_control-R1-24h-initial,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,H-A,24 h,1,no_coating_mea_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-no_coating_mea_control-R1-24h-final,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,H-A,24 h,1,no_coating_mea_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-no_coating_mea_control-R1-24h-physical_inspection,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,H-A,24 h,1,no_coating_mea_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-no_coating_mea_control-R1-72h-initial,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,H-A,72 h,1,no_coating_mea_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-no_coating_mea_control-R1-72h-final,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,H-A,72 h,1,no_coating_mea_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-no_coating_mea_control-R1-72h-physical_inspection,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,H-A,72 h,1,no_coating_mea_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h-initial,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,H-A,0 h,1,hydrogel_laminin_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h-final,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,H-A,0 h,1,hydrogel_laminin_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h-physical_inspection,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,H-A,0 h,1,hydrogel_laminin_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h-initial,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,H-A,24 h,1,hydrogel_laminin_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h-final,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,H-A,24 h,1,hydrogel_laminin_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h-physical_inspection,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,H-A,24 h,1,hydrogel_laminin_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h-initial,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,H-A,72 h,1,hydrogel_laminin_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h-final,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,H-A,72 h,1,hydrogel_laminin_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h-physical_inspection,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,H-A,72 h,1,hydrogel_laminin_control,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h-initial,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,H-A,0 h,1,lead_nhi_pedot_low_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h-final,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,H-A,0 h,1,lead_nhi_pedot_low_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h-physical_inspection,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,H-A,0 h,1,lead_nhi_pedot_low_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h-initial,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,H-A,24 h,1,lead_nhi_pedot_low_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h-final,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,H-A,24 h,1,lead_nhi_pedot_low_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h-physical_inspection,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,H-A,24 h,1,lead_nhi_pedot_low_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h-initial,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,H-A,72 h,1,lead_nhi_pedot_low_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h-final,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,H-A,72 h,1,lead_nhi_pedot_low_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h-physical_inspection,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,H-A,72 h,1,lead_nhi_pedot_low_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h-initial,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,H-A,0 h,1,challenge_nhi_pedot_high_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h-final,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,H-A,0 h,1,challenge_nhi_pedot_high_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h-physical_inspection,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,H-A,0 h,1,challenge_nhi_pedot_high_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h-initial,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,H-A,24 h,1,challenge_nhi_pedot_high_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h-final,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,H-A,24 h,1,challenge_nhi_pedot_high_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h-physical_inspection,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,H-A,24 h,1,challenge_nhi_pedot_high_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h-initial,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,H-A,72 h,1,challenge_nhi_pedot_high_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h-final,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,H-A,72 h,1,challenge_nhi_pedot_high_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h-physical_inspection,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,H-A,72 h,1,challenge_nhi_pedot_high_loading,pH;osmolality;conductivity;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction,"record coupon/well id, image before and after soak, then enter numeric fields in template" diff --git a/data/nhi_pedot_h_a_sentinel_template.csv b/data/nhi_pedot_h_a_sentinel_template.csv deleted file mode 100644 index e8a4e07..0000000 --- a/data/nhi_pedot_h_a_sentinel_template.csv +++ /dev/null @@ -1,13 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,mea_coupon_id,electrode_material,hydrogel_matrix,hydrogel_modulus_kpa,hydrogel_thickness_um,pedot_pss_loading_fraction,pedot_pss_pre_rinse_protocol,laminin_or_peptide_density,crosslinking_protocol,sterilization_or_aseptic_protocol,medium_name,medium_lot,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,visible_precipitate,visible_shedding,swelling_fraction,delamination_score,optical_transparency_fraction,eis_1khz_initial_ohm,eis_1khz_final_ohm,charge_storage_capacity_initial,charge_storage_capacity_final,cell_model,seeding_density,viability_fraction,ldh_fold_control,neurite_coverage_fraction,mean_neurite_length_um,electrode_yield_fraction,spike_rate_hz,burst_rate_hz,gate_results,source_file,notes -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,limina,H-A,0 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,limina,H-A,24 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,limina,H-A,72 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,limina,H-A,0 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem,,400,0,not_applicable_no_pedot,ehs_laminin_same_as_lead_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,limina,H-A,24 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem,,400,0,not_applicable_no_pedot,ehs_laminin_same_as_lead_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,limina,H-A,72 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem,,400,0,not_applicable_no_pedot,ehs_laminin_same_as_lead_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,limina,H-A,0 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,,400,0.006,overnight_medium_conditioning_before_measurement,ehs_laminin_same_as_control_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,limina,H-A,24 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,,400,0.006,overnight_medium_conditioning_before_measurement,ehs_laminin_same_as_control_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,limina,H-A,72 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,,400,0.006,overnight_medium_conditioning_before_measurement,ehs_laminin_same_as_control_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,limina,H-A,0 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,,400,0.012,overnight_medium_conditioning_before_measurement,ehs_laminin_same_as_control_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,limina,H-A,24 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,,400,0.012,overnight_medium_conditioning_before_measurement,ehs_laminin_same_as_control_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,limina,H-A,72 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,,400,0.012,overnight_medium_conditioning_before_measurement,ehs_laminin_same_as_control_record_lot,183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation,aseptic_preparation_record_lot_and_handling,DMEM_F12_or_CL1_proxy_record_actual,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,nhi_pedot_h_a_sentinel_pending_real_measurement;nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2 diff --git a/data/nhi_pedot_h_a_service_request.json b/data/nhi_pedot_h_a_service_request.json deleted file mode 100644 index 818e046..0000000 --- a/data/nhi_pedot_h_a_service_request.json +++ /dev/null @@ -1,270 +0,0 @@ -{ - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "current_qc": { - "errors": 183, - "missing_hotspots": [ - { - "field": "date", - "rows": 12 - }, - { - "field": "medium_name", - "rows": 12 - }, - { - "field": "medium_lot", - "rows": 12 - }, - { - "field": "pH_initial", - "rows": 12 - }, - { - "field": "pH_final", - "rows": 12 - }, - { - "field": "osmolality_initial_mOsm_kg", - "rows": 12 - }, - { - "field": "osmolality_final_mOsm_kg", - "rows": 12 - }, - { - "field": "conductivity_initial_mS_cm", - "rows": 12 - }, - { - "field": "conductivity_final_mS_cm", - "rows": 12 - }, - { - "field": "visible_precipitate", - "rows": 12 - }, - { - "field": "visible_shedding", - "rows": 12 - }, - { - "field": "swelling_fraction", - "rows": 12 - }, - { - "field": "delamination_score", - "rows": 12 - }, - { - "field": "optical_transparency_fraction", - "rows": 12 - }, - { - "field": "source_file", - "rows": 12 - }, - { - "field": "temperature_c", - "rows": 3 - } - ], - "status": "h_a_intake_not_ready", - "warnings": 24 - }, - "deliverables": [ - { - "acceptance": "All 228 raw entries have values, measured_at, operator_or_agent, instrument_id, source_file, and notes when relevant.", - "id": "raw_measurement_csv", - "name": "Completed long-form raw measurement CSV", - "target_path": "data/nhi_pedot_h_a_raw_measurements_template.csv" - }, - { - "acceptance": "Preferred compact return path: fill one row per raw-file bundle, set apply=yes, and cite the returned source file for each bundle.", - "id": "bundle_entry_sheet", - "name": "Completed one-row-per-source-file bundle entry sheet", - "target_path": "data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv" - }, - { - "acceptance": "Each coupon/well maps to one run_id, sample_id, container ID, article_id, timepoint, replicate, medium lot, and preparation batch.", - "id": "sample_chain_of_custody", - "name": "Sample/coupon chain of custody", - "target_path": "data/nhi_pedot_h_a_chain_of_custody.csv" - }, - { - "acceptance": "Raw pH, osmolality, conductivity, and imaging/inspection exports are preserved with file names referenced in source_file.", - "id": "instrument_export_bundle", - "name": "Instrument exports and images", - "target_path": "external_lab_exports/" - }, - { - "acceptance": "Any substitution in medium, electrode coupon, hydrogel batch, incubation time, temperature, or instrument calibration is listed explicitly.", - "id": "deviation_log", - "name": "Deviation log", - "target_path": "reports/nhi_pedot_h_a_deviation_log.md" - } - ], - "non_claim_boundary": "This checklist prepares data entry only. The material remains a hypothesis until QC-clean real rows pass H-A, H-B, H-C, long follow-up, and the final claim audit.", - "post_delivery_commands": [ - "python3 scripts/render_nhi_pedot_h_a_vendor_return_intake.py", - "python3 scripts/render_nhi_pedot_h_a_vendor_bundle_entry_sheet.py", - "python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv", - "python3 scripts/import_nhi_pedot_h_a_source_values.py", - "python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py", - "python3 scripts/qc_nhi_pedot_h_a_intake.py --strict-exit", - "python3 scripts/interpret_nhi_pedot_h_a_sentinel.py", - "python3 scripts/audit_limina_suitability_claim.py" - ], - "provenance_fields_per_raw_row": [ - "measured_at", - "operator_or_agent", - "instrument_id", - "source_file" - ], - "purpose": "Turn the current H-A blocker into a compact service request for real acellular measurements.", - "rejection_rules": [ - "Do not replace missing values with pending, record_actual, TBD, unknown, synthetic, fixture, or not_evidence markers.", - "Do not average across coupons before data entry; enter one row per run_id/sample_event/target_field.", - "Do not omit no-coating controls; matched controls are required for pH, osmolality, and conductivity drift decisions.", - "Do not interpret H-A as a suitability claim; it only authorizes or blocks H-B/H-C follow-up." - ], - "requested_matrix": { - "articles": [ - "no_coating_mea_control", - "hydrogel_laminin_control", - "lead_nhi_pedot_low_loading", - "challenge_nhi_pedot_high_loading" - ], - "raw_entries": 228, - "replicates": [ - "1" - ], - "runs": 12, - "timepoints": [ - "0 h", - "24 h", - "72 h" - ] - }, - "required_capabilities": [ - "Acellular soak/incubation of MEA witness coupons or equivalent electrode-window coupons at 37 C.", - "pH measurement before and after each timepoint.", - "Osmolality measurement before and after each timepoint.", - "Conductivity measurement before and after each timepoint.", - "Brightfield or stereoscope imaging sufficient to score shedding, delamination, swelling, and transparency.", - "Lot-level provenance for medium, hydrogel reagents, electrode coupons, laminin or peptide source, and sterilization/aseptic handling." - ], - "required_fields": [ - { - "description": "final conductivity", - "field": "conductivity_final_mS_cm", - "rows": 12 - }, - { - "description": "initial conductivity", - "field": "conductivity_initial_mS_cm", - "rows": 12 - }, - { - "description": "calendar date of the measurement event", - "field": "date", - "rows": 12 - }, - { - "description": "0 to 1 delamination score", - "field": "delamination_score", - "rows": 12 - }, - { - "description": "actual medium lot", - "field": "medium_lot", - "rows": 12 - }, - { - "description": "actual medium or CL1-proxy medium name", - "field": "medium_name", - "rows": 12 - }, - { - "description": "0 to 1 optical transparency fraction", - "field": "optical_transparency_fraction", - "rows": 12 - }, - { - "description": "final osmolality", - "field": "osmolality_final_mOsm_kg", - "rows": 12 - }, - { - "description": "initial osmolality", - "field": "osmolality_initial_mOsm_kg", - "rows": 12 - }, - { - "description": "final pH", - "field": "pH_final", - "rows": 12 - }, - { - "description": "initial pH", - "field": "pH_initial", - "rows": 12 - }, - { - "description": "fractional swelling", - "field": "swelling_fraction", - "rows": 12 - }, - { - "description": "measurement/incubation temperature in C", - "field": "temperature_c", - "rows": 3 - }, - { - "description": "visible precipitate, true or false", - "field": "visible_precipitate", - "rows": 12 - }, - { - "description": "visible material shedding, true or false", - "field": "visible_shedding", - "rows": 12 - } - ], - "source_artifacts": { - "active_runs": "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_runs_active.csv", - "bench_sheet": "data/nhi_pedot_h_a_bench_sheet.json", - "internal_bundle_entry_sheet": "data/nhi_pedot_h_a_bundle_entry_sheet.csv", - "minimum_checklist": "data/nhi_pedot_h_a_minimum_measurement_checklist.json", - "raw_measurement_template": "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/nhi_pedot_h_a_raw_measurements_template.csv", - "source_unlock_bundle_manifest": "data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv", - "vendor_bundle_entry_report": "reports/nhi_pedot_h_a_vendor_bundle_entry_sheet.md", - "vendor_bundle_entry_sheet": "data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv" - }, - "status": "ready_to_request_real_measurements", - "stop_rules": [ - { - "acceptance_focus": "baseline pH/osmolality/conductivity drift and visual/physical inspection", - "article_id": "no_coating_mea_control", - "role": "matched medium/device control", - "stop_if": "control is unstable or missing, because matched comparisons become invalid" - }, - { - "acceptance_focus": "matrix-only medium drift, swelling, delamination, and transparency versus no-coating control", - "article_id": "hydrogel_laminin_control", - "role": "soft matrix control", - "stop_if": "hydrogel-only matrix fails, because PEDOT interpretation becomes confounded" - }, - { - "acceptance_focus": "lead medium drift <= controls plus no shedding, swelling <=0.20, delamination <=0.5, transparency >=0.80", - "article_id": "lead_nhi_pedot_low_loading", - "role": "0.6 wt percent PEDOT:PSS lead", - "stop_if": "lead shows pH drift >0.10 vs control, osmolality/conductivity drift >5%, shedding, swelling >0.20, delamination >0.5, or transparency <0.80" - }, - { - "acceptance_focus": "upper-loading boundary; failures constrain dose-response but do not stop lead if lead passes", - "article_id": "challenge_nhi_pedot_high_loading", - "role": "1.2 wt percent PEDOT:PSS boundary comparator", - "stop_if": "treat challenge as boundary only if it fails; do not promote to H-C" - } - ] -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_smoke_local_capture_template.csv b/data/nhi_pedot_h_a_smoke_local_capture_template.csv deleted file mode 100644 index 2a31538..0000000 --- a/data/nhi_pedot_h_a_smoke_local_capture_template.csv +++ /dev/null @@ -1,103 +0,0 @@ -run_id,sample_event,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,date,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,date,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,pH,,pH,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,date,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,date,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,pH,,pH,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,date,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,,C,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,,pH,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,,mS/cm,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,,bool,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,,score,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,, diff --git a/data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv b/data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv deleted file mode 100644 index 1028b71..0000000 --- a/data/nhi_pedot_h_a_smoke_osmolality_outsource_template.csv +++ /dev/null @@ -1,13 +0,0 @@ -run_id,sample_event,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,,mOsm/kg,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,,mOsm/kg,,,,, diff --git a/data/nhi_pedot_h_a_source_drop_plan.csv b/data/nhi_pedot_h_a_source_drop_plan.csv deleted file mode 100644 index 4be0f0c..0000000 --- a/data/nhi_pedot_h_a_source_drop_plan.csv +++ /dev/null @@ -1,229 +0,0 @@ -profile,run_id,phase,sample_event,target_field,source_class,source_file,source_dir,source_dir_status,source_file_exists,source_file_allowed,value_filled,import_ready,source_file_requirement,capture_instruction -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,date,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,temperature_c,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,"Incubator log, probe export, or time-stamped photo.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,"Build sheet, sample label, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,electrode_material,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,"Supplier documentation, build sheet, or sample label record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,"SOP identifier, batch record, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,initial,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,initial,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,final,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,final,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,final,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,Time-stamped image or vendor inspection report.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,Time-stamped image or microscopy/stereoscope export.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h,already_exists,false,true,false,false,Image-analysis export or vendor microscopy report.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,date,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,temperature_c,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,"Incubator log, probe export, or time-stamped photo.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,"Build sheet, sample label, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,electrode_material,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,"Supplier documentation, build sheet, or sample label record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,"SOP identifier, batch record, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,initial,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,initial,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,final,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,final,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,final,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,Time-stamped image or vendor inspection report.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,Time-stamped image or microscopy/stereoscope export.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h,already_exists,false,true,false,false,Image-analysis export or vendor microscopy report.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,date,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,temperature_c,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,"Incubator log, probe export, or time-stamped photo.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,"Build sheet, sample label, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,electrode_material,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,"Supplier documentation, build sheet, or sample label record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,"SOP identifier, batch record, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,initial,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,initial,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,final,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,final,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,final,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,Time-stamped image or vendor inspection report.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,Time-stamped image or microscopy/stereoscope export.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h,already_exists,false,true,false,false,Image-analysis export or vendor microscopy report.,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,date,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,temperature_c,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,"Incubator log, probe export, or time-stamped photo.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,"Build sheet, sample label, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,electrode_material,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,"Supplier documentation, build sheet, or sample label record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,"SOP identifier, batch record, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,initial,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,initial,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,final,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,final,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,final,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,Time-stamped image or vendor inspection report.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,Time-stamped image or microscopy/stereoscope export.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,already_exists,false,true,false,false,Image-analysis export or vendor microscopy report.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,date,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,temperature_c,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,"Incubator log, probe export, or time-stamped photo.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,"Build sheet, sample label, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,electrode_material,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,"Supplier documentation, build sheet, or sample label record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,"SOP identifier, batch record, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,initial,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,initial,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,final,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,final,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,final,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,Time-stamped image or vendor inspection report.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,Time-stamped image or microscopy/stereoscope export.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,already_exists,false,true,false,false,Image-analysis export or vendor microscopy report.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,date,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,temperature_c,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,"Incubator log, probe export, or time-stamped photo.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,"Build sheet, sample label, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,electrode_material,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,"Supplier documentation, build sheet, or sample label record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,"SOP identifier, batch record, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,initial,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,initial,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,final,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,final,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,final,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,Time-stamped image or vendor inspection report.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,Time-stamped image or microscopy/stereoscope export.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,already_exists,false,true,false,false,Image-analysis export or vendor microscopy report.,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,date,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,temperature_c,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,"Incubator log, probe export, or time-stamped photo.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,"Build sheet, sample label, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,electrode_material,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,"Supplier documentation, build sheet, or sample label record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,"SOP identifier, batch record, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,initial,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,initial,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,final,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,final,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,final,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,Time-stamped image or vendor inspection report.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,Time-stamped image or microscopy/stereoscope export.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,already_exists,false,true,false,false,Image-analysis export or vendor microscopy report.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,date,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,temperature_c,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,"Incubator log, probe export, or time-stamped photo.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,"Build sheet, sample label, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,electrode_material,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,"Supplier documentation, build sheet, or sample label record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,"SOP identifier, batch record, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,initial,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,initial,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,final,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,final,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,final,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,Time-stamped image or vendor inspection report.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,Time-stamped image or microscopy/stereoscope export.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,already_exists,false,true,false,false,Image-analysis export or vendor microscopy report.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,date,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,temperature_c,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,"Incubator log, probe export, or time-stamped photo.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,"Build sheet, sample label, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,electrode_material,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,"Supplier documentation, build sheet, or sample label record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,"SOP identifier, batch record, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,initial,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,initial,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,final,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,final,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,final,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,Time-stamped image or vendor inspection report.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,Time-stamped image or microscopy/stereoscope export.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,already_exists,false,true,false,false,Image-analysis export or vendor microscopy report.,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,date,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,temperature_c,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,"Incubator log, probe export, or time-stamped photo.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,"Build sheet, sample label, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,electrode_material,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,"Supplier documentation, build sheet, or sample label record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,"SOP identifier, batch record, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,initial,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,initial,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,final,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,final,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,final,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,Time-stamped image or vendor inspection report.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,Time-stamped image or microscopy/stereoscope export.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,already_exists,false,true,false,false,Image-analysis export or vendor microscopy report.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,date,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,temperature_c,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,"Incubator log, probe export, or time-stamped photo.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,"Build sheet, sample label, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,electrode_material,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,"Supplier documentation, build sheet, or sample label record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,"SOP identifier, batch record, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,initial,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,initial,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,final,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,final,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,final,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,Time-stamped image or vendor inspection report.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,Time-stamped image or microscopy/stereoscope export.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,already_exists,false,true,false,false,Image-analysis export or vendor microscopy report.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,date,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,"Bench sheet, vendor report, or chain-of-custody CSV.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,medium_name,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,"Medium bottle photo, lot CoA, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,medium_lot,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,"Lot CoA, bottle label image, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,temperature_c,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,"Incubator log, probe export, or time-stamped photo.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,mea_coupon_id,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,"Build sheet, sample label, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,electrode_material,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,"Supplier documentation, build sheet, or sample label record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,laminin_or_peptide_density,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,"Recipe record, supplier CoA, coating log, or build sheet.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,metadata,sterilization_or_aseptic_protocol,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,"SOP identifier, batch record, or chain-of-custody record.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,initial,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,initial,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,initial,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,final,pH,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_pH_pH_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,final,osmolality,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,Osmometer report/export reconciled to run_id.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,final,conductivity,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,physical_inspection,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,Time-stamped image or vendor inspection report.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,physical_inspection,visible_shedding,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,Time-stamped image or microscopy/stereoscope export.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,physical_inspection,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,"Image analysis export, caliper log, or mass/dimension worksheet.","Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,physical_inspection,delamination_score,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,Image plus scoring worksheet or vendor image-analysis report.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -h_a,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,physical_inspection,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,already_exists,false,true,false,false,Image-analysis export or vendor microscopy report.,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." diff --git a/data/nhi_pedot_h_a_source_drop_plan.json b/data/nhi_pedot_h_a_source_drop_plan.json deleted file mode 100644 index d724803..0000000 --- a/data/nhi_pedot_h_a_source_drop_plan.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "boundary": "This creates allowed source-file directories and a missing-file plan only. It does not create raw measurement files or measured evidence.", - "generated_artifacts": { - "csv": "data/nhi_pedot_h_a_source_drop_plan.csv", - "json": "data/nhi_pedot_h_a_source_drop_plan.json", - "report": "reports/nhi_pedot_h_a_source_drop_plan.md" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/nhi_pedot_h_a_source_values.csv" - }, - "label": "NHI-PEDOT H-A", - "profile": "h_a", - "status": "nhi_pedot_h_a_source_drop_plan_ready", - "summary": { - "allowed_source_file_count": 228, - "created_source_dir_count": 0, - "existing_source_file_count": 0, - "filled_value_rows": 0, - "import_ready_rows": 0, - "missing_source_file_count": 228, - "planned_source_file_count": 228, - "source_class_counts": { - "bench_or_chain_of_custody_record": 36, - "conductivity_meter_export_or_photo": 24, - "image_or_scoring_worksheet": 48, - "osmometer_report_or_export": 24, - "pH_meter_export_or_photo": 24, - "supplier_or_build_record": 48, - "swelling_dimension_or_mass_worksheet": 12, - "temperature_or_incubator_log": 12 - }, - "source_dir_count": 48, - "source_dir_status_counts": { - "already_exists": 228 - } - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_source_file_template_manifest.csv b/data/nhi_pedot_h_a_source_file_template_manifest.csv deleted file mode 100644 index 917f059..0000000 --- a/data/nhi_pedot_h_a_source_file_template_manifest.csv +++ /dev/null @@ -1,9 +0,0 @@ -profile,source_class,template_file,template_row_count,target_source_files,accepted_extensions,required_source_metadata,template_columns,boundary -h_a,bench_or_chain_of_custody_record,data/limina_source_file_templates/h_a/source_class_templates/bench_or_chain_of_custody_record.csv,36,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv;data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,"run_id or sample_id, operator, date, transfer or exposure event",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;record_type;record_id;sample_id;medium_name;medium_lot;transfer_or_exposure_event,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -h_a,conductivity_meter_export_or_photo,data/limina_source_file_templates/h_a/source_class_templates/conductivity_meter_export_or_photo.csv,24,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id, measurement date, instrument_id or standard-check record",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;conductivity_mS_cm;conductivity_meter_id;standard_check_record_id;temperature_c,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -h_a,image_or_scoring_worksheet,data/limina_source_file_templates/h_a/source_class_templates/image_or_scoring_worksheet.csv,48,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic;.tif;.tiff,"run_id, imaging/scoring method, operator or vendor",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;image_file_name;imaging_method;scoring_method;score_or_boolean;reviewer,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -h_a,osmometer_report_or_export,data/limina_source_file_templates/h_a/source_class_templates/osmometer_report_or_export.csv,24,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_osmolality_osmometer_report_or_export.pdf;data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,"run_id, mOsm/kg value, vendor or osmometer identifier",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;osmolality_mOsm_kg;osmometer_id;report_id;vendor_or_lab,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -h_a,pH_meter_export_or_photo,data/limina_source_file_templates/h_a/source_class_templates/pH_meter_export_or_photo.csv,24,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_pH_pH_meter_export_or_photo.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_pH_pH_meter_export_or_photo.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id, measurement date, instrument_id or calibration record",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;pH_value;pH_meter_id;calibration_record_id;temperature_c,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -h_a,supplier_or_build_record,data/limina_source_file_templates/h_a/source_class_templates/supplier_or_build_record.csv,48,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf;data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,"lot, recipe, CoA, label, or build identifier",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;supplier_or_builder;lot;recipe_or_coa_id;batch_id;label_or_build_record_id,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -h_a,swelling_dimension_or_mass_worksheet,data/limina_source_file_templates/h_a/source_class_templates/swelling_dimension_or_mass_worksheet.csv,12,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,"run_id, pre/post measurement basis, method, operator",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;pre_measurement;post_measurement;measurement_basis;calculation;swelling_fraction,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -h_a,temperature_or_incubator_log,data/limina_source_file_templates/h_a/source_class_templates/temperature_or_incubator_log.csv,12,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv;data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv;data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv;data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv;data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id or batch window, date/time, temperature source",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;temperature_c;temperature_source;covered_window_start;covered_window_end;probe_or_incubator_id,Template only; copy or export real instrument/report/worksheet data to the target source_file path. diff --git a/data/nhi_pedot_h_a_source_file_template_pack.json b/data/nhi_pedot_h_a_source_file_template_pack.json deleted file mode 100644 index 1a79947..0000000 --- a/data/nhi_pedot_h_a_source_file_template_pack.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "boundary": "Templates are outside allowed source-file roots and are never measured evidence. Only real files placed at target source_file paths can support measured rows.", - "generated_artifacts": { - "csv": "data/nhi_pedot_h_a_source_file_template_manifest.csv", - "json": "data/nhi_pedot_h_a_source_file_template_pack.json", - "report": "reports/nhi_pedot_h_a_source_file_template_pack.md", - "template_dir": "data/limina_source_file_templates/h_a" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/nhi_pedot_h_a_source_values.csv" - }, - "label": "NHI-PEDOT H-A", - "profile": "h_a", - "status": "nhi_pedot_h_a_source_file_template_pack_ready", - "summary": { - "generated_template_files": 8, - "source_class_counts": { - "bench_or_chain_of_custody_record": 36, - "conductivity_meter_export_or_photo": 24, - "image_or_scoring_worksheet": 48, - "osmometer_report_or_export": 24, - "pH_meter_export_or_photo": 24, - "supplier_or_build_record": 48, - "swelling_dimension_or_mass_worksheet": 12, - "temperature_or_incubator_log": 12 - }, - "source_class_template_count": 8, - "source_value_rows": 228, - "target_extension_counts": { - ".csv": 108, - ".pdf": 72, - ".png": 48 - }, - "target_source_file_count": 228, - "template_manifest_rows": 8 - }, - "templates": [ - "data/limina_source_file_templates/h_a/source_class_templates/bench_or_chain_of_custody_record.csv", - "data/limina_source_file_templates/h_a/source_class_templates/conductivity_meter_export_or_photo.csv", - "data/limina_source_file_templates/h_a/source_class_templates/image_or_scoring_worksheet.csv", - "data/limina_source_file_templates/h_a/source_class_templates/osmometer_report_or_export.csv", - "data/limina_source_file_templates/h_a/source_class_templates/pH_meter_export_or_photo.csv", - "data/limina_source_file_templates/h_a/source_class_templates/supplier_or_build_record.csv", - "data/limina_source_file_templates/h_a/source_class_templates/swelling_dimension_or_mass_worksheet.csv", - "data/limina_source_file_templates/h_a/source_class_templates/temperature_or_incubator_log.csv" - ] -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv b/data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv deleted file mode 100644 index e1678fc..0000000 --- a/data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv +++ /dev/null @@ -1,97 +0,0 @@ -bundle_id,priority,run_id,article_id,timepoint,source_class,consolidated_source_file,target_fields,source_value_rows,instrument_required,source_file_requirement,existing_source_file,allowed_source_file,operator_action -H-A-BUNDLE-001,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_metadata_chain_of_custody_record.csv,date;medium_lot;medium_name,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-002,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_conductivity_meter_export_or_photo.csv,conductivity,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-003,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-004,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_osmolality_report_or_export.pdf,osmolality,2,true,Osmometer report/export reconciled to run_id.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-005,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_pH_meter_export_or_photo.csv,pH,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-006,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_build_or_supplier_record.pdf,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-007,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-008,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_temperature_or_incubator_log.csv,temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-009,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_metadata_chain_of_custody_record.csv,date;medium_lot;medium_name,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-010,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_conductivity_meter_export_or_photo.csv,conductivity,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-011,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-012,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_osmolality_report_or_export.pdf,osmolality,2,true,Osmometer report/export reconciled to run_id.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-013,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_pH_meter_export_or_photo.csv,pH,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-014,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_build_or_supplier_record.pdf,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-015,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-016,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_temperature_or_incubator_log.csv,temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-017,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_metadata_chain_of_custody_record.csv,date;medium_lot;medium_name,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-018,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_conductivity_meter_export_or_photo.csv,conductivity,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-019,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-020,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_osmolality_report_or_export.pdf,osmolality,2,true,Osmometer report/export reconciled to run_id.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-021,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_pH_meter_export_or_photo.csv,pH,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-022,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_build_or_supplier_record.pdf,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-023,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-024,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_temperature_or_incubator_log.csv,temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-025,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_metadata_chain_of_custody_record.csv,date;medium_lot;medium_name,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-026,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_conductivity_meter_export_or_photo.csv,conductivity,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-027,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-028,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_osmolality_report_or_export.pdf,osmolality,2,true,Osmometer report/export reconciled to run_id.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-029,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_pH_meter_export_or_photo.csv,pH,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-030,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_build_or_supplier_record.pdf,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-031,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-032,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_temperature_or_incubator_log.csv,temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-033,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_metadata_chain_of_custody_record.csv,date;medium_lot;medium_name,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-034,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_conductivity_meter_export_or_photo.csv,conductivity,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-035,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-036,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_osmolality_report_or_export.pdf,osmolality,2,true,Osmometer report/export reconciled to run_id.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-037,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_pH_meter_export_or_photo.csv,pH,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-038,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_build_or_supplier_record.pdf,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-039,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-040,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_temperature_or_incubator_log.csv,temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-041,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_metadata_chain_of_custody_record.csv,date;medium_lot;medium_name,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-042,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_conductivity_meter_export_or_photo.csv,conductivity,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-043,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-044,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_osmolality_report_or_export.pdf,osmolality,2,true,Osmometer report/export reconciled to run_id.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-045,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_pH_meter_export_or_photo.csv,pH,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-046,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_build_or_supplier_record.pdf,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-047,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-048,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_temperature_or_incubator_log.csv,temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-049,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_metadata_chain_of_custody_record.csv,date;medium_lot;medium_name,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-050,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_conductivity_meter_export_or_photo.csv,conductivity,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-051,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-052,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_osmolality_report_or_export.pdf,osmolality,2,true,Osmometer report/export reconciled to run_id.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-053,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_pH_meter_export_or_photo.csv,pH,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-054,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_build_or_supplier_record.pdf,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-055,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-056,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_temperature_or_incubator_log.csv,temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-057,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_metadata_chain_of_custody_record.csv,date;medium_lot;medium_name,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-058,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_conductivity_meter_export_or_photo.csv,conductivity,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-059,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-060,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_osmolality_report_or_export.pdf,osmolality,2,true,Osmometer report/export reconciled to run_id.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-061,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_pH_meter_export_or_photo.csv,pH,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-062,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_build_or_supplier_record.pdf,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-063,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-064,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_temperature_or_incubator_log.csv,temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-065,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_metadata_chain_of_custody_record.csv,date;medium_lot;medium_name,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-066,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_conductivity_meter_export_or_photo.csv,conductivity,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-067,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-068,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_osmolality_report_or_export.pdf,osmolality,2,true,Osmometer report/export reconciled to run_id.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-069,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_pH_meter_export_or_photo.csv,pH,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-070,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_build_or_supplier_record.pdf,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-071,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-072,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_temperature_or_incubator_log.csv,temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-073,1,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_metadata_chain_of_custody_record.csv,date;medium_lot;medium_name,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-074,2,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_conductivity_meter_export_or_photo.csv,conductivity,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-075,3,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-076,2,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_osmolality_report_or_export.pdf,osmolality,2,true,Osmometer report/export reconciled to run_id.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-077,2,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_pH_meter_export_or_photo.csv,pH,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-078,1,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_build_or_supplier_record.pdf,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-079,3,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-080,1,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_temperature_or_incubator_log.csv,temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-081,1,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_metadata_chain_of_custody_record.csv,date;medium_lot;medium_name,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-082,2,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_conductivity_meter_export_or_photo.csv,conductivity,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-083,3,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-084,2,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_osmolality_report_or_export.pdf,osmolality,2,true,Osmometer report/export reconciled to run_id.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-085,2,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_pH_meter_export_or_photo.csv,pH,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-086,1,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_build_or_supplier_record.pdf,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-087,3,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-088,1,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_temperature_or_incubator_log.csv,temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-089,1,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_metadata_chain_of_custody_record.csv,date;medium_lot;medium_name,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-090,2,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_conductivity_meter_export_or_photo.csv,conductivity,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-091,3,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-092,2,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_osmolality_report_or_export.pdf,osmolality,2,true,Osmometer report/export reconciled to run_id.,false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-093,2,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_pH_meter_export_or_photo.csv,pH,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-094,1,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_build_or_supplier_record.pdf,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-095,3,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." -H-A-BUNDLE-096,1,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_temperature_or_incubator_log.csv,temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,true,"Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv." diff --git a/data/nhi_pedot_h_a_source_unlock_pack.json b/data/nhi_pedot_h_a_source_unlock_pack.json deleted file mode 100644 index 283c8c4..0000000 --- a/data/nhi_pedot_h_a_source_unlock_pack.json +++ /dev/null @@ -1,1574 +0,0 @@ -{ - "boundary": "This handoff pack consolidates required source-file delivery paths only. It does not create measured evidence; importers and claim audit still require real files and real values.", - "bundles": [ - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-001", - "consolidated_source_file": "data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_metadata_chain_of_custody_record.csv", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.", - "source_value_rows": 3, - "target_fields": "date;medium_lot;medium_name", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-002", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_conductivity_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "conductivity", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-003", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_physical_inspection_scoring_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.", - "source_value_rows": 4, - "target_fields": "delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-004", - "consolidated_source_file": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_osmolality_report_or_export.pdf", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "osmolality", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-005", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_pH_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "pH", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-006", - "consolidated_source_file": "data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_build_or_supplier_record.pdf", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.", - "source_value_rows": 4, - "target_fields": "electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-007", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "source_value_rows": 1, - "target_fields": "swelling_fraction", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-008", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_temperature_or_incubator_log.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "source_value_rows": 1, - "target_fields": "temperature_c", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-009", - "consolidated_source_file": "data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_metadata_chain_of_custody_record.csv", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.", - "source_value_rows": 3, - "target_fields": "date;medium_lot;medium_name", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-010", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_conductivity_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "conductivity", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-011", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_physical_inspection_scoring_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.", - "source_value_rows": 4, - "target_fields": "delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-012", - "consolidated_source_file": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_osmolality_report_or_export.pdf", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "osmolality", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-013", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_pH_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "pH", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-014", - "consolidated_source_file": "data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_build_or_supplier_record.pdf", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.", - "source_value_rows": 4, - "target_fields": "electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-015", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "source_value_rows": 1, - "target_fields": "swelling_fraction", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-016", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_temperature_or_incubator_log.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "source_value_rows": 1, - "target_fields": "temperature_c", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-017", - "consolidated_source_file": "data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_metadata_chain_of_custody_record.csv", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.", - "source_value_rows": 3, - "target_fields": "date;medium_lot;medium_name", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-018", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_conductivity_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "conductivity", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-019", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_physical_inspection_scoring_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.", - "source_value_rows": 4, - "target_fields": "delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-020", - "consolidated_source_file": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_osmolality_report_or_export.pdf", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "osmolality", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-021", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_pH_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "pH", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-022", - "consolidated_source_file": "data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_build_or_supplier_record.pdf", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.", - "source_value_rows": 4, - "target_fields": "electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-023", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "source_value_rows": 1, - "target_fields": "swelling_fraction", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "challenge_nhi_pedot_high_loading", - "bundle_id": "H-A-BUNDLE-024", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_temperature_or_incubator_log.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "source_value_rows": 1, - "target_fields": "temperature_c", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-025", - "consolidated_source_file": "data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_metadata_chain_of_custody_record.csv", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.", - "source_value_rows": 3, - "target_fields": "date;medium_lot;medium_name", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-026", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_conductivity_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "conductivity", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-027", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_physical_inspection_scoring_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.", - "source_value_rows": 4, - "target_fields": "delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-028", - "consolidated_source_file": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_osmolality_report_or_export.pdf", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "osmolality", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-029", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_pH_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "pH", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-030", - "consolidated_source_file": "data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_build_or_supplier_record.pdf", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.", - "source_value_rows": 4, - "target_fields": "electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-031", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "source_value_rows": 1, - "target_fields": "swelling_fraction", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-032", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_temperature_or_incubator_log.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "source_value_rows": 1, - "target_fields": "temperature_c", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-033", - "consolidated_source_file": "data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_metadata_chain_of_custody_record.csv", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.", - "source_value_rows": 3, - "target_fields": "date;medium_lot;medium_name", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-034", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_conductivity_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "conductivity", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-035", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_physical_inspection_scoring_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.", - "source_value_rows": 4, - "target_fields": "delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-036", - "consolidated_source_file": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_osmolality_report_or_export.pdf", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "osmolality", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-037", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_pH_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "pH", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-038", - "consolidated_source_file": "data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_build_or_supplier_record.pdf", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.", - "source_value_rows": 4, - "target_fields": "electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-039", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "source_value_rows": 1, - "target_fields": "swelling_fraction", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-040", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_temperature_or_incubator_log.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "source_value_rows": 1, - "target_fields": "temperature_c", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-041", - "consolidated_source_file": "data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_metadata_chain_of_custody_record.csv", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.", - "source_value_rows": 3, - "target_fields": "date;medium_lot;medium_name", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-042", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_conductivity_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "conductivity", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-043", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_physical_inspection_scoring_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.", - "source_value_rows": 4, - "target_fields": "delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-044", - "consolidated_source_file": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_osmolality_report_or_export.pdf", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "osmolality", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-045", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_pH_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "pH", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-046", - "consolidated_source_file": "data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_build_or_supplier_record.pdf", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.", - "source_value_rows": 4, - "target_fields": "electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-047", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "source_value_rows": 1, - "target_fields": "swelling_fraction", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "hydrogel_laminin_control", - "bundle_id": "H-A-BUNDLE-048", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_temperature_or_incubator_log.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "source_value_rows": 1, - "target_fields": "temperature_c", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-049", - "consolidated_source_file": "data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_metadata_chain_of_custody_record.csv", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.", - "source_value_rows": 3, - "target_fields": "date;medium_lot;medium_name", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-050", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_conductivity_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "conductivity", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-051", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_physical_inspection_scoring_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.", - "source_value_rows": 4, - "target_fields": "delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-052", - "consolidated_source_file": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_osmolality_report_or_export.pdf", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "osmolality", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-053", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_pH_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "pH", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-054", - "consolidated_source_file": "data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_build_or_supplier_record.pdf", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.", - "source_value_rows": 4, - "target_fields": "electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-055", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "source_value_rows": 1, - "target_fields": "swelling_fraction", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-056", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_temperature_or_incubator_log.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "source_value_rows": 1, - "target_fields": "temperature_c", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-057", - "consolidated_source_file": "data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_metadata_chain_of_custody_record.csv", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.", - "source_value_rows": 3, - "target_fields": "date;medium_lot;medium_name", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-058", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_conductivity_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "conductivity", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-059", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_physical_inspection_scoring_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.", - "source_value_rows": 4, - "target_fields": "delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-060", - "consolidated_source_file": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_osmolality_report_or_export.pdf", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "osmolality", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-061", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_pH_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "pH", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-062", - "consolidated_source_file": "data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_build_or_supplier_record.pdf", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.", - "source_value_rows": 4, - "target_fields": "electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-063", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "source_value_rows": 1, - "target_fields": "swelling_fraction", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-064", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_temperature_or_incubator_log.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "source_value_rows": 1, - "target_fields": "temperature_c", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-065", - "consolidated_source_file": "data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_metadata_chain_of_custody_record.csv", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.", - "source_value_rows": 3, - "target_fields": "date;medium_lot;medium_name", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-066", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_conductivity_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "conductivity", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-067", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_physical_inspection_scoring_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.", - "source_value_rows": 4, - "target_fields": "delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-068", - "consolidated_source_file": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_osmolality_report_or_export.pdf", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "osmolality", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-069", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_pH_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "pH", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-070", - "consolidated_source_file": "data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_build_or_supplier_record.pdf", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.", - "source_value_rows": 4, - "target_fields": "electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-071", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "source_value_rows": 1, - "target_fields": "swelling_fraction", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "lead_nhi_pedot_low_loading", - "bundle_id": "H-A-BUNDLE-072", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_temperature_or_incubator_log.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "source_value_rows": 1, - "target_fields": "temperature_c", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-073", - "consolidated_source_file": "data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_metadata_chain_of_custody_record.csv", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.", - "source_value_rows": 3, - "target_fields": "date;medium_lot;medium_name", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-074", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_conductivity_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "conductivity", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-075", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_physical_inspection_scoring_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.", - "source_value_rows": 4, - "target_fields": "delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-076", - "consolidated_source_file": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_osmolality_report_or_export.pdf", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "osmolality", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-077", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_pH_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "pH", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-078", - "consolidated_source_file": "data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_build_or_supplier_record.pdf", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.", - "source_value_rows": 4, - "target_fields": "electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-079", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "source_value_rows": 1, - "target_fields": "swelling_fraction", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-080", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_temperature_or_incubator_log.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "source_value_rows": 1, - "target_fields": "temperature_c", - "timepoint": "0h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-081", - "consolidated_source_file": "data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_metadata_chain_of_custody_record.csv", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.", - "source_value_rows": 3, - "target_fields": "date;medium_lot;medium_name", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-082", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_conductivity_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "conductivity", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-083", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_physical_inspection_scoring_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.", - "source_value_rows": 4, - "target_fields": "delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-084", - "consolidated_source_file": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_osmolality_report_or_export.pdf", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "osmolality", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-085", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_pH_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "pH", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-086", - "consolidated_source_file": "data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_build_or_supplier_record.pdf", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.", - "source_value_rows": 4, - "target_fields": "electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-087", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "source_value_rows": 1, - "target_fields": "swelling_fraction", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-088", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_temperature_or_incubator_log.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "source_value_rows": 1, - "target_fields": "temperature_c", - "timepoint": "24h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-089", - "consolidated_source_file": "data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_metadata_chain_of_custody_record.csv", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "source_class": "bench_or_chain_of_custody_record", - "source_file_requirement": "Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.", - "source_value_rows": 3, - "target_fields": "date;medium_lot;medium_name", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-090", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_conductivity_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "source_class": "conductivity_meter_export_or_photo", - "source_file_requirement": "Conductivity meter export, calibration log, or display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "conductivity", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-091", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_physical_inspection_scoring_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "source_class": "image_or_scoring_worksheet", - "source_file_requirement": "Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.", - "source_value_rows": 4, - "target_fields": "delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-092", - "consolidated_source_file": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_osmolality_report_or_export.pdf", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "source_class": "osmometer_report_or_export", - "source_file_requirement": "Osmometer report/export reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "osmolality", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-093", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_pH_meter_export_or_photo.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 2, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "source_class": "pH_meter_export_or_photo", - "source_file_requirement": "Meter export, calibration log, or time-stamped display photo reconciled to run_id.", - "source_value_rows": 2, - "target_fields": "pH", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-094", - "consolidated_source_file": "data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_build_or_supplier_record.pdf", - "existing_source_file": "false", - "instrument_required": "false", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "source_class": "supplier_or_build_record", - "source_file_requirement": "Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.", - "source_value_rows": 4, - "target_fields": "electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-095", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 3, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file_requirement": "Image analysis export, caliper log, or mass/dimension worksheet.", - "source_value_rows": 1, - "target_fields": "swelling_fraction", - "timepoint": "72h" - }, - { - "allowed_source_file": "true", - "article_id": "no_coating_mea_control", - "bundle_id": "H-A-BUNDLE-096", - "consolidated_source_file": "data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_temperature_or_incubator_log.csv", - "existing_source_file": "false", - "instrument_required": "true", - "operator_action": "Place the real raw export/report/worksheet at this path, then cite this same path for each listed target_field in data/nhi_pedot_h_a_source_values.csv.", - "priority": 1, - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "source_class": "temperature_or_incubator_log", - "source_file_requirement": "Incubator log, probe export, or time-stamped photo.", - "source_value_rows": 1, - "target_fields": "temperature_c", - "timepoint": "72h" - } - ], - "generated_artifacts": { - "csv": "data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv", - "json": "data/nhi_pedot_h_a_source_unlock_pack.json", - "report": "reports/nhi_pedot_h_a_source_unlock_pack.md" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/nhi_pedot_h_a_source_values.csv" - }, - "status": "h_a_source_unlock_pack_ready", - "summary": { - "allowed_bundle_files": 96, - "bundle_count": 96, - "existing_bundle_files": 0, - "missing_bundle_files": 96, - "missing_required_columns": [], - "priority_counts": { - "1": 36, - "2": 36, - "3": 24 - }, - "source_class_counts": { - "bench_or_chain_of_custody_record": 12, - "conductivity_meter_export_or_photo": 12, - "image_or_scoring_worksheet": 12, - "osmometer_report_or_export": 12, - "pH_meter_export_or_photo": 12, - "supplier_or_build_record": 12, - "swelling_dimension_or_mass_worksheet": 12, - "temperature_or_incubator_log": 12 - }, - "source_value_rows": 228 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_source_value_import.json b/data/nhi_pedot_h_a_source_value_import.json deleted file mode 100644 index ca94daa..0000000 --- a/data/nhi_pedot_h_a_source_value_import.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "accepted_sidecar_schema": [ - "run_id", - "sample_event", - "target_field", - "value", - "unit", - "measured_at", - "operator_or_agent", - "instrument_id", - "source_file", - "notes" - ], - "boundary": "This importer only copies source-file-backed H-A values into the formal raw template. It does not create evidence; merge, source-file validation, H-A QC, interpretation, and claim audit still control the gate.", - "imported_rows": [], - "inputs": { - "raw": "data/nhi_pedot_h_a_raw_measurements_template.csv", - "source_manifest": "data/limina_source_file_manifest.json", - "value_globs": [ - "data/nhi_pedot_h_a_raw_csv_extracted_values.csv", - "data/nhi_pedot_h_a_vendor_return_inbox/completed_raw_measurements.csv" - ] - }, - "issues": [], - "source_value_files": [ - "data/nhi_pedot_h_a_raw_csv_extracted_values.csv", - "data/nhi_pedot_h_a_source_values.csv" - ], - "status": "h_a_source_value_import_no_importable_rows", - "summary": { - "changed_rows": 0, - "error_count": 0, - "imported_rows": 0, - "skipped_blank_rows": 228, - "source_value_files": 2, - "source_value_rows": 228, - "unchanged_rows": 0, - "warning_count": 0 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_source_values.csv b/data/nhi_pedot_h_a_source_values.csv deleted file mode 100644 index a64b566..0000000 --- a/data/nhi_pedot_h_a_source_values.csv +++ /dev/null @@ -1,229 +0,0 @@ -run_id,sample_event,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes,route,wide_field,instrument_class,instrument_required,source_class,recommended_source_file,source_file_exists,source_file_requirement,review_status,missing_items,capture_instruction -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,date,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,false,"Bench sheet, vendor report, or chain-of-custody CSV.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_name,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_lot,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,false,"Lot CoA, bottle label image, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,temperature_c,,C,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,,inhouse_ready,temperature_c,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,false,"Incubator log, probe export, or time-stamped photo.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,supplier_or_build_record,mea_coupon_id,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,false,"Build sheet, sample label, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,,supplier_or_build_record,electrode_material,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,false,"Supplier documentation, build sheet, or sample label record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,supplier_or_build_record,laminin_or_peptide_density,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,false,"Recipe record, supplier CoA, coating log, or build sheet.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,supplier_or_build_record,sterilization_or_aseptic_protocol,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,false,"SOP identifier, batch record, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_initial,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_initial_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,initial,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_initial_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_final,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_final_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,final,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_final_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_precipitate,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,inhouse_ready,visible_precipitate,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,false,Time-stamped image or vendor inspection report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,visible_shedding,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,inhouse_ready,visible_shedding,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,false,Time-stamped image or microscopy/stereoscope export.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,inhouse_ready,swelling_fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,"Image analysis export, caliper log, or mass/dimension worksheet.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,delamination_score,,score,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,inhouse_ready,delamination_score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,false,Image plus scoring worksheet or vendor image-analysis report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,inhouse_ready,optical_transparency_fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,false,Image-analysis export or vendor microscopy report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-0h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,date,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,false,"Bench sheet, vendor report, or chain-of-custody CSV.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_name,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_lot,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,false,"Lot CoA, bottle label image, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,temperature_c,,C,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,inhouse_ready,temperature_c,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,false,"Incubator log, probe export, or time-stamped photo.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,supplier_or_build_record,mea_coupon_id,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,false,"Build sheet, sample label, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,supplier_or_build_record,electrode_material,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,false,"Supplier documentation, build sheet, or sample label record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,supplier_or_build_record,laminin_or_peptide_density,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,false,"Recipe record, supplier CoA, coating log, or build sheet.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,supplier_or_build_record,sterilization_or_aseptic_protocol,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,false,"SOP identifier, batch record, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_initial,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_initial_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,initial,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_initial_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_final,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_final_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,final,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_final_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_precipitate,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,inhouse_ready,visible_precipitate,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,false,Time-stamped image or vendor inspection report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,visible_shedding,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,inhouse_ready,visible_shedding,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,false,Time-stamped image or microscopy/stereoscope export.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,inhouse_ready,swelling_fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,"Image analysis export, caliper log, or mass/dimension worksheet.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,delamination_score,,score,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,inhouse_ready,delamination_score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,false,Image plus scoring worksheet or vendor image-analysis report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,inhouse_ready,optical_transparency_fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,false,Image-analysis export or vendor microscopy report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-24h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,date,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,false,"Bench sheet, vendor report, or chain-of-custody CSV.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_name,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_lot,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,false,"Lot CoA, bottle label image, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,temperature_c,,C,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,,inhouse_ready,temperature_c,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,false,"Incubator log, probe export, or time-stamped photo.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,supplier_or_build_record,mea_coupon_id,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,false,"Build sheet, sample label, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,,supplier_or_build_record,electrode_material,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,false,"Supplier documentation, build sheet, or sample label record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,supplier_or_build_record,laminin_or_peptide_density,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,false,"Recipe record, supplier CoA, coating log, or build sheet.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,supplier_or_build_record,sterilization_or_aseptic_protocol,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,false,"SOP identifier, batch record, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_initial,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_initial_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,initial,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_initial_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_final,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_final_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,final,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_final_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,visible_precipitate,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,inhouse_ready,visible_precipitate,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,false,Time-stamped image or vendor inspection report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,visible_shedding,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,inhouse_ready,visible_shedding,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,false,Time-stamped image or microscopy/stereoscope export.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,swelling_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,inhouse_ready,swelling_fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,"Image analysis export, caliper log, or mass/dimension worksheet.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,delamination_score,,score,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,inhouse_ready,delamination_score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,false,Image plus scoring worksheet or vendor image-analysis report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,physical_inspection,optical_transparency_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,inhouse_ready,optical_transparency_fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,false,Image-analysis export or vendor microscopy report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-no_coating_mea_control-R1-72h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,date,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,false,"Bench sheet, vendor report, or chain-of-custody CSV.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_name,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_lot,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,false,"Lot CoA, bottle label image, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,temperature_c,,C,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,,inhouse_ready,temperature_c,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,false,"Incubator log, probe export, or time-stamped photo.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,supplier_or_build_record,mea_coupon_id,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,false,"Build sheet, sample label, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,,supplier_or_build_record,electrode_material,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,false,"Supplier documentation, build sheet, or sample label record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,supplier_or_build_record,laminin_or_peptide_density,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,false,"Recipe record, supplier CoA, coating log, or build sheet.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,supplier_or_build_record,sterilization_or_aseptic_protocol,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,false,"SOP identifier, batch record, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_initial,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_initial_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,initial,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_initial_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_final,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_final_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,final,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_final_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_precipitate,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,inhouse_ready,visible_precipitate,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,false,Time-stamped image or vendor inspection report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,visible_shedding,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,inhouse_ready,visible_shedding,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,false,Time-stamped image or microscopy/stereoscope export.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,inhouse_ready,swelling_fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,"Image analysis export, caliper log, or mass/dimension worksheet.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,delamination_score,,score,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,inhouse_ready,delamination_score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,false,Image plus scoring worksheet or vendor image-analysis report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,inhouse_ready,optical_transparency_fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,false,Image-analysis export or vendor microscopy report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,date,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,false,"Bench sheet, vendor report, or chain-of-custody CSV.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_name,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_lot,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,false,"Lot CoA, bottle label image, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,temperature_c,,C,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,inhouse_ready,temperature_c,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,false,"Incubator log, probe export, or time-stamped photo.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,supplier_or_build_record,mea_coupon_id,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,false,"Build sheet, sample label, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,supplier_or_build_record,electrode_material,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,false,"Supplier documentation, build sheet, or sample label record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,supplier_or_build_record,laminin_or_peptide_density,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,false,"Recipe record, supplier CoA, coating log, or build sheet.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,supplier_or_build_record,sterilization_or_aseptic_protocol,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,false,"SOP identifier, batch record, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_initial,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_initial_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,initial,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_initial_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_final,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_final_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,final,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_final_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_precipitate,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,inhouse_ready,visible_precipitate,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,false,Time-stamped image or vendor inspection report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,visible_shedding,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,inhouse_ready,visible_shedding,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,false,Time-stamped image or microscopy/stereoscope export.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,inhouse_ready,swelling_fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,"Image analysis export, caliper log, or mass/dimension worksheet.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,delamination_score,,score,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,inhouse_ready,delamination_score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,false,Image plus scoring worksheet or vendor image-analysis report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,inhouse_ready,optical_transparency_fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,false,Image-analysis export or vendor microscopy report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,date,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,false,"Bench sheet, vendor report, or chain-of-custody CSV.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_name,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_lot,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,false,"Lot CoA, bottle label image, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,temperature_c,,C,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,,inhouse_ready,temperature_c,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,false,"Incubator log, probe export, or time-stamped photo.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,supplier_or_build_record,mea_coupon_id,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,false,"Build sheet, sample label, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,,supplier_or_build_record,electrode_material,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,false,"Supplier documentation, build sheet, or sample label record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,supplier_or_build_record,laminin_or_peptide_density,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,false,"Recipe record, supplier CoA, coating log, or build sheet.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,supplier_or_build_record,sterilization_or_aseptic_protocol,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,false,"SOP identifier, batch record, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_initial,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_initial_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,initial,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_initial_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_final,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_final_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,final,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_final_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,visible_precipitate,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,inhouse_ready,visible_precipitate,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,false,Time-stamped image or vendor inspection report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,visible_shedding,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,inhouse_ready,visible_shedding,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,false,Time-stamped image or microscopy/stereoscope export.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,swelling_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,inhouse_ready,swelling_fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,"Image analysis export, caliper log, or mass/dimension worksheet.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,delamination_score,,score,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,inhouse_ready,delamination_score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,false,Image plus scoring worksheet or vendor image-analysis report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,physical_inspection,optical_transparency_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,inhouse_ready,optical_transparency_fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,false,Image-analysis export or vendor microscopy report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,date,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,false,"Bench sheet, vendor report, or chain-of-custody CSV.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_name,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_lot,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,false,"Lot CoA, bottle label image, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,temperature_c,,C,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,,inhouse_ready,temperature_c,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,false,"Incubator log, probe export, or time-stamped photo.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,supplier_or_build_record,mea_coupon_id,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,false,"Build sheet, sample label, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,,supplier_or_build_record,electrode_material,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,false,"Supplier documentation, build sheet, or sample label record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,supplier_or_build_record,laminin_or_peptide_density,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,false,"Recipe record, supplier CoA, coating log, or build sheet.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,supplier_or_build_record,sterilization_or_aseptic_protocol,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,false,"SOP identifier, batch record, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_initial,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_initial_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,initial,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_initial_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_final,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_final_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,final,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_final_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_precipitate,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,inhouse_ready,visible_precipitate,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,false,Time-stamped image or vendor inspection report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,visible_shedding,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,inhouse_ready,visible_shedding,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,false,Time-stamped image or microscopy/stereoscope export.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,inhouse_ready,swelling_fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,"Image analysis export, caliper log, or mass/dimension worksheet.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,delamination_score,,score,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,inhouse_ready,delamination_score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,false,Image plus scoring worksheet or vendor image-analysis report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,inhouse_ready,optical_transparency_fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,false,Image-analysis export or vendor microscopy report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,date,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,false,"Bench sheet, vendor report, or chain-of-custody CSV.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_name,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_lot,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,false,"Lot CoA, bottle label image, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,temperature_c,,C,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,inhouse_ready,temperature_c,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,false,"Incubator log, probe export, or time-stamped photo.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,supplier_or_build_record,mea_coupon_id,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,false,"Build sheet, sample label, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,supplier_or_build_record,electrode_material,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,false,"Supplier documentation, build sheet, or sample label record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,supplier_or_build_record,laminin_or_peptide_density,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,false,"Recipe record, supplier CoA, coating log, or build sheet.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,supplier_or_build_record,sterilization_or_aseptic_protocol,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,false,"SOP identifier, batch record, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_initial,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_initial_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,initial,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_initial_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_final,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_final_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,final,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_final_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_precipitate,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,inhouse_ready,visible_precipitate,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,false,Time-stamped image or vendor inspection report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,visible_shedding,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,inhouse_ready,visible_shedding,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,false,Time-stamped image or microscopy/stereoscope export.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,inhouse_ready,swelling_fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,"Image analysis export, caliper log, or mass/dimension worksheet.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,delamination_score,,score,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,inhouse_ready,delamination_score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,false,Image plus scoring worksheet or vendor image-analysis report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,inhouse_ready,optical_transparency_fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,false,Image-analysis export or vendor microscopy report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,date,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,false,"Bench sheet, vendor report, or chain-of-custody CSV.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_name,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_lot,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,false,"Lot CoA, bottle label image, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,temperature_c,,C,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,,inhouse_ready,temperature_c,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,false,"Incubator log, probe export, or time-stamped photo.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,supplier_or_build_record,mea_coupon_id,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,false,"Build sheet, sample label, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,,supplier_or_build_record,electrode_material,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,false,"Supplier documentation, build sheet, or sample label record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,supplier_or_build_record,laminin_or_peptide_density,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,false,"Recipe record, supplier CoA, coating log, or build sheet.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,supplier_or_build_record,sterilization_or_aseptic_protocol,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,false,"SOP identifier, batch record, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_initial,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_initial_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,initial,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_initial_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_final,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_final_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,final,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_final_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,visible_precipitate,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,inhouse_ready,visible_precipitate,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,false,Time-stamped image or vendor inspection report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,visible_shedding,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,inhouse_ready,visible_shedding,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,false,Time-stamped image or microscopy/stereoscope export.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,swelling_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,inhouse_ready,swelling_fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,"Image analysis export, caliper log, or mass/dimension worksheet.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,delamination_score,,score,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,inhouse_ready,delamination_score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,false,Image plus scoring worksheet or vendor image-analysis report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,physical_inspection,optical_transparency_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,inhouse_ready,optical_transparency_fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,false,Image-analysis export or vendor microscopy report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,date,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_date_bench_or_chain_of_custody_record.csv,false,"Bench sheet, vendor report, or chain-of-custody CSV.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_name,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_name_bench_or_chain_of_custody_record.csv,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_lot,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,false,"Lot CoA, bottle label image, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,temperature_c,,C,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,,inhouse_ready,temperature_c,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_temperature_c_temperature_or_incubator_log.csv,false,"Incubator log, probe export, or time-stamped photo.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,supplier_or_build_record,mea_coupon_id,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_mea_coupon_id_supplier_or_build_record.pdf,false,"Build sheet, sample label, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,,supplier_or_build_record,electrode_material,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_electrode_material_supplier_or_build_record.pdf,false,"Supplier documentation, build sheet, or sample label record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,supplier_or_build_record,laminin_or_peptide_density,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,false,"Recipe record, supplier CoA, coating log, or build sheet.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,supplier_or_build_record,sterilization_or_aseptic_protocol,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,false,"SOP identifier, batch record, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_initial,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_initial_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,initial,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_initial_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/initial_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_final,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_final_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,final,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_final_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/final_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,visible_precipitate,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,inhouse_ready,visible_precipitate,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,false,Time-stamped image or vendor inspection report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,visible_shedding,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,inhouse_ready,visible_shedding,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,false,Time-stamped image or microscopy/stereoscope export.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,swelling_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,inhouse_ready,swelling_fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,"Image analysis export, caliper log, or mass/dimension worksheet.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,delamination_score,,score,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,inhouse_ready,delamination_score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,false,Image plus scoring worksheet or vendor image-analysis report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,physical_inspection,optical_transparency_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,inhouse_ready,optical_transparency_fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,false,Image-analysis export or vendor microscopy report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,date,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_date_bench_or_chain_of_custody_record.csv,false,"Bench sheet, vendor report, or chain-of-custody CSV.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_name,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_name_bench_or_chain_of_custody_record.csv,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_lot,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,false,"Lot CoA, bottle label image, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,temperature_c,,C,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,,inhouse_ready,temperature_c,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_temperature_c_temperature_or_incubator_log.csv,false,"Incubator log, probe export, or time-stamped photo.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,supplier_or_build_record,mea_coupon_id,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_mea_coupon_id_supplier_or_build_record.pdf,false,"Build sheet, sample label, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,,supplier_or_build_record,electrode_material,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_electrode_material_supplier_or_build_record.pdf,false,"Supplier documentation, build sheet, or sample label record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,supplier_or_build_record,laminin_or_peptide_density,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,false,"Recipe record, supplier CoA, coating log, or build sheet.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,supplier_or_build_record,sterilization_or_aseptic_protocol,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,false,"SOP identifier, batch record, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_initial,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_initial_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,initial,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_initial_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/initial_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_final,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_final_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,final,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_final_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/final_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,visible_precipitate,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,inhouse_ready,visible_precipitate,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,false,Time-stamped image or vendor inspection report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,visible_shedding,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,inhouse_ready,visible_shedding,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,false,Time-stamped image or microscopy/stereoscope export.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,swelling_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,inhouse_ready,swelling_fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,"Image analysis export, caliper log, or mass/dimension worksheet.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,delamination_score,,score,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,inhouse_ready,delamination_score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,false,Image plus scoring worksheet or vendor image-analysis report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,physical_inspection,optical_transparency_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,inhouse_ready,optical_transparency_fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,false,Image-analysis export or vendor microscopy report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,date,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,date,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_date_bench_or_chain_of_custody_record.csv,false,"Bench sheet, vendor report, or chain-of-custody CSV.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata date, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,medium_name,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_name,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_medium_name_bench_or_chain_of_custody_record.csv,false,"Medium bottle photo, lot CoA, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata medium_name, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,medium_lot,,,,,,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,,supplier_or_build_record,medium_lot,record_review,false,bench_or_chain_of_custody_record,data/source_files/bench_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_medium_lot_bench_or_chain_of_custody_record.csv,false,"Lot CoA, bottle label image, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata medium_lot, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,temperature_c,,C,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,,inhouse_ready,temperature_c,temperature_probe_or_incubator_log,true,temperature_or_incubator_log,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_temperature_c_temperature_or_incubator_log.csv,false,"Incubator log, probe export, or time-stamped photo.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata temperature_c, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,mea_coupon_id,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,,supplier_or_build_record,mea_coupon_id,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_mea_coupon_id_supplier_or_build_record.pdf,false,"Build sheet, sample label, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata mea_coupon_id, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,electrode_material,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,,supplier_or_build_record,electrode_material,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_electrode_material_supplier_or_build_record.pdf,false,"Supplier documentation, build sheet, or sample label record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata electrode_material, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,laminin_or_peptide_density,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,,supplier_or_build_record,laminin_or_peptide_density,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_laminin_or_peptide_density_supplier_or_build_record.pdf,false,"Recipe record, supplier CoA, coating log, or build sheet.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata laminin_or_peptide_density, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,metadata,sterilization_or_aseptic_protocol,,,,,,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,,supplier_or_build_record,sterilization_or_aseptic_protocol,record_review,false,supplier_or_build_record,data/source_files/build_records/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/metadata_sterilization_or_aseptic_protocol_supplier_or_build_record.pdf,false,"SOP identifier, batch record, or chain-of-custody record.",awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h metadata sterilization_or_aseptic_protocol, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_initial,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h initial pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_initial_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h initial osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,initial,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_initial_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/initial_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h initial conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,pH,,pH,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_pH_pH_meter_export_or_photo.csv,,inhouse_ready,pH_final,calibrated_pH_meter,true,pH_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_pH_pH_meter_export_or_photo.csv,false,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h final pH, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,osmolality,,mOsm/kg,,,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf,,outsourced_preferred,osmolality_final_mOsm_kg,osmometer_or_external_lab,true,osmometer_report_or_export,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_osmolality_osmometer_report_or_export.pdf,false,Osmometer report/export reconciled to run_id.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h final osmolality, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,final,conductivity,,mS/cm,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,,inhouse_ready,conductivity_final_mS_cm,calibrated_conductivity_meter,true,conductivity_meter_export_or_photo,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/final_conductivity_conductivity_meter_export_or_photo.csv,false,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h final conductivity, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,visible_precipitate,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,,inhouse_ready,visible_precipitate,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_visible_precipitate_image_or_scoring_worksheet.png,false,Time-stamped image or vendor inspection report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h physical_inspection visible_precipitate, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,visible_shedding,,bool,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,,inhouse_ready,visible_shedding,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_visible_shedding_image_or_scoring_worksheet.png,false,Time-stamped image or microscopy/stereoscope export.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h physical_inspection visible_shedding, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,swelling_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,inhouse_ready,swelling_fraction,caliper_balance_or_image_analysis,true,swelling_dimension_or_mass_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,"Image analysis export, caliper log, or mass/dimension worksheet.",awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h physical_inspection swelling_fraction, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,delamination_score,,score,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,,inhouse_ready,delamination_score,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_delamination_score_image_or_scoring_worksheet.png,false,Image plus scoring worksheet or vendor image-analysis report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h physical_inspection delamination_score, citing the raw source_file. Run import then run_limina_iteration.py." -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,physical_inspection,optical_transparency_fraction,,fraction,,,,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,,inhouse_ready,optical_transparency_fraction,imaging_station_or_scoring_sheet,true,image_or_scoring_worksheet,data/source_files/full/h_a/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/physical_inspection_optical_transparency_fraction_image_or_scoring_worksheet.png,false,Image-analysis export or vendor microscopy report.,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter only the real value for NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h physical_inspection optical_transparency_fraction, citing the raw source_file. Run import then run_limina_iteration.py." diff --git a/data/nhi_pedot_h_a_source_values_sheet.json b/data/nhi_pedot_h_a_source_values_sheet.json deleted file mode 100644 index 1d087f6..0000000 --- a/data/nhi_pedot_h_a_source_values_sheet.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "boundary": "This is a fillable sidecar for formal H-A raw rows. It is not measured evidence; rows count only after import, merge, source-file validation, H-A QC, gate interpretation, and claim audit.", - "generated_artifacts": { - "csv": "data/nhi_pedot_h_a_source_values.csv", - "json": "data/nhi_pedot_h_a_source_values_sheet.json", - "report": "reports/nhi_pedot_h_a_source_values_sheet.md" - }, - "inputs": { - "raw": "data/nhi_pedot_h_a_raw_measurements_template.csv", - "tasks": "data/limina_local_capture_tasks.csv" - }, - "status": "h_a_source_values_sheet_ready", - "summary": { - "filled_value_rows": 0, - "import_ready_rows": 0, - "review_status_counts": { - "awaiting_value_entry": 228 - }, - "source_class_counts": { - "bench_or_chain_of_custody_record": 36, - "conductivity_meter_export_or_photo": 24, - "image_or_scoring_worksheet": 48, - "osmometer_report_or_export": 24, - "pH_meter_export_or_photo": 24, - "supplier_or_build_record": 48, - "swelling_dimension_or_mass_worksheet": 12, - "temperature_or_incubator_log": 12 - }, - "source_file_exists_rows": 0, - "source_value_rows": 228 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_split_scope_plan.csv b/data/nhi_pedot_h_a_split_scope_plan.csv deleted file mode 100644 index d959432..0000000 --- a/data/nhi_pedot_h_a_split_scope_plan.csv +++ /dev/null @@ -1,8 +0,0 @@ -pair_id,media_candidate_id,media_vendor,coupon_candidate_id,coupon_vendor,pair_role,score,media_scope,coupon_scope,shared_requirements,decision,media_contact_status,coupon_contact_status -the_osmolality_lab__cambridge_polymer_group_hydrogel,the_osmolality_lab,The Osmolality Lab,cambridge_polymer_group_hydrogel,Cambridge Polymer Group,split_scope,36,date; medium_name; medium_lot; temperature_c; pH_initial; pH_final; osmolality_initial_mOsm_kg; osmolality_final_mOsm_kg; conductivity_initial_mS_cm; conductivity_final_mS_cm; visible_precipitate,mea_coupon_id; electrode_material; visible_shedding; swelling_fraction; delamination_score; optical_transparency_fraction; image_source_file,"Both vendors must preserve LIMINA run_id and sample_event labels.; Both vendors must return source_file names that resolve to instrument exports or image files.; One operator must reconcile completed_raw_measurements.csv before merge.; Chain-of-custody must identify which vendor handled each sample_event.; Split scope cannot change timepoints, articles, or replicates without a deviation log.",preferred_split_scope,contact_ready,contact_ready -the_osmolality_lab__materials_metric,the_osmolality_lab,The Osmolality Lab,materials_metric,Materials Metric,split_scope,33,date; medium_name; medium_lot; temperature_c; pH_initial; pH_final; osmolality_initial_mOsm_kg; osmolality_final_mOsm_kg; conductivity_initial_mS_cm; conductivity_final_mS_cm; visible_precipitate,mea_coupon_id; electrode_material; visible_shedding; swelling_fraction; delamination_score; optical_transparency_fraction; image_source_file,"Both vendors must preserve LIMINA run_id and sample_event labels.; Both vendors must return source_file names that resolve to instrument exports or image files.; One operator must reconcile completed_raw_measurements.csv before merge.; Chain-of-custody must identify which vendor handled each sample_event.; Split scope cannot change timepoints, articles, or replicates without a deviation log.",preferred_split_scope,contact_ready,contact_ready -sigmaaldrich_media_testing__cambridge_polymer_group_hydrogel,sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,cambridge_polymer_group_hydrogel,Cambridge Polymer Group,split_scope,30,date; medium_name; medium_lot; temperature_c; pH_initial; pH_final; osmolality_initial_mOsm_kg; osmolality_final_mOsm_kg; conductivity_initial_mS_cm; conductivity_final_mS_cm; visible_precipitate,mea_coupon_id; electrode_material; visible_shedding; swelling_fraction; delamination_score; optical_transparency_fraction; image_source_file,"Both vendors must preserve LIMINA run_id and sample_event labels.; Both vendors must return source_file names that resolve to instrument exports or image files.; One operator must reconcile completed_raw_measurements.csv before merge.; Chain-of-custody must identify which vendor handled each sample_event.; Split scope cannot change timepoints, articles, or replicates without a deviation log.",preferred_split_scope,contact_ready,contact_ready -sigmaaldrich_media_testing__materials_metric,sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,materials_metric,Materials Metric,split_scope,27,date; medium_name; medium_lot; temperature_c; pH_initial; pH_final; osmolality_initial_mOsm_kg; osmolality_final_mOsm_kg; conductivity_initial_mS_cm; conductivity_final_mS_cm; visible_precipitate,mea_coupon_id; electrode_material; visible_shedding; swelling_fraction; delamination_score; optical_transparency_fraction; image_source_file,"Both vendors must preserve LIMINA run_id and sample_event labels.; Both vendors must return source_file names that resolve to instrument exports or image files.; One operator must reconcile completed_raw_measurements.csv before merge.; Chain-of-custody must identify which vendor handled each sample_event.; Split scope cannot change timepoints, articles, or replicates without a deviation log.",preferred_split_scope,contact_ready,contact_ready -the_osmolality_lab__nikon_bioimaging_lab,the_osmolality_lab,The Osmolality Lab,nikon_bioimaging_lab,Nikon BioImaging Lab USA,split_scope,25,date; medium_name; medium_lot; temperature_c; pH_initial; pH_final; osmolality_initial_mOsm_kg; osmolality_final_mOsm_kg; conductivity_initial_mS_cm; conductivity_final_mS_cm; visible_precipitate,mea_coupon_id; electrode_material; visible_shedding; swelling_fraction; delamination_score; optical_transparency_fraction; image_source_file,"Both vendors must preserve LIMINA run_id and sample_event labels.; Both vendors must return source_file names that resolve to instrument exports or image files.; One operator must reconcile completed_raw_measurements.csv before merge.; Chain-of-custody must identify which vendor handled each sample_event.; Split scope cannot change timepoints, articles, or replicates without a deviation log.",secondary_needs_contact_plan,contact_ready,not_in_contact_plan -materials_metric__materials_metric,materials_metric,Materials Metric,materials_metric,Materials Metric,integrated_or_prime_with_subcontract,23,date; medium_name; medium_lot; temperature_c; pH_initial; pH_final; osmolality_initial_mOsm_kg; osmolality_final_mOsm_kg; conductivity_initial_mS_cm; conductivity_final_mS_cm; visible_precipitate,mea_coupon_id; electrode_material; visible_shedding; swelling_fraction; delamination_score; optical_transparency_fraction; image_source_file,"Both vendors must preserve LIMINA run_id and sample_event labels.; Both vendors must return source_file names that resolve to instrument exports or image files.; One operator must reconcile completed_raw_measurements.csv before merge.; Chain-of-custody must identify which vendor handled each sample_event.; Split scope cannot change timepoints, articles, or replicates without a deviation log.",preferred_split_scope,contact_ready,contact_ready -sigmaaldrich_media_testing__nikon_bioimaging_lab,sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,nikon_bioimaging_lab,Nikon BioImaging Lab USA,split_scope,19,date; medium_name; medium_lot; temperature_c; pH_initial; pH_final; osmolality_initial_mOsm_kg; osmolality_final_mOsm_kg; conductivity_initial_mS_cm; conductivity_final_mS_cm; visible_precipitate,mea_coupon_id; electrode_material; visible_shedding; swelling_fraction; delamination_score; optical_transparency_fraction; image_source_file,"Both vendors must preserve LIMINA run_id and sample_event labels.; Both vendors must return source_file names that resolve to instrument exports or image files.; One operator must reconcile completed_raw_measurements.csv before merge.; Chain-of-custody must identify which vendor handled each sample_event.; Split scope cannot change timepoints, articles, or replicates without a deviation log.",secondary_needs_contact_plan,contact_ready,not_in_contact_plan diff --git a/data/nhi_pedot_h_a_split_scope_plan.json b/data/nhi_pedot_h_a_split_scope_plan.json deleted file mode 100644 index 7568a53..0000000 --- a/data/nhi_pedot_h_a_split_scope_plan.json +++ /dev/null @@ -1,153 +0,0 @@ -{ - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "coupon_fields": [ - "mea_coupon_id", - "electrode_material", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "image_source_file" - ], - "media_fields": [ - "date", - "medium_name", - "medium_lot", - "temperature_c", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate" - ], - "non_evidence_boundary": "Vendor capability claims do not count as material evidence. Only returned real run-level measurements that pass LIMINA QC and claim audit can advance the material.", - "operating_rules": [ - "Prefer one integrated provider only if it preserves run_id-level raw rows and source files.", - "Use split scope when media chemistry and coupon imaging/physical scoring are stronger at different vendors.", - "Assign media fields and coupon fields explicitly before shipment; do not let either vendor pool across run_id.", - "Merge both vendors into one completed_raw_measurements.csv before LIMINA QC.", - "A split-scope plan authorizes execution logistics only; it is not material evidence." - ], - "pair_count": 7, - "pairs": [ - { - "coupon_candidate_id": "cambridge_polymer_group_hydrogel", - "coupon_contact_status": "contact_ready", - "coupon_scope": "mea_coupon_id; electrode_material; visible_shedding; swelling_fraction; delamination_score; optical_transparency_fraction; image_source_file", - "coupon_vendor": "Cambridge Polymer Group", - "decision": "preferred_split_scope", - "media_candidate_id": "the_osmolality_lab", - "media_contact_status": "contact_ready", - "media_scope": "date; medium_name; medium_lot; temperature_c; pH_initial; pH_final; osmolality_initial_mOsm_kg; osmolality_final_mOsm_kg; conductivity_initial_mS_cm; conductivity_final_mS_cm; visible_precipitate", - "media_vendor": "The Osmolality Lab", - "pair_id": "the_osmolality_lab__cambridge_polymer_group_hydrogel", - "pair_role": "split_scope", - "score": 36, - "shared_requirements": "Both vendors must preserve LIMINA run_id and sample_event labels.; Both vendors must return source_file names that resolve to instrument exports or image files.; One operator must reconcile completed_raw_measurements.csv before merge.; Chain-of-custody must identify which vendor handled each sample_event.; Split scope cannot change timepoints, articles, or replicates without a deviation log." - }, - { - "coupon_candidate_id": "materials_metric", - "coupon_contact_status": "contact_ready", - "coupon_scope": "mea_coupon_id; electrode_material; visible_shedding; swelling_fraction; delamination_score; optical_transparency_fraction; image_source_file", - "coupon_vendor": "Materials Metric", - "decision": "preferred_split_scope", - "media_candidate_id": "the_osmolality_lab", - "media_contact_status": "contact_ready", - "media_scope": "date; medium_name; medium_lot; temperature_c; pH_initial; pH_final; osmolality_initial_mOsm_kg; osmolality_final_mOsm_kg; conductivity_initial_mS_cm; conductivity_final_mS_cm; visible_precipitate", - "media_vendor": "The Osmolality Lab", - "pair_id": "the_osmolality_lab__materials_metric", - "pair_role": "split_scope", - "score": 33, - "shared_requirements": "Both vendors must preserve LIMINA run_id and sample_event labels.; Both vendors must return source_file names that resolve to instrument exports or image files.; One operator must reconcile completed_raw_measurements.csv before merge.; Chain-of-custody must identify which vendor handled each sample_event.; Split scope cannot change timepoints, articles, or replicates without a deviation log." - }, - { - "coupon_candidate_id": "cambridge_polymer_group_hydrogel", - "coupon_contact_status": "contact_ready", - "coupon_scope": "mea_coupon_id; electrode_material; visible_shedding; swelling_fraction; delamination_score; optical_transparency_fraction; image_source_file", - "coupon_vendor": "Cambridge Polymer Group", - "decision": "preferred_split_scope", - "media_candidate_id": "sigmaaldrich_media_testing", - "media_contact_status": "contact_ready", - "media_scope": "date; medium_name; medium_lot; temperature_c; pH_initial; pH_final; osmolality_initial_mOsm_kg; osmolality_final_mOsm_kg; conductivity_initial_mS_cm; conductivity_final_mS_cm; visible_precipitate", - "media_vendor": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "pair_id": "sigmaaldrich_media_testing__cambridge_polymer_group_hydrogel", - "pair_role": "split_scope", - "score": 30, - "shared_requirements": "Both vendors must preserve LIMINA run_id and sample_event labels.; Both vendors must return source_file names that resolve to instrument exports or image files.; One operator must reconcile completed_raw_measurements.csv before merge.; Chain-of-custody must identify which vendor handled each sample_event.; Split scope cannot change timepoints, articles, or replicates without a deviation log." - }, - { - "coupon_candidate_id": "materials_metric", - "coupon_contact_status": "contact_ready", - "coupon_scope": "mea_coupon_id; electrode_material; visible_shedding; swelling_fraction; delamination_score; optical_transparency_fraction; image_source_file", - "coupon_vendor": "Materials Metric", - "decision": "preferred_split_scope", - "media_candidate_id": "sigmaaldrich_media_testing", - "media_contact_status": "contact_ready", - "media_scope": "date; medium_name; medium_lot; temperature_c; pH_initial; pH_final; osmolality_initial_mOsm_kg; osmolality_final_mOsm_kg; conductivity_initial_mS_cm; conductivity_final_mS_cm; visible_precipitate", - "media_vendor": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "pair_id": "sigmaaldrich_media_testing__materials_metric", - "pair_role": "split_scope", - "score": 27, - "shared_requirements": "Both vendors must preserve LIMINA run_id and sample_event labels.; Both vendors must return source_file names that resolve to instrument exports or image files.; One operator must reconcile completed_raw_measurements.csv before merge.; Chain-of-custody must identify which vendor handled each sample_event.; Split scope cannot change timepoints, articles, or replicates without a deviation log." - }, - { - "coupon_candidate_id": "nikon_bioimaging_lab", - "coupon_contact_status": "not_in_contact_plan", - "coupon_scope": "mea_coupon_id; electrode_material; visible_shedding; swelling_fraction; delamination_score; optical_transparency_fraction; image_source_file", - "coupon_vendor": "Nikon BioImaging Lab USA", - "decision": "secondary_needs_contact_plan", - "media_candidate_id": "the_osmolality_lab", - "media_contact_status": "contact_ready", - "media_scope": "date; medium_name; medium_lot; temperature_c; pH_initial; pH_final; osmolality_initial_mOsm_kg; osmolality_final_mOsm_kg; conductivity_initial_mS_cm; conductivity_final_mS_cm; visible_precipitate", - "media_vendor": "The Osmolality Lab", - "pair_id": "the_osmolality_lab__nikon_bioimaging_lab", - "pair_role": "split_scope", - "score": 25, - "shared_requirements": "Both vendors must preserve LIMINA run_id and sample_event labels.; Both vendors must return source_file names that resolve to instrument exports or image files.; One operator must reconcile completed_raw_measurements.csv before merge.; Chain-of-custody must identify which vendor handled each sample_event.; Split scope cannot change timepoints, articles, or replicates without a deviation log." - }, - { - "coupon_candidate_id": "materials_metric", - "coupon_contact_status": "contact_ready", - "coupon_scope": "mea_coupon_id; electrode_material; visible_shedding; swelling_fraction; delamination_score; optical_transparency_fraction; image_source_file", - "coupon_vendor": "Materials Metric", - "decision": "preferred_split_scope", - "media_candidate_id": "materials_metric", - "media_contact_status": "contact_ready", - "media_scope": "date; medium_name; medium_lot; temperature_c; pH_initial; pH_final; osmolality_initial_mOsm_kg; osmolality_final_mOsm_kg; conductivity_initial_mS_cm; conductivity_final_mS_cm; visible_precipitate", - "media_vendor": "Materials Metric", - "pair_id": "materials_metric__materials_metric", - "pair_role": "integrated_or_prime_with_subcontract", - "score": 23, - "shared_requirements": "Both vendors must preserve LIMINA run_id and sample_event labels.; Both vendors must return source_file names that resolve to instrument exports or image files.; One operator must reconcile completed_raw_measurements.csv before merge.; Chain-of-custody must identify which vendor handled each sample_event.; Split scope cannot change timepoints, articles, or replicates without a deviation log." - }, - { - "coupon_candidate_id": "nikon_bioimaging_lab", - "coupon_contact_status": "not_in_contact_plan", - "coupon_scope": "mea_coupon_id; electrode_material; visible_shedding; swelling_fraction; delamination_score; optical_transparency_fraction; image_source_file", - "coupon_vendor": "Nikon BioImaging Lab USA", - "decision": "secondary_needs_contact_plan", - "media_candidate_id": "sigmaaldrich_media_testing", - "media_contact_status": "contact_ready", - "media_scope": "date; medium_name; medium_lot; temperature_c; pH_initial; pH_final; osmolality_initial_mOsm_kg; osmolality_final_mOsm_kg; conductivity_initial_mS_cm; conductivity_final_mS_cm; visible_precipitate", - "media_vendor": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "pair_id": "sigmaaldrich_media_testing__nikon_bioimaging_lab", - "pair_role": "split_scope", - "score": 19, - "shared_requirements": "Both vendors must preserve LIMINA run_id and sample_event labels.; Both vendors must return source_file names that resolve to instrument exports or image files.; One operator must reconcile completed_raw_measurements.csv before merge.; Chain-of-custody must identify which vendor handled each sample_event.; Split scope cannot change timepoints, articles, or replicates without a deviation log." - } - ], - "preferred_pair_count": 5, - "purpose": "Fallback execution plan if no single vendor can cover all H-A media and coupon readouts.", - "requested_raw_entries": 228, - "requested_runs": 12, - "shared_requirements": [ - "Both vendors must preserve LIMINA run_id and sample_event labels.", - "Both vendors must return source_file names that resolve to instrument exports or image files.", - "One operator must reconcile completed_raw_measurements.csv before merge.", - "Chain-of-custody must identify which vendor handled each sample_event.", - "Split scope cannot change timepoints, articles, or replicates without a deviation log." - ], - "status": "split_scope_plan_ready" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_vendor_bundle_entry_apply.json b/data/nhi_pedot_h_a_vendor_bundle_entry_apply.json deleted file mode 100644 index af78c10..0000000 --- a/data/nhi_pedot_h_a_vendor_bundle_entry_apply.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "applied_bundles": [], - "apply_result_status": "h_a_bundle_entry_apply_no_apply_rows", - "boundary": "This step only applies a returned compact bundle-entry sheet into source-value rows. The source-value importer, merge, QC, H-A interpretation, and claim audit still decide whether the rows are real evidence.", - "inputs": { - "bundle_manifest": "data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv", - "sheet": "data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv", - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/nhi_pedot_h_a_source_values.csv" - }, - "issues": [], - "status": "h_a_vendor_bundle_entry_return_no_apply_rows", - "summary": { - "applied_bundles": 0, - "applied_source_value_rows": 0, - "error_count": 0, - "sheet_exists": true, - "skipped_apply_no_rows": 96, - "warning_count": 0 - }, - "updated_source_values": "" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_vendor_bundle_entry_return_regression.json b/data/nhi_pedot_h_a_vendor_bundle_entry_return_regression.json deleted file mode 100644 index f929154..0000000 --- a/data/nhi_pedot_h_a_vendor_bundle_entry_return_regression.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "applied_issues": [], - "applied_status": "h_a_vendor_bundle_entry_return_applied", - "checks": { - "missing_sheet_waits_without_mutation": true, - "valid_return_sheet_applies": true, - "valid_return_sheet_marks_source_values_import_ready": true - }, - "no_sheet_status": "h_a_vendor_bundle_entry_return_waiting_for_sheet", - "status": "pass" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_vendor_bundle_entry_sheet.json b/data/nhi_pedot_h_a_vendor_bundle_entry_sheet.json deleted file mode 100644 index cd077bb..0000000 --- a/data/nhi_pedot_h_a_vendor_bundle_entry_sheet.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "boundary": "This sheet only prepares a vendor-return scaffold for H-A source-bundle values. It is not measured evidence; the vendor-return apply step, source-value importer, merge, QC, H-A interpretation, and claim audit still control evidence status.", - "generated_artifacts": { - "json": "data/nhi_pedot_h_a_vendor_bundle_entry_sheet.json", - "report": "reports/nhi_pedot_h_a_vendor_bundle_entry_sheet.md", - "sheet": "data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv" - }, - "inputs": { - "bundle_manifest": "data/nhi_pedot_h_a_source_unlock_bundle_manifest.csv", - "export_root": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports", - "source_values": "data/nhi_pedot_h_a_source_values.csv" - }, - "post_fill_command": "python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv", - "status": "h_a_vendor_bundle_entry_sheet_ready", - "summary": { - "blocked_rows": 0, - "bundle_rows": 96, - "entry_status_counts": { - "awaiting_bundle_entry": 96 - }, - "filled_bundle_rows": 0, - "missing_required_columns": [], - "ready_to_apply_rows": 0, - "source_class_counts": { - "bench_or_chain_of_custody_record": 12, - "conductivity_meter_export_or_photo": 12, - "image_or_scoring_worksheet": 12, - "osmometer_report_or_export": 12, - "pH_meter_export_or_photo": 12, - "supplier_or_build_record": 12, - "swelling_dimension_or_mass_worksheet": 12, - "temperature_or_incubator_log": 12 - }, - "source_file_exists_rows": 0, - "value_columns": 19 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_vendor_candidates.json b/data/nhi_pedot_h_a_vendor_candidates.json deleted file mode 100644 index c3b8105..0000000 --- a/data/nhi_pedot_h_a_vendor_candidates.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "status": "screening_candidates_not_endorsements", - "last_checked": "2026-05-24", - "purpose": "Identify external service types that could return real NHI-PEDOT H-A acellular measurements without counting any vendor claim as material evidence.", - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "measurement_need": { - "core_media_tests": [ - "pH before and after 0 h, 24 h, and 72 h soaks", - "osmolality before and after 0 h, 24 h, and 72 h soaks", - "conductivity before and after 0 h, 24 h, and 72 h soaks", - "appearance or clarity notes" - ], - "core_coupon_tests": [ - "visible precipitate", - "visible shedding", - "swelling fraction", - "delamination score", - "optical transparency fraction", - "image or instrument export for source_file provenance" - ], - "future_not_required_for_h_a": [ - "ISO 10993-18 extractables/leachables", - "cytotoxicity", - "electrochemical impedance spectroscopy", - "long-duration cell culture" - ] - }, - "outreach_strategy": [ - "Ask first for non-GLP R&D feasibility and exact raw CSV return; only escalate to GLP/ISO if H-A passes and H-B/H-C need regulated-style support.", - "Prefer vendors that will preserve sample-level run_id mapping rather than pooled averages.", - "Split the work if one vendor can do media physicochemical tests but not hydrogel/coupon imaging.", - "Reject any quote that substitutes broad pass/fail certificates for raw pH, osmolality, conductivity, and image-derived values." - ], - "candidates": [ - { - "id": "the_osmolality_lab", - "name": "The Osmolality Lab", - "source_url": "https://theosmolalitylab.com/", - "service_type": "media_physicochemical_testing", - "fit_for_h_a": "strong_media_panel_candidate", - "evidence_from_source": "Public service page lists osmolality testing plus conductivity and pH testing.", - "likely_covers": [ - "osmolality", - "conductivity", - "pH" - ], - "unknowns_to_ask": [ - "Can they run matched pre/post aliquots from 37 C acellular neural-medium soaks?", - "Can they preserve one result per LIMINA run_id rather than batch averages?", - "Can they accept PEDOT:PSS/alginate/laminin soak media as nonclinical R&D samples?" - ], - "risk": "May not cover hydrogel swelling, delamination, or imaging; likely needs pairing with a materials lab." - }, - { - "id": "sigmaaldrich_media_testing", - "name": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "source_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "service_type": "cell_culture_media_testing", - "fit_for_h_a": "strong_media_release_candidate", - "evidence_from_source": "Service page lists cell culture media stability/testing and standard release specification tests including appearance, pH, osmolality, endotoxin, bioburden, and solubility.", - "likely_covers": [ - "appearance", - "pH", - "osmolality" - ], - "unknowns_to_ask": [ - "Can conductivity be added to the report?", - "Can the service handle customer-prepared hydrogel coupon soak media rather than only standard media lots?", - "Can they return raw sample-level values in the LIMINA CSV schema?" - ], - "risk": "May be optimized for media products and release specifications, not custom hydrogel coupon extraction workflows." - }, - { - "id": "cambridge_polymer_group_hydrogel", - "name": "Cambridge Polymer Group", - "source_url": "https://www.campoly.com/services/analytical-testing/material-characterization-techniques/hydrogel-characterization/", - "service_type": "hydrogel_characterization", - "fit_for_h_a": "strong_coupon_physical_candidate", - "evidence_from_source": "Hydrogel characterization page describes swell ratio testing and advanced techniques including DSC, TGA, GPC, AFM, and SEM.", - "likely_covers": [ - "swelling ratio", - "hydrogel physical characterization", - "microscopy or surface characterization" - ], - "unknowns_to_ask": [ - "Can they do simple optical transparency and delamination scoring on MEA witness coupons?", - "Can they handle hydrated alginate-laminin-PEDOT:PSS coupons under culture-medium timing?", - "Can they pair physical scoring with pH/osmolality/conductivity or only coupon characterization?" - ], - "risk": "May be stronger for material characterization than cell-culture medium physicochemical testing." - }, - { - "id": "materials_metric", - "name": "Materials Metric", - "source_url": "https://materialsmetric.com/", - "service_type": "custom_biomaterials_characterization", - "fit_for_h_a": "integrated_custom_candidate", - "evidence_from_source": "Company page describes analytical testing, materials characterization, microscopy, spectroscopy, chemical analysis, biocompatibility, tissue engineering, and custom method development.", - "likely_covers": [ - "custom study design", - "microscopy", - "materials characterization", - "biomaterials evaluation" - ], - "unknowns_to_ask": [ - "Can they execute the entire 12-run H-A service request as a custom R&D study?", - "Can they include pH, osmolality, and conductivity, or should media tests be subcontracted?", - "Can they return raw exports plus chain-of-custody by run_id?" - ], - "risk": "Custom scope must be tightly controlled so it returns the exact LIMINA fields rather than a broad narrative report." - }, - { - "id": "nikon_bioimaging_lab", - "name": "Nikon BioImaging Lab USA", - "source_url": "https://www.microscope.healthcare.nikon.com/bioimaging-centers/nikon-bioimaging-labs/boston-usa", - "service_type": "microscopy_and_image_analysis", - "fit_for_h_a": "imaging_add_on_candidate", - "evidence_from_source": "Service page describes contract microscope-based imaging and analysis for biotech/pharma/research, including 2D/3D samples, organoids, spheroids, and microphysiological systems.", - "likely_covers": [ - "imaging", - "image analysis", - "experimental design consultation" - ], - "unknowns_to_ask": [ - "Can they image hydrated coupons without disturbing swelling state?", - "Can they provide delamination/transparency measurements from coupon images?", - "Can they coordinate with a media testing lab?" - ], - "risk": "Does not cover pH/osmolality/conductivity and may be overpowered for simple H-A coupon inspection." - }, - { - "id": "sgs_extractables_leachables", - "name": "SGS USA Extractables and Leachables in Medical Devices", - "source_url": "https://www.sgs.com/en-us/services/extractables-and-leachables-in-medical-devices", - "service_type": "iso_10993_chemical_characterization", - "fit_for_h_a": "future_e_l_escalation_candidate", - "evidence_from_source": "Service page describes ISO 10993-18 chemical characterization and extractables/leachables testing for medical devices and related products.", - "likely_covers": [ - "extractables", - "leachables", - "chemical characterization", - "toxicological assessment support" - ], - "unknowns_to_ask": [ - "Can they run a non-GLP exploratory aqueous neural-medium soak before a full ISO 10993-18 program?", - "Can they avoid consuming all limited H-A coupon material?", - "What sample mass or surface area is required?" - ], - "risk": "Too heavy for first H-A unless the project wants early E&L escalation; useful after H-A if leachables are a key decision." - }, - { - "id": "hohenstein_medical_el", - "name": "Hohenstein Medical Extractables and Leachables", - "source_url": "https://www.hohenstein.us/en-us/medical-device-testing-lab/medical-device-extractables-leachables", - "service_type": "iso_10993_chemical_characterization", - "fit_for_h_a": "future_e_l_escalation_candidate", - "evidence_from_source": "Service page describes ISO 10993-18 extractables/leachables, sample preparation, VOC/SVOC/NVOC and elemental impurity screening, and GLP/ISO support.", - "likely_covers": [ - "ISO 10993-18 chemical characterization", - "aqueous extract screening", - "elemental impurity screening", - "toxicological risk assessment support" - ], - "unknowns_to_ask": [ - "Can they adapt extraction to neural culture medium or compatible aqueous soak conditions?", - "Can they support an exploratory H-A screen before regulated-style chemistry?", - "What sample number and surface-area requirements apply to hydrogel-coated MEA coupons?" - ], - "risk": "Regulatory E&L scope may be more expensive and slower than the minimal H-A decision package." - }, - { - "id": "intertek_china_healthcare_testing", - "name": "Intertek China Healthcare and Medical Device Testing", - "source_url": "https://www.intertek.com.cn/", - "service_type": "apac_materials_and_healthcare_testing", - "fit_for_h_a": "second_wave_apac_split_scope_candidate", - "evidence_from_source": "Official China site describes testing, inspection, certification, and healthcare/medical-device related services; exact pH/osmolality/conductivity coverage must be confirmed by RFQ.", - "likely_covers": [ - "China/APAC local intake", - "materials or medical-device testing routing", - "possible chemical/physical analysis" - ], - "unknowns_to_ask": [ - "Can the China lab route a non-GLP R&D hydrogel-coupon soak-media study to pH, osmolality, conductivity, and appearance testing?", - "Can coupon physical scoring or microscopy be paired with media measurements while preserving run_id labels?", - "Can they accept and return the exact LIMINA raw-measurement CSV plus source-file provenance?" - ], - "risk": "Service fit is broader and must be routed by RFQ; do not assume exact H-A field coverage until a technical reply confirms it." - }, - { - "id": "wuxi_apptec_medical_device_testing", - "name": "WuXi AppTec Medical Device Testing", - "source_url": "https://www.wuxiapptec.com/", - "service_type": "medical_device_biocompatibility_and_chemistry", - "fit_for_h_a": "second_wave_apac_e_l_escalation_candidate", - "evidence_from_source": "Official company site lists global testing services; use RFQ to route specifically to medical-device chemistry, biocompatibility, or extractables/leachables feasibility.", - "likely_covers": [ - "medical-device testing routing", - "biocompatibility or chemistry escalation", - "China/APAC logistics" - ], - "unknowns_to_ask": [ - "Can they run a small exploratory aqueous/neural-medium extract screen before full ISO 10993 work?", - "Can they add basic pH, osmolality, conductivity, and appearance fields, or should they only be used after H-A flags chemical risk?", - "What surface area, coupon count, sample volume, SDS, and chain-of-custody requirements apply?" - ], - "risk": "Likely better for regulated-style chemistry/biocompatibility escalation than the fastest minimal H-A panel." - }, - { - "id": "tuv_sud_china_medical_device_testing", - "name": "TUV SUD China Medical Device Testing", - "source_url": "https://www.tuvsud.cn/", - "service_type": "medical_device_testing_and_biocompatibility", - "fit_for_h_a": "second_wave_apac_regulatory_escalation_candidate", - "evidence_from_source": "Official China site covers medical-device testing and certification services; use RFQ to confirm whether exploratory material-blank measurements can be scoped separately from full regulatory testing.", - "likely_covers": [ - "medical-device testing routing", - "biocompatibility or chemical characterization escalation", - "China/APAC contact path" - ], - "unknowns_to_ask": [ - "Can they scope the first H-A pass as non-GLP R&D instead of a full regulatory submission package?", - "Can they return run_id-level raw pH/osmolality/conductivity and coupon inspection values in the LIMINA schema?", - "If not, can they quote only the later ISO 10993 chemical characterization path after H-A passes?" - ], - "risk": "May be too regulatory and too slow for the minimal first H-A decision unless chemistry/biocompatibility escalation is required." - }, - { - "id": "pony_testing_medical_device", - "name": "PONY Testing Medical Device and Life-Science Services", - "source_url": "https://www.ponytest.com/", - "service_type": "china_third_party_testing", - "fit_for_h_a": "second_wave_china_screening_candidate", - "evidence_from_source": "Official site describes third-party testing services across health, safety, and product categories; exact medical-device, media chemistry, and custom R&D coverage must be confirmed.", - "likely_covers": [ - "China local third-party testing intake", - "possible physicochemical or product-safety routing", - "possible medical-device test routing" - ], - "unknowns_to_ask": [ - "Can they route a nonclinical hydrogel-coupon neural-medium soak study to pH, osmolality, conductivity, appearance, and coupon inspection outputs?", - "Can they preserve one row per run_id and return raw exports/source files?", - "Can they keep the scope exploratory rather than certificate-only or pooled product-release testing?" - ], - "risk": "Broad testing company; H-A fit depends entirely on technical routing and must be confirmed before sample shipment." - } - ], - "recommended_first_outreach_order": [ - "materials_metric", - "the_osmolality_lab", - "cambridge_polymer_group_hydrogel", - "sigmaaldrich_media_testing", - "nikon_bioimaging_lab", - "sgs_extractables_leachables", - "hohenstein_medical_el" - ], - "non_claim_boundary": "Vendor capability claims do not count as material evidence. Only returned real run-level measurements that pass LIMINA QC and claim audit can advance the material." -} diff --git a/data/nhi_pedot_h_a_vendor_contact_channels.json b/data/nhi_pedot_h_a_vendor_contact_channels.json deleted file mode 100644 index 1da6f85..0000000 --- a/data/nhi_pedot_h_a_vendor_contact_channels.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "status": "official_contact_channels_checked", - "last_checked": "2026-05-24", - "purpose": "Official first-wave contact channels for sending NHI-PEDOT H-A RFQ outbox bundles.", - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "contacts": [ - { - "candidate_id": "materials_metric", - "vendor_name": "Materials Metric", - "primary_send_method": "email_or_request_service_form", - "primary_email": "info@materialsmetric.com", - "secondary_emails": [], - "phone": "804-404-6414", - "contact_url": "https://materialsmetric.com/contact-us/", - "quote_url": "https://materialsmetric.com/contact-us/", - "sample_submission_url": "", - "source_url": "https://materialsmetric.com/contact-us/", - "source_note": "Official contact page lists service/quote request options plus info@materialsmetric.com and 804-404-6414.", - "send_note": "Use the service/quote request path first if a file upload is available; otherwise email the RFQ text and attach the vendor zip bundle." - }, - { - "candidate_id": "the_osmolality_lab", - "vendor_name": "The Osmolality Lab", - "primary_send_method": "email_or_contact_form", - "primary_email": "info@osmolab.com", - "secondary_emails": [ - "billing@osmolab.com" - ], - "phone": "385-323-5141", - "contact_url": "https://theosmolalitylab.com/contact-us/", - "quote_url": "https://theosmolalitylab.com/contact-us/", - "sample_submission_url": "https://theosmolalitylab.com/submit-samples/", - "source_url": "https://theosmolalitylab.com/contact-us/", - "source_note": "Official contact page lists info@osmolab.com and 385.323.5141; submission page says to request a quote before sending samples.", - "send_note": "Ask explicitly whether acellular neural-medium aliquots with PEDOT:PSS/alginate/laminin exposure fit their non-blood/non-urine and no-biohazard sample policy." - }, - { - "candidate_id": "cambridge_polymer_group_hydrogel", - "vendor_name": "Cambridge Polymer Group", - "primary_send_method": "request_quote_form_or_email", - "primary_email": "info@campoly.com", - "secondary_emails": [], - "phone": "617-629-4400", - "contact_url": "https://www.campoly.com/contact-us/", - "quote_url": "https://quote.campoly.com/material-testing/", - "sample_submission_url": "https://www.campoly.com/contact-us/submit-sample/", - "source_url": "https://www.campoly.com/contact-us/", - "source_note": "Official contact page lists info@campoly.com and 617-629-4400; sample submission page asks for a completed sample form and quote number.", - "send_note": "Use the quote form for initial feasibility; do not ship samples until a quote number, sample submission form, SDS expectations, and custody requirements are confirmed." - }, - { - "candidate_id": "sigmaaldrich_media_testing", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "primary_send_method": "service_page_or_technical_service", - "primary_email": "PSTechService@milliporesigma.com", - "secondary_emails": [ - "PSClientCare@milliporesigma.com" - ], - "phone": "1-800-325-3010; 1-800-221-1975; 1-866-CARE-811", - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "quote_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "sample_submission_url": "", - "source_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "source_note": "Official offices/contact page lists U.S. customer service, technical service, and Process Solutions technical/commercial service contacts.", - "send_note": "Use the service page/contact path first; if routed through support, ask them to assign the RFQ to cell culture media stability/testing or Process Solutions custom testing." - }, - { - "wave": "second_wave", - "candidate_id": "intertek_china_healthcare_testing", - "vendor_name": "Intertek China Healthcare and Medical Device Testing", - "primary_send_method": "contact_form_or_china_service_email", - "primary_email": "service.china@intertek.com", - "secondary_emails": [], - "phone": "", - "contact_url": "https://www.intertek.com.cn/contact/", - "quote_url": "https://www.intertek.com.cn/contact/", - "sample_submission_url": "", - "source_url": "https://www.intertek.com.cn/contact/", - "source_note": "Official China contact path should be used to route the RFQ to healthcare, materials, or medical-device testing; exact lab coverage must be confirmed.", - "send_note": "Use only after first-wave stalls or if China/APAC logistics are preferred; ask for non-GLP R&D routing and raw CSV return." - }, - { - "wave": "second_wave", - "candidate_id": "wuxi_apptec_medical_device_testing", - "vendor_name": "WuXi AppTec Medical Device Testing", - "primary_send_method": "contact_form", - "primary_email": "", - "secondary_emails": [], - "phone": "", - "contact_url": "https://www.wuxiapptec.com/contact", - "quote_url": "https://www.wuxiapptec.com/contact", - "sample_submission_url": "", - "source_url": "https://www.wuxiapptec.com/contact", - "source_note": "Use official contact routing for medical-device testing or chemistry/biocompatibility feasibility; do not assume H-A media-panel coverage until technical review.", - "send_note": "Best as chemistry/E&L or biocompatibility escalation after H-A or if local China execution is required." - }, - { - "wave": "second_wave", - "candidate_id": "tuv_sud_china_medical_device_testing", - "vendor_name": "TUV SUD China Medical Device Testing", - "primary_send_method": "contact_form", - "primary_email": "", - "secondary_emails": [], - "phone": "", - "contact_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "quote_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "sample_submission_url": "", - "source_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "source_note": "Use official China contact routing for medical-device testing or biocompatibility; exploratory H-A scope requires confirmation.", - "send_note": "Use as second-wave regulatory/ISO route; ask whether non-GLP raw run_id-level testing can be scoped separately." - }, - { - "wave": "second_wave", - "candidate_id": "pony_testing_medical_device", - "vendor_name": "PONY Testing Medical Device and Life-Science Services", - "primary_send_method": "contact_form_or_service_inquiry", - "primary_email": "", - "secondary_emails": [], - "phone": "", - "contact_url": "https://www.ponytest.com/", - "quote_url": "https://www.ponytest.com/", - "sample_submission_url": "", - "source_url": "https://www.ponytest.com/", - "source_note": "Use official site inquiry path to route custom medical-device or physicochemical testing; exact H-A fit must be confirmed.", - "send_note": "Use as China-local broad screening fallback only if the response commits to raw sample-level values and source-file provenance." - } - ], - "non_evidence_boundary": "Contact details and vendor responses are sourcing artifacts only. They do not count as material evidence until real returned measurements pass LIMINA QC." -} diff --git a/data/nhi_pedot_h_a_vendor_contact_plan.csv b/data/nhi_pedot_h_a_vendor_contact_plan.csv deleted file mode 100644 index 352cb8c..0000000 --- a/data/nhi_pedot_h_a_vendor_contact_plan.csv +++ /dev/null @@ -1,9 +0,0 @@ -wave,candidate_id,vendor_name,primary_send_method,primary_email,secondary_emails,phone,contact_url,quote_url,sample_submission_url,source_url,source_note,email_file,bundle_zip,bundle_sha256,outbox_send_status,tracker_contact_date,tracker_reply_date,tracker_decision,contact_plan_status,send_note -first_wave,materials_metric,Materials Metric,email_or_request_service_form,info@materialsmetric.com,,804-404-6414,https://materialsmetric.com/contact-us/,https://materialsmetric.com/contact-us/,,https://materialsmetric.com/contact-us/,Official contact page lists service/quote request options plus info@materialsmetric.com and 804-404-6414.,data/nhi_pedot_h_a_rfq_outbox/emails/materials_metric_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip,6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35,ready_to_send,,,pending_outreach,ready_to_send,Use the service/quote request path first if a file upload is available; otherwise email the RFQ text and attach the vendor zip bundle. -first_wave,the_osmolality_lab,The Osmolality Lab,email_or_contact_form,info@osmolab.com,billing@osmolab.com,385-323-5141,https://theosmolalitylab.com/contact-us/,https://theosmolalitylab.com/contact-us/,https://theosmolalitylab.com/submit-samples/,https://theosmolalitylab.com/contact-us/,Official contact page lists info@osmolab.com and 385.323.5141; submission page says to request a quote before sending samples.,data/nhi_pedot_h_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip,b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a,ready_to_send,,,pending_outreach,ready_to_send,Ask explicitly whether acellular neural-medium aliquots with PEDOT:PSS/alginate/laminin exposure fit their non-blood/non-urine and no-biohazard sample policy. -first_wave,cambridge_polymer_group_hydrogel,Cambridge Polymer Group,request_quote_form_or_email,info@campoly.com,,617-629-4400,https://www.campoly.com/contact-us/,https://quote.campoly.com/material-testing/,https://www.campoly.com/contact-us/submit-sample/,https://www.campoly.com/contact-us/,Official contact page lists info@campoly.com and 617-629-4400; sample submission page asks for a completed sample form and quote number.,data/nhi_pedot_h_a_rfq_outbox/emails/cambridge_polymer_group_hydrogel_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip,bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1,ready_to_send,,,pending_outreach,ready_to_send,"Use the quote form for initial feasibility; do not ship samples until a quote number, sample submission form, SDS expectations, and custody requirements are confirmed." -first_wave,sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,service_page_or_technical_service,PSTechService@milliporesigma.com,PSClientCare@milliporesigma.com,1-800-325-3010; 1-800-221-1975; 1-866-CARE-811,https://www.sigmaaldrich.com/US/en/collections/offices,https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services,,https://www.sigmaaldrich.com/US/en/collections/offices,"Official offices/contact page lists U.S. customer service, technical service, and Process Solutions technical/commercial service contacts.",data/nhi_pedot_h_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt,data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip,6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd,ready_to_send,,,pending_outreach,ready_to_send,"Use the service page/contact path first; if routed through support, ask them to assign the RFQ to cell culture media stability/testing or Process Solutions custom testing." -second_wave,intertek_china_healthcare_testing,Intertek China Healthcare and Medical Device Testing,contact_form_or_china_service_email,service.china@intertek.com,,,https://www.intertek.com.cn/contact/,https://www.intertek.com.cn/contact/,,https://www.intertek.com.cn/contact/,"Official China contact path should be used to route the RFQ to healthcare, materials, or medical-device testing; exact lab coverage must be confirmed.",,,,missing_outbox_row,,,,standby_secondary_wave,Use only after first-wave stalls or if China/APAC logistics are preferred; ask for non-GLP R&D routing and raw CSV return. -second_wave,wuxi_apptec_medical_device_testing,WuXi AppTec Medical Device Testing,contact_form,,,,https://www.wuxiapptec.com/contact,https://www.wuxiapptec.com/contact,,https://www.wuxiapptec.com/contact,Use official contact routing for medical-device testing or chemistry/biocompatibility feasibility; do not assume H-A media-panel coverage until technical review.,,,,missing_outbox_row,,,,standby_secondary_wave,Best as chemistry/E&L or biocompatibility escalation after H-A or if local China execution is required. -second_wave,tuv_sud_china_medical_device_testing,TUV SUD China Medical Device Testing,contact_form,,,,https://www.tuvsud.cn/zh-cn/contact-us,https://www.tuvsud.cn/zh-cn/contact-us,,https://www.tuvsud.cn/zh-cn/contact-us,Use official China contact routing for medical-device testing or biocompatibility; exploratory H-A scope requires confirmation.,,,,missing_outbox_row,,,,standby_secondary_wave,Use as second-wave regulatory/ISO route; ask whether non-GLP raw run_id-level testing can be scoped separately. -second_wave,pony_testing_medical_device,PONY Testing Medical Device and Life-Science Services,contact_form_or_service_inquiry,,,,https://www.ponytest.com/,https://www.ponytest.com/,,https://www.ponytest.com/,Use official site inquiry path to route custom medical-device or physicochemical testing; exact H-A fit must be confirmed.,,,,missing_outbox_row,,,,standby_secondary_wave,Use as China-local broad screening fallback only if the response commits to raw sample-level values and source-file provenance. diff --git a/data/nhi_pedot_h_a_vendor_contact_plan.json b/data/nhi_pedot_h_a_vendor_contact_plan.json deleted file mode 100644 index 8d736d5..0000000 --- a/data/nhi_pedot_h_a_vendor_contact_plan.json +++ /dev/null @@ -1,205 +0,0 @@ -{ - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "last_checked": "2026-05-24", - "purpose": "Official contact channels and send checklist for NHI-PEDOT H-A first-wave RFQ bundles plus standby secondary-wave options.", - "row_count": 8, - "rows": [ - { - "bundle_sha256": "6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/materials_metric_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "materials_metric", - "contact_plan_status": "ready_to_send", - "contact_url": "https://materialsmetric.com/contact-us/", - "email_file": "data/nhi_pedot_h_a_rfq_outbox/emails/materials_metric_rfq_email.txt", - "outbox_send_status": "ready_to_send", - "phone": "804-404-6414", - "primary_email": "info@materialsmetric.com", - "primary_send_method": "email_or_request_service_form", - "quote_url": "https://materialsmetric.com/contact-us/", - "sample_submission_url": "", - "secondary_emails": "", - "send_note": "Use the service/quote request path first if a file upload is available; otherwise email the RFQ text and attach the vendor zip bundle.", - "source_note": "Official contact page lists service/quote request options plus info@materialsmetric.com and 804-404-6414.", - "source_url": "https://materialsmetric.com/contact-us/", - "tracker_contact_date": "", - "tracker_decision": "pending_outreach", - "tracker_reply_date": "", - "vendor_name": "Materials Metric", - "wave": "first_wave" - }, - { - "bundle_sha256": "b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/the_osmolality_lab_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "the_osmolality_lab", - "contact_plan_status": "ready_to_send", - "contact_url": "https://theosmolalitylab.com/contact-us/", - "email_file": "data/nhi_pedot_h_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt", - "outbox_send_status": "ready_to_send", - "phone": "385-323-5141", - "primary_email": "info@osmolab.com", - "primary_send_method": "email_or_contact_form", - "quote_url": "https://theosmolalitylab.com/contact-us/", - "sample_submission_url": "https://theosmolalitylab.com/submit-samples/", - "secondary_emails": "billing@osmolab.com", - "send_note": "Ask explicitly whether acellular neural-medium aliquots with PEDOT:PSS/alginate/laminin exposure fit their non-blood/non-urine and no-biohazard sample policy.", - "source_note": "Official contact page lists info@osmolab.com and 385.323.5141; submission page says to request a quote before sending samples.", - "source_url": "https://theosmolalitylab.com/contact-us/", - "tracker_contact_date": "", - "tracker_decision": "pending_outreach", - "tracker_reply_date": "", - "vendor_name": "The Osmolality Lab", - "wave": "first_wave" - }, - { - "bundle_sha256": "bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/cambridge_polymer_group_hydrogel_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "cambridge_polymer_group_hydrogel", - "contact_plan_status": "ready_to_send", - "contact_url": "https://www.campoly.com/contact-us/", - "email_file": "data/nhi_pedot_h_a_rfq_outbox/emails/cambridge_polymer_group_hydrogel_rfq_email.txt", - "outbox_send_status": "ready_to_send", - "phone": "617-629-4400", - "primary_email": "info@campoly.com", - "primary_send_method": "request_quote_form_or_email", - "quote_url": "https://quote.campoly.com/material-testing/", - "sample_submission_url": "https://www.campoly.com/contact-us/submit-sample/", - "secondary_emails": "", - "send_note": "Use the quote form for initial feasibility; do not ship samples until a quote number, sample submission form, SDS expectations, and custody requirements are confirmed.", - "source_note": "Official contact page lists info@campoly.com and 617-629-4400; sample submission page asks for a completed sample form and quote number.", - "source_url": "https://www.campoly.com/contact-us/", - "tracker_contact_date": "", - "tracker_decision": "pending_outreach", - "tracker_reply_date": "", - "vendor_name": "Cambridge Polymer Group", - "wave": "first_wave" - }, - { - "bundle_sha256": "6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd", - "bundle_zip": "data/nhi_pedot_h_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_nhi_pedot_h_a_rfq_bundle.zip", - "candidate_id": "sigmaaldrich_media_testing", - "contact_plan_status": "ready_to_send", - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "email_file": "data/nhi_pedot_h_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt", - "outbox_send_status": "ready_to_send", - "phone": "1-800-325-3010; 1-800-221-1975; 1-866-CARE-811", - "primary_email": "PSTechService@milliporesigma.com", - "primary_send_method": "service_page_or_technical_service", - "quote_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "sample_submission_url": "", - "secondary_emails": "PSClientCare@milliporesigma.com", - "send_note": "Use the service page/contact path first; if routed through support, ask them to assign the RFQ to cell culture media stability/testing or Process Solutions custom testing.", - "source_note": "Official offices/contact page lists U.S. customer service, technical service, and Process Solutions technical/commercial service contacts.", - "source_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "tracker_contact_date": "", - "tracker_decision": "pending_outreach", - "tracker_reply_date": "", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "wave": "first_wave" - }, - { - "bundle_sha256": "", - "bundle_zip": "", - "candidate_id": "intertek_china_healthcare_testing", - "contact_plan_status": "standby_secondary_wave", - "contact_url": "https://www.intertek.com.cn/contact/", - "email_file": "", - "outbox_send_status": "missing_outbox_row", - "phone": "", - "primary_email": "service.china@intertek.com", - "primary_send_method": "contact_form_or_china_service_email", - "quote_url": "https://www.intertek.com.cn/contact/", - "sample_submission_url": "", - "secondary_emails": "", - "send_note": "Use only after first-wave stalls or if China/APAC logistics are preferred; ask for non-GLP R&D routing and raw CSV return.", - "source_note": "Official China contact path should be used to route the RFQ to healthcare, materials, or medical-device testing; exact lab coverage must be confirmed.", - "source_url": "https://www.intertek.com.cn/contact/", - "tracker_contact_date": "", - "tracker_decision": "", - "tracker_reply_date": "", - "vendor_name": "Intertek China Healthcare and Medical Device Testing", - "wave": "second_wave" - }, - { - "bundle_sha256": "", - "bundle_zip": "", - "candidate_id": "wuxi_apptec_medical_device_testing", - "contact_plan_status": "standby_secondary_wave", - "contact_url": "https://www.wuxiapptec.com/contact", - "email_file": "", - "outbox_send_status": "missing_outbox_row", - "phone": "", - "primary_email": "", - "primary_send_method": "contact_form", - "quote_url": "https://www.wuxiapptec.com/contact", - "sample_submission_url": "", - "secondary_emails": "", - "send_note": "Best as chemistry/E&L or biocompatibility escalation after H-A or if local China execution is required.", - "source_note": "Use official contact routing for medical-device testing or chemistry/biocompatibility feasibility; do not assume H-A media-panel coverage until technical review.", - "source_url": "https://www.wuxiapptec.com/contact", - "tracker_contact_date": "", - "tracker_decision": "", - "tracker_reply_date": "", - "vendor_name": "WuXi AppTec Medical Device Testing", - "wave": "second_wave" - }, - { - "bundle_sha256": "", - "bundle_zip": "", - "candidate_id": "tuv_sud_china_medical_device_testing", - "contact_plan_status": "standby_secondary_wave", - "contact_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "email_file": "", - "outbox_send_status": "missing_outbox_row", - "phone": "", - "primary_email": "", - "primary_send_method": "contact_form", - "quote_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "sample_submission_url": "", - "secondary_emails": "", - "send_note": "Use as second-wave regulatory/ISO route; ask whether non-GLP raw run_id-level testing can be scoped separately.", - "source_note": "Use official China contact routing for medical-device testing or biocompatibility; exploratory H-A scope requires confirmation.", - "source_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "tracker_contact_date": "", - "tracker_decision": "", - "tracker_reply_date": "", - "vendor_name": "TUV SUD China Medical Device Testing", - "wave": "second_wave" - }, - { - "bundle_sha256": "", - "bundle_zip": "", - "candidate_id": "pony_testing_medical_device", - "contact_plan_status": "standby_secondary_wave", - "contact_url": "https://www.ponytest.com/", - "email_file": "", - "outbox_send_status": "missing_outbox_row", - "phone": "", - "primary_email": "", - "primary_send_method": "contact_form_or_service_inquiry", - "quote_url": "https://www.ponytest.com/", - "sample_submission_url": "", - "secondary_emails": "", - "send_note": "Use as China-local broad screening fallback only if the response commits to raw sample-level values and source-file provenance.", - "source_note": "Use official site inquiry path to route custom medical-device or physicochemical testing; exact H-A fit must be confirmed.", - "source_url": "https://www.ponytest.com/", - "tracker_contact_date": "", - "tracker_decision": "", - "tracker_reply_date": "", - "vendor_name": "PONY Testing Medical Device and Life-Science Services", - "wave": "second_wave" - } - ], - "send_instructions": [ - "Use the contact_url or quote_url when a vendor requires a form.", - "Use primary_email when direct email is accepted; attach the matching bundle_zip.", - "After sending, enter contact_date in data/nhi_pedot_h_a_quote_tracker.csv and rerun the iteration.", - "Do not ship samples until the vendor confirms scope, sample acceptance, custody fields, and quote number if required.", - "Do not treat a contact reply as evidence; only real returned measurements can move H-A." - ], - "source_boundary": "Contact details and vendor responses are sourcing artifacts only. They do not count as material evidence until real returned measurements pass LIMINA QC.", - "status": "contact_plan_ready", - "status_counts": { - "ready_to_send": 4, - "standby_secondary_wave": 4 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_vendor_contact_source_audit.csv b/data/nhi_pedot_h_a_vendor_contact_source_audit.csv deleted file mode 100644 index f225e10..0000000 --- a/data/nhi_pedot_h_a_vendor_contact_source_audit.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,audit_status,proof_status,contact_plan_status,source_url,source_domain,verified_at,proof_age_days,primary_email_match,contact_url_match,quote_url_match,sample_submission_url_match,phone_match,source_supports_quote_route,errors -materials_metric,Materials Metric,pass,proof_ok,ready_to_send,https://materialsmetric.com/contact-us/,materialsmetric.com,2026-05-24,0,true,true,true,true,true,true, -the_osmolality_lab,The Osmolality Lab,pass,proof_ok,ready_to_send,https://theosmolalitylab.com/contact-us/,theosmolalitylab.com,2026-05-24,0,true,true,true,true,true,true, -cambridge_polymer_group_hydrogel,Cambridge Polymer Group,pass,proof_ok,ready_to_send,https://www.campoly.com/contact-us/,campoly.com,2026-05-24,0,true,true,true,true,true,true, -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,pass,proof_ok,ready_to_send,https://www.sigmaaldrich.com/US/en/collections/offices,sigmaaldrich.com,2026-05-24,0,true,true,true,true,true,true, diff --git a/data/nhi_pedot_h_a_vendor_contact_source_audit.json b/data/nhi_pedot_h_a_vendor_contact_source_audit.json deleted file mode 100644 index ab06573..0000000 --- a/data/nhi_pedot_h_a_vendor_contact_source_audit.json +++ /dev/null @@ -1,96 +0,0 @@ -{ - "boundary": "Vendor contact-source audits are sourcing controls only. They are not send confirmations, quote replies, measurements, or material suitability evidence.", - "generated_artifacts": { - "csv": "data/nhi_pedot_h_a_vendor_contact_source_audit.csv", - "json": "data/nhi_pedot_h_a_vendor_contact_source_audit.json", - "report": "reports/nhi_pedot_h_a_vendor_contact_source_audit.md" - }, - "inputs": { - "contact_plan": "data/nhi_pedot_h_a_vendor_contact_plan.json", - "proofs": "data/nhi_pedot_h_a_vendor_contact_source_proofs.csv" - }, - "purpose": "Audit first-wave NHI-PEDOT H-A RFQ contact channels against official-source proof rows before manual dispatch.", - "rows": [ - { - "audit_status": "pass", - "candidate_id": "materials_metric", - "contact_plan_status": "ready_to_send", - "contact_url_match": "true", - "errors": "", - "phone_match": "true", - "primary_email_match": "true", - "proof_age_days": 0, - "proof_status": "proof_ok", - "quote_url_match": "true", - "sample_submission_url_match": "true", - "source_domain": "materialsmetric.com", - "source_supports_quote_route": "true", - "source_url": "https://materialsmetric.com/contact-us/", - "vendor_name": "Materials Metric", - "verified_at": "2026-05-24" - }, - { - "audit_status": "pass", - "candidate_id": "the_osmolality_lab", - "contact_plan_status": "ready_to_send", - "contact_url_match": "true", - "errors": "", - "phone_match": "true", - "primary_email_match": "true", - "proof_age_days": 0, - "proof_status": "proof_ok", - "quote_url_match": "true", - "sample_submission_url_match": "true", - "source_domain": "theosmolalitylab.com", - "source_supports_quote_route": "true", - "source_url": "https://theosmolalitylab.com/contact-us/", - "vendor_name": "The Osmolality Lab", - "verified_at": "2026-05-24" - }, - { - "audit_status": "pass", - "candidate_id": "cambridge_polymer_group_hydrogel", - "contact_plan_status": "ready_to_send", - "contact_url_match": "true", - "errors": "", - "phone_match": "true", - "primary_email_match": "true", - "proof_age_days": 0, - "proof_status": "proof_ok", - "quote_url_match": "true", - "sample_submission_url_match": "true", - "source_domain": "campoly.com", - "source_supports_quote_route": "true", - "source_url": "https://www.campoly.com/contact-us/", - "vendor_name": "Cambridge Polymer Group", - "verified_at": "2026-05-24" - }, - { - "audit_status": "pass", - "candidate_id": "sigmaaldrich_media_testing", - "contact_plan_status": "ready_to_send", - "contact_url_match": "true", - "errors": "", - "phone_match": "true", - "primary_email_match": "true", - "proof_age_days": 0, - "proof_status": "proof_ok", - "quote_url_match": "true", - "sample_submission_url_match": "true", - "source_domain": "sigmaaldrich.com", - "source_supports_quote_route": "true", - "source_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "verified_at": "2026-05-24" - } - ], - "status": "h_a_vendor_contact_source_audit_ready", - "summary": { - "audit_rows": 4, - "fail_rows": 0, - "max_proof_age_days": 60, - "missing_proof_rows": 0, - "pass_rows": 4, - "stale_proof_rows": 0 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_vendor_contact_source_proofs.csv b/data/nhi_pedot_h_a_vendor_contact_source_proofs.csv deleted file mode 100644 index a4fa3d0..0000000 --- a/data/nhi_pedot_h_a_vendor_contact_source_proofs.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,wave,verified_at,source_url,source_domain,observed_primary_email,observed_secondary_emails,observed_phone,observed_contact_url,observed_quote_url,observed_sample_submission_url,source_supports_quote_route,source_summary,non_evidence_boundary -materials_metric,Materials Metric,first_wave,2026-05-24,https://materialsmetric.com/contact-us/,materialsmetric.com,info@materialsmetric.com,,804-404-6414,https://materialsmetric.com/contact-us/,https://materialsmetric.com/contact-us/,,true,Official contact page lists info@materialsmetric.com phone 804-404-6414 and a Request Service path.,Contact source proofs are sourcing artifacts only and are not material suitability evidence. -the_osmolality_lab,The Osmolality Lab,first_wave,2026-05-24,https://theosmolalitylab.com/contact-us/,theosmolalitylab.com,info@osmolab.com,billing@osmolab.com,385-323-5141,https://theosmolalitylab.com/contact-us/,https://theosmolalitylab.com/contact-us/,https://theosmolalitylab.com/submit-samples/,true,Official contact page lists info@osmolab.com billing@osmolab.com phone 385-323-5141 and quote/contact routing.,Contact source proofs are sourcing artifacts only and are not material suitability evidence. -cambridge_polymer_group_hydrogel,Cambridge Polymer Group,first_wave,2026-05-24,https://www.campoly.com/contact-us/,campoly.com,info@campoly.com,,617-629-4400,https://www.campoly.com/contact-us/,https://quote.campoly.com/material-testing/,https://www.campoly.com/contact-us/submit-sample/,true,Official contact page lists info@campoly.com phone 617-629-4400 and links to request quote/sample submission paths.,Contact source proofs are sourcing artifacts only and are not material suitability evidence. -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,first_wave,2026-05-24,https://www.sigmaaldrich.com/US/en/collections/offices,sigmaaldrich.com,PSTechService@milliporesigma.com,PSClientCare@milliporesigma.com,1-866-CARE-811; 1-800-325-3010; 1-800-221-1975,https://www.sigmaaldrich.com/US/en/collections/offices,https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services,,true,Official offices/contact page lists MilliporeSigma technical and customer-service routing for U.S. Process Solutions inquiries; service page is the quoted media testing route.,Contact source proofs are sourcing artifacts only and are not material suitability evidence. diff --git a/data/nhi_pedot_h_a_vendor_outreach.json b/data/nhi_pedot_h_a_vendor_outreach.json deleted file mode 100644 index d34e988..0000000 --- a/data/nhi_pedot_h_a_vendor_outreach.json +++ /dev/null @@ -1,475 +0,0 @@ -{ - "active_candidate": "limina_alg_lam_pedot_lowdose_v0_2", - "delivery_package_status": "ready_to_send", - "first_wave": [ - { - "evidence_from_source": "Company page describes analytical testing, materials characterization, microscopy, spectroscopy, chemical analysis, biocompatibility, tissue engineering, and custom method development.", - "fit_for_h_a": "integrated_custom_candidate", - "id": "materials_metric", - "likely_covers": [ - "custom study design", - "microscopy", - "materials characterization", - "biomaterials evaluation" - ], - "name": "Materials Metric", - "risk": "Custom scope must be tightly controlled so it returns the exact LIMINA fields rather than a broad narrative report.", - "service_type": "custom_biomaterials_characterization", - "source_url": "https://materialsmetric.com/", - "unknowns_to_ask": [ - "Can they execute the entire 12-run H-A service request as a custom R&D study?", - "Can they include pH, osmolality, and conductivity, or should media tests be subcontracted?", - "Can they return raw exports plus chain-of-custody by run_id?" - ] - }, - { - "evidence_from_source": "Public service page lists osmolality testing plus conductivity and pH testing.", - "fit_for_h_a": "strong_media_panel_candidate", - "id": "the_osmolality_lab", - "likely_covers": [ - "osmolality", - "conductivity", - "pH" - ], - "name": "The Osmolality Lab", - "risk": "May not cover hydrogel swelling, delamination, or imaging; likely needs pairing with a materials lab.", - "service_type": "media_physicochemical_testing", - "source_url": "https://theosmolalitylab.com/", - "unknowns_to_ask": [ - "Can they run matched pre/post aliquots from 37 C acellular neural-medium soaks?", - "Can they preserve one result per LIMINA run_id rather than batch averages?", - "Can they accept PEDOT:PSS/alginate/laminin soak media as nonclinical R&D samples?" - ] - }, - { - "evidence_from_source": "Hydrogel characterization page describes swell ratio testing and advanced techniques including DSC, TGA, GPC, AFM, and SEM.", - "fit_for_h_a": "strong_coupon_physical_candidate", - "id": "cambridge_polymer_group_hydrogel", - "likely_covers": [ - "swelling ratio", - "hydrogel physical characterization", - "microscopy or surface characterization" - ], - "name": "Cambridge Polymer Group", - "risk": "May be stronger for material characterization than cell-culture medium physicochemical testing.", - "service_type": "hydrogel_characterization", - "source_url": "https://www.campoly.com/services/analytical-testing/material-characterization-techniques/hydrogel-characterization/", - "unknowns_to_ask": [ - "Can they do simple optical transparency and delamination scoring on MEA witness coupons?", - "Can they handle hydrated alginate-laminin-PEDOT:PSS coupons under culture-medium timing?", - "Can they pair physical scoring with pH/osmolality/conductivity or only coupon characterization?" - ] - }, - { - "evidence_from_source": "Service page lists cell culture media stability/testing and standard release specification tests including appearance, pH, osmolality, endotoxin, bioburden, and solubility.", - "fit_for_h_a": "strong_media_release_candidate", - "id": "sigmaaldrich_media_testing", - "likely_covers": [ - "appearance", - "pH", - "osmolality" - ], - "name": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "risk": "May be optimized for media products and release specifications, not custom hydrogel coupon extraction workflows.", - "service_type": "cell_culture_media_testing", - "source_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "unknowns_to_ask": [ - "Can conductivity be added to the report?", - "Can the service handle customer-prepared hydrogel coupon soak media rather than only standard media lots?", - "Can they return raw sample-level values in the LIMINA CSV schema?" - ] - } - ], - "last_checked": "2026-05-24", - "non_claim_boundary": "Vendor capability claims do not count as material evidence. Only returned real run-level measurements that pass LIMINA QC and claim audit can advance the material.", - "outreach_strategy": [ - "Ask first for non-GLP R&D feasibility and exact raw CSV return; only escalate to GLP/ISO if H-A passes and H-B/H-C need regulated-style support.", - "Prefer vendors that will preserve sample-level run_id mapping rather than pooled averages.", - "Split the work if one vendor can do media physicochemical tests but not hydrogel/coupon imaging.", - "Reject any quote that substitutes broad pass/fail certificates for raw pH, osmolality, conductivity, and image-derived values." - ], - "purpose": "Shortlist external service options for returning real H-A measurement rows.", - "question_bank": [ - "Can you accept nonclinical R&D hydrogel-coated MEA witness coupons and matched soak media?", - "Can you preserve one result per LIMINA run_id instead of returning pooled averages?", - "Can you run 37 C acellular soak timepoints at 0 h, 24 h, and 72 h, or should we perform the soak and send aliquots/coupons?", - "Can you report pH, osmolality, conductivity, visible precipitate, shedding, swelling fraction, delamination score, and optical transparency fraction?", - "Can you return raw exports and image files with stable filenames that we can enter in the source_file column?", - "Can you fill or accept the provided raw-measurement CSV schema without changing column names?", - "What minimum sample volume, coupon size, and sample count are required?", - "What handling constraints apply to alginate, laminin, PEDOT:PSS, neural medium, and sterile or aseptic samples?", - "What turnaround time and chain-of-custody documentation can you support?", - "Can you separate exploratory R&D testing from GLP/ISO 10993 testing in the quote?" - ], - "ranked_candidates": [ - { - "evidence_from_source": "Company page describes analytical testing, materials characterization, microscopy, spectroscopy, chemical analysis, biocompatibility, tissue engineering, and custom method development.", - "fit_for_h_a": "integrated_custom_candidate", - "id": "materials_metric", - "likely_covers": [ - "custom study design", - "microscopy", - "materials characterization", - "biomaterials evaluation" - ], - "name": "Materials Metric", - "risk": "Custom scope must be tightly controlled so it returns the exact LIMINA fields rather than a broad narrative report.", - "service_type": "custom_biomaterials_characterization", - "source_url": "https://materialsmetric.com/", - "unknowns_to_ask": [ - "Can they execute the entire 12-run H-A service request as a custom R&D study?", - "Can they include pH, osmolality, and conductivity, or should media tests be subcontracted?", - "Can they return raw exports plus chain-of-custody by run_id?" - ] - }, - { - "evidence_from_source": "Public service page lists osmolality testing plus conductivity and pH testing.", - "fit_for_h_a": "strong_media_panel_candidate", - "id": "the_osmolality_lab", - "likely_covers": [ - "osmolality", - "conductivity", - "pH" - ], - "name": "The Osmolality Lab", - "risk": "May not cover hydrogel swelling, delamination, or imaging; likely needs pairing with a materials lab.", - "service_type": "media_physicochemical_testing", - "source_url": "https://theosmolalitylab.com/", - "unknowns_to_ask": [ - "Can they run matched pre/post aliquots from 37 C acellular neural-medium soaks?", - "Can they preserve one result per LIMINA run_id rather than batch averages?", - "Can they accept PEDOT:PSS/alginate/laminin soak media as nonclinical R&D samples?" - ] - }, - { - "evidence_from_source": "Hydrogel characterization page describes swell ratio testing and advanced techniques including DSC, TGA, GPC, AFM, and SEM.", - "fit_for_h_a": "strong_coupon_physical_candidate", - "id": "cambridge_polymer_group_hydrogel", - "likely_covers": [ - "swelling ratio", - "hydrogel physical characterization", - "microscopy or surface characterization" - ], - "name": "Cambridge Polymer Group", - "risk": "May be stronger for material characterization than cell-culture medium physicochemical testing.", - "service_type": "hydrogel_characterization", - "source_url": "https://www.campoly.com/services/analytical-testing/material-characterization-techniques/hydrogel-characterization/", - "unknowns_to_ask": [ - "Can they do simple optical transparency and delamination scoring on MEA witness coupons?", - "Can they handle hydrated alginate-laminin-PEDOT:PSS coupons under culture-medium timing?", - "Can they pair physical scoring with pH/osmolality/conductivity or only coupon characterization?" - ] - }, - { - "evidence_from_source": "Service page lists cell culture media stability/testing and standard release specification tests including appearance, pH, osmolality, endotoxin, bioburden, and solubility.", - "fit_for_h_a": "strong_media_release_candidate", - "id": "sigmaaldrich_media_testing", - "likely_covers": [ - "appearance", - "pH", - "osmolality" - ], - "name": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "risk": "May be optimized for media products and release specifications, not custom hydrogel coupon extraction workflows.", - "service_type": "cell_culture_media_testing", - "source_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "unknowns_to_ask": [ - "Can conductivity be added to the report?", - "Can the service handle customer-prepared hydrogel coupon soak media rather than only standard media lots?", - "Can they return raw sample-level values in the LIMINA CSV schema?" - ] - }, - { - "evidence_from_source": "Service page describes contract microscope-based imaging and analysis for biotech/pharma/research, including 2D/3D samples, organoids, spheroids, and microphysiological systems.", - "fit_for_h_a": "imaging_add_on_candidate", - "id": "nikon_bioimaging_lab", - "likely_covers": [ - "imaging", - "image analysis", - "experimental design consultation" - ], - "name": "Nikon BioImaging Lab USA", - "risk": "Does not cover pH/osmolality/conductivity and may be overpowered for simple H-A coupon inspection.", - "service_type": "microscopy_and_image_analysis", - "source_url": "https://www.microscope.healthcare.nikon.com/bioimaging-centers/nikon-bioimaging-labs/boston-usa", - "unknowns_to_ask": [ - "Can they image hydrated coupons without disturbing swelling state?", - "Can they provide delamination/transparency measurements from coupon images?", - "Can they coordinate with a media testing lab?" - ] - }, - { - "evidence_from_source": "Service page describes ISO 10993-18 chemical characterization and extractables/leachables testing for medical devices and related products.", - "fit_for_h_a": "future_e_l_escalation_candidate", - "id": "sgs_extractables_leachables", - "likely_covers": [ - "extractables", - "leachables", - "chemical characterization", - "toxicological assessment support" - ], - "name": "SGS USA Extractables and Leachables in Medical Devices", - "risk": "Too heavy for first H-A unless the project wants early E&L escalation; useful after H-A if leachables are a key decision.", - "service_type": "iso_10993_chemical_characterization", - "source_url": "https://www.sgs.com/en-us/services/extractables-and-leachables-in-medical-devices", - "unknowns_to_ask": [ - "Can they run a non-GLP exploratory aqueous neural-medium soak before a full ISO 10993-18 program?", - "Can they avoid consuming all limited H-A coupon material?", - "What sample mass or surface area is required?" - ] - }, - { - "evidence_from_source": "Service page describes ISO 10993-18 extractables/leachables, sample preparation, VOC/SVOC/NVOC and elemental impurity screening, and GLP/ISO support.", - "fit_for_h_a": "future_e_l_escalation_candidate", - "id": "hohenstein_medical_el", - "likely_covers": [ - "ISO 10993-18 chemical characterization", - "aqueous extract screening", - "elemental impurity screening", - "toxicological risk assessment support" - ], - "name": "Hohenstein Medical Extractables and Leachables", - "risk": "Regulatory E&L scope may be more expensive and slower than the minimal H-A decision package.", - "service_type": "iso_10993_chemical_characterization", - "source_url": "https://www.hohenstein.us/en-us/medical-device-testing-lab/medical-device-extractables-leachables", - "unknowns_to_ask": [ - "Can they adapt extraction to neural culture medium or compatible aqueous soak conditions?", - "Can they support an exploratory H-A screen before regulated-style chemistry?", - "What sample number and surface-area requirements apply to hydrogel-coated MEA coupons?" - ] - }, - { - "evidence_from_source": "Official China site describes testing, inspection, certification, and healthcare/medical-device related services; exact pH/osmolality/conductivity coverage must be confirmed by RFQ.", - "fit_for_h_a": "second_wave_apac_split_scope_candidate", - "id": "intertek_china_healthcare_testing", - "likely_covers": [ - "China/APAC local intake", - "materials or medical-device testing routing", - "possible chemical/physical analysis" - ], - "name": "Intertek China Healthcare and Medical Device Testing", - "risk": "Service fit is broader and must be routed by RFQ; do not assume exact H-A field coverage until a technical reply confirms it.", - "service_type": "apac_materials_and_healthcare_testing", - "source_url": "https://www.intertek.com.cn/", - "unknowns_to_ask": [ - "Can the China lab route a non-GLP R&D hydrogel-coupon soak-media study to pH, osmolality, conductivity, and appearance testing?", - "Can coupon physical scoring or microscopy be paired with media measurements while preserving run_id labels?", - "Can they accept and return the exact LIMINA raw-measurement CSV plus source-file provenance?" - ] - }, - { - "evidence_from_source": "Official company site lists global testing services; use RFQ to route specifically to medical-device chemistry, biocompatibility, or extractables/leachables feasibility.", - "fit_for_h_a": "second_wave_apac_e_l_escalation_candidate", - "id": "wuxi_apptec_medical_device_testing", - "likely_covers": [ - "medical-device testing routing", - "biocompatibility or chemistry escalation", - "China/APAC logistics" - ], - "name": "WuXi AppTec Medical Device Testing", - "risk": "Likely better for regulated-style chemistry/biocompatibility escalation than the fastest minimal H-A panel.", - "service_type": "medical_device_biocompatibility_and_chemistry", - "source_url": "https://www.wuxiapptec.com/", - "unknowns_to_ask": [ - "Can they run a small exploratory aqueous/neural-medium extract screen before full ISO 10993 work?", - "Can they add basic pH, osmolality, conductivity, and appearance fields, or should they only be used after H-A flags chemical risk?", - "What surface area, coupon count, sample volume, SDS, and chain-of-custody requirements apply?" - ] - }, - { - "evidence_from_source": "Official China site covers medical-device testing and certification services; use RFQ to confirm whether exploratory material-blank measurements can be scoped separately from full regulatory testing.", - "fit_for_h_a": "second_wave_apac_regulatory_escalation_candidate", - "id": "tuv_sud_china_medical_device_testing", - "likely_covers": [ - "medical-device testing routing", - "biocompatibility or chemical characterization escalation", - "China/APAC contact path" - ], - "name": "TUV SUD China Medical Device Testing", - "risk": "May be too regulatory and too slow for the minimal first H-A decision unless chemistry/biocompatibility escalation is required.", - "service_type": "medical_device_testing_and_biocompatibility", - "source_url": "https://www.tuvsud.cn/", - "unknowns_to_ask": [ - "Can they scope the first H-A pass as non-GLP R&D instead of a full regulatory submission package?", - "Can they return run_id-level raw pH/osmolality/conductivity and coupon inspection values in the LIMINA schema?", - "If not, can they quote only the later ISO 10993 chemical characterization path after H-A passes?" - ] - }, - { - "evidence_from_source": "Official site describes third-party testing services across health, safety, and product categories; exact medical-device, media chemistry, and custom R&D coverage must be confirmed.", - "fit_for_h_a": "second_wave_china_screening_candidate", - "id": "pony_testing_medical_device", - "likely_covers": [ - "China local third-party testing intake", - "possible physicochemical or product-safety routing", - "possible medical-device test routing" - ], - "name": "PONY Testing Medical Device and Life-Science Services", - "risk": "Broad testing company; H-A fit depends entirely on technical routing and must be confirmed before sample shipment.", - "service_type": "china_third_party_testing", - "source_url": "https://www.ponytest.com/", - "unknowns_to_ask": [ - "Can they route a nonclinical hydrogel-coupon neural-medium soak study to pH, osmolality, conductivity, appearance, and coupon inspection outputs?", - "Can they preserve one row per run_id and return raw exports/source files?", - "Can they keep the scope exploratory rather than certificate-only or pooled product-release testing?" - ] - } - ], - "requested_matrix": { - "articles": [ - "no_coating_mea_control", - "hydrogel_laminin_control", - "lead_nhi_pedot_low_loading", - "challenge_nhi_pedot_high_loading" - ], - "raw_entries": 228, - "replicates": [ - "1" - ], - "runs": 12, - "timepoints": [ - "0 h", - "24 h", - "72 h" - ] - }, - "secondary_wave": [ - { - "evidence_from_source": "Service page describes contract microscope-based imaging and analysis for biotech/pharma/research, including 2D/3D samples, organoids, spheroids, and microphysiological systems.", - "fit_for_h_a": "imaging_add_on_candidate", - "id": "nikon_bioimaging_lab", - "likely_covers": [ - "imaging", - "image analysis", - "experimental design consultation" - ], - "name": "Nikon BioImaging Lab USA", - "risk": "Does not cover pH/osmolality/conductivity and may be overpowered for simple H-A coupon inspection.", - "service_type": "microscopy_and_image_analysis", - "source_url": "https://www.microscope.healthcare.nikon.com/bioimaging-centers/nikon-bioimaging-labs/boston-usa", - "unknowns_to_ask": [ - "Can they image hydrated coupons without disturbing swelling state?", - "Can they provide delamination/transparency measurements from coupon images?", - "Can they coordinate with a media testing lab?" - ] - }, - { - "evidence_from_source": "Service page describes ISO 10993-18 chemical characterization and extractables/leachables testing for medical devices and related products.", - "fit_for_h_a": "future_e_l_escalation_candidate", - "id": "sgs_extractables_leachables", - "likely_covers": [ - "extractables", - "leachables", - "chemical characterization", - "toxicological assessment support" - ], - "name": "SGS USA Extractables and Leachables in Medical Devices", - "risk": "Too heavy for first H-A unless the project wants early E&L escalation; useful after H-A if leachables are a key decision.", - "service_type": "iso_10993_chemical_characterization", - "source_url": "https://www.sgs.com/en-us/services/extractables-and-leachables-in-medical-devices", - "unknowns_to_ask": [ - "Can they run a non-GLP exploratory aqueous neural-medium soak before a full ISO 10993-18 program?", - "Can they avoid consuming all limited H-A coupon material?", - "What sample mass or surface area is required?" - ] - }, - { - "evidence_from_source": "Service page describes ISO 10993-18 extractables/leachables, sample preparation, VOC/SVOC/NVOC and elemental impurity screening, and GLP/ISO support.", - "fit_for_h_a": "future_e_l_escalation_candidate", - "id": "hohenstein_medical_el", - "likely_covers": [ - "ISO 10993-18 chemical characterization", - "aqueous extract screening", - "elemental impurity screening", - "toxicological risk assessment support" - ], - "name": "Hohenstein Medical Extractables and Leachables", - "risk": "Regulatory E&L scope may be more expensive and slower than the minimal H-A decision package.", - "service_type": "iso_10993_chemical_characterization", - "source_url": "https://www.hohenstein.us/en-us/medical-device-testing-lab/medical-device-extractables-leachables", - "unknowns_to_ask": [ - "Can they adapt extraction to neural culture medium or compatible aqueous soak conditions?", - "Can they support an exploratory H-A screen before regulated-style chemistry?", - "What sample number and surface-area requirements apply to hydrogel-coated MEA coupons?" - ] - }, - { - "evidence_from_source": "Official China site describes testing, inspection, certification, and healthcare/medical-device related services; exact pH/osmolality/conductivity coverage must be confirmed by RFQ.", - "fit_for_h_a": "second_wave_apac_split_scope_candidate", - "id": "intertek_china_healthcare_testing", - "likely_covers": [ - "China/APAC local intake", - "materials or medical-device testing routing", - "possible chemical/physical analysis" - ], - "name": "Intertek China Healthcare and Medical Device Testing", - "risk": "Service fit is broader and must be routed by RFQ; do not assume exact H-A field coverage until a technical reply confirms it.", - "service_type": "apac_materials_and_healthcare_testing", - "source_url": "https://www.intertek.com.cn/", - "unknowns_to_ask": [ - "Can the China lab route a non-GLP R&D hydrogel-coupon soak-media study to pH, osmolality, conductivity, and appearance testing?", - "Can coupon physical scoring or microscopy be paired with media measurements while preserving run_id labels?", - "Can they accept and return the exact LIMINA raw-measurement CSV plus source-file provenance?" - ] - }, - { - "evidence_from_source": "Official company site lists global testing services; use RFQ to route specifically to medical-device chemistry, biocompatibility, or extractables/leachables feasibility.", - "fit_for_h_a": "second_wave_apac_e_l_escalation_candidate", - "id": "wuxi_apptec_medical_device_testing", - "likely_covers": [ - "medical-device testing routing", - "biocompatibility or chemistry escalation", - "China/APAC logistics" - ], - "name": "WuXi AppTec Medical Device Testing", - "risk": "Likely better for regulated-style chemistry/biocompatibility escalation than the fastest minimal H-A panel.", - "service_type": "medical_device_biocompatibility_and_chemistry", - "source_url": "https://www.wuxiapptec.com/", - "unknowns_to_ask": [ - "Can they run a small exploratory aqueous/neural-medium extract screen before full ISO 10993 work?", - "Can they add basic pH, osmolality, conductivity, and appearance fields, or should they only be used after H-A flags chemical risk?", - "What surface area, coupon count, sample volume, SDS, and chain-of-custody requirements apply?" - ] - }, - { - "evidence_from_source": "Official China site covers medical-device testing and certification services; use RFQ to confirm whether exploratory material-blank measurements can be scoped separately from full regulatory testing.", - "fit_for_h_a": "second_wave_apac_regulatory_escalation_candidate", - "id": "tuv_sud_china_medical_device_testing", - "likely_covers": [ - "medical-device testing routing", - "biocompatibility or chemical characterization escalation", - "China/APAC contact path" - ], - "name": "TUV SUD China Medical Device Testing", - "risk": "May be too regulatory and too slow for the minimal first H-A decision unless chemistry/biocompatibility escalation is required.", - "service_type": "medical_device_testing_and_biocompatibility", - "source_url": "https://www.tuvsud.cn/", - "unknowns_to_ask": [ - "Can they scope the first H-A pass as non-GLP R&D instead of a full regulatory submission package?", - "Can they return run_id-level raw pH/osmolality/conductivity and coupon inspection values in the LIMINA schema?", - "If not, can they quote only the later ISO 10993 chemical characterization path after H-A passes?" - ] - }, - { - "evidence_from_source": "Official site describes third-party testing services across health, safety, and product categories; exact medical-device, media chemistry, and custom R&D coverage must be confirmed.", - "fit_for_h_a": "second_wave_china_screening_candidate", - "id": "pony_testing_medical_device", - "likely_covers": [ - "China local third-party testing intake", - "possible physicochemical or product-safety routing", - "possible medical-device test routing" - ], - "name": "PONY Testing Medical Device and Life-Science Services", - "risk": "Broad testing company; H-A fit depends entirely on technical routing and must be confirmed before sample shipment.", - "service_type": "china_third_party_testing", - "source_url": "https://www.ponytest.com/", - "unknowns_to_ask": [ - "Can they route a nonclinical hydrogel-coupon neural-medium soak study to pH, osmolality, conductivity, appearance, and coupon inspection outputs?", - "Can they preserve one row per run_id and return raw exports/source files?", - "Can they keep the scope exploratory rather than certificate-only or pooled product-release testing?" - ] - } - ], - "service_request_status": "ready_to_request_real_measurements", - "status": "ready_for_vendor_screening" -} \ No newline at end of file diff --git a/data/nhi_pedot_h_a_vendor_return_checklist.csv b/data/nhi_pedot_h_a_vendor_return_checklist.csv deleted file mode 100644 index dcfe764..0000000 --- a/data/nhi_pedot_h_a_vendor_return_checklist.csv +++ /dev/null @@ -1,6 +0,0 @@ -item_id,expected_path,required,exists,status,acceptance -completed_raw_measurements,data/nhi_pedot_h_a_vendor_return_inbox/completed_raw_measurements.csv,true,false,missing_or_incomplete,"CSV has RAW_FIELDS schema, real value rows, provenance fields, and source_file references." -completed_bundle_entry_sheet,data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv,false,true,missing_or_incomplete,"Optional compact CSV has bundle-entry schema, ready apply=yes rows, and source_file references." -completed_chain_of_custody,data/nhi_pedot_h_a_vendor_return_inbox/completed_chain_of_custody.csv,true,false,missing_or_incomplete,CSV uses the chain-of-custody schema with transfer fields filled for returned samples. -instrument_exports,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports,true,true,missing_or_empty,Directory contains original instrument exports/images referenced by source_file. -deviation_log,data/nhi_pedot_h_a_vendor_return_inbox/deviation_log.md,true,false,missing,Markdown or text log states no deviations or lists every protocol/sample/instrument deviation. diff --git a/data/nhi_pedot_h_a_vendor_return_inbox/README.md b/data/nhi_pedot_h_a_vendor_return_inbox/README.md deleted file mode 100644 index 350088f..0000000 --- a/data/nhi_pedot_h_a_vendor_return_inbox/README.md +++ /dev/null @@ -1,22 +0,0 @@ -# NHI-PEDOT H-A Vendor Return Inbox - -Place real vendor/cooperator return files here. Do not place synthetic fixtures here. - -Expected files: - -- `completed_raw_measurements.csv`: completed long-form raw measurement CSV using the LIMINA schema. -- `completed_bundle_entry_sheet.csv`: optional compact one-row-per-source-file bundle sheet generated by `render_nhi_pedot_h_a_vendor_bundle_entry_sheet.py` and returned by the provider. -- `completed_chain_of_custody.csv`: completed sample/coupon chain-of-custody CSV. -- `external_lab_exports/`: original instrument exports and images referenced by `source_file`. -- `deviation_log.md`: deviations from timing, instruments, sample handling, medium, or recipe. - -After files are present, run: - -```bash -python3 scripts/render_nhi_pedot_h_a_vendor_return_intake.py -python3 scripts/render_nhi_pedot_h_a_vendor_bundle_entry_sheet.py -python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv -python3 scripts/import_nhi_pedot_h_a_source_values.py -python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py -python3 scripts/run_limina_iteration.py -``` diff --git a/data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv b/data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv deleted file mode 100644 index 7dcc4be..0000000 --- a/data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv +++ /dev/null @@ -1,97 +0,0 @@ -bundle_id,apply,source_file,measured_at,operator_or_agent,instrument_id,notes,value_date,value_medium_lot,value_medium_name,value_temperature_c,value_mea_coupon_id,value_electrode_material,value_laminin_or_peptide_density,value_sterilization_or_aseptic_protocol,value_pH_initial,value_pH_final,value_osmolality_initial_mOsm_kg,value_osmolality_final_mOsm_kg,value_conductivity_initial_mS_cm,value_conductivity_final_mS_cm,value_visible_precipitate,value_visible_shedding,value_swelling_fraction,value_delamination_score,value_optical_transparency_fraction,priority,run_id,article_id,timepoint,source_class,target_fields,target_value_columns,source_value_rows,instrument_required,source_file_requirement,source_file_exists,allowed_source_file,entry_status,missing_items,operator_action -H-A-BUNDLE-001,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_metadata_chain_of_custody_record.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-002,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_conductivity_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-003,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-004,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_osmolality_report_or_export.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-005,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_pH_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-006,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_build_or_supplier_record.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-007,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-008,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,challenge_nhi_pedot_high_loading,0h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h/h_a_temperature_or_incubator_log.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-009,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_metadata_chain_of_custody_record.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-010,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_conductivity_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-011,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-012,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_osmolality_report_or_export.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-013,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_pH_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-014,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_build_or_supplier_record.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-015,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-016,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,challenge_nhi_pedot_high_loading,24h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h/h_a_temperature_or_incubator_log.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-017,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_metadata_chain_of_custody_record.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-018,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_conductivity_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-019,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-020,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_osmolality_report_or_export.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-021,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_pH_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-022,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_build_or_supplier_record.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-023,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-024,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,challenge_nhi_pedot_high_loading,72h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h/h_a_temperature_or_incubator_log.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-025,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_metadata_chain_of_custody_record.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-026,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_conductivity_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-027,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-028,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_osmolality_report_or_export.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-029,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_pH_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-030,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_build_or_supplier_record.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-031,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-032,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,hydrogel_laminin_control,0h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h/h_a_temperature_or_incubator_log.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-033,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_metadata_chain_of_custody_record.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-034,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_conductivity_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-035,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-036,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_osmolality_report_or_export.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-037,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_pH_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-038,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_build_or_supplier_record.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-039,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-040,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,hydrogel_laminin_control,24h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h/h_a_temperature_or_incubator_log.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-041,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_metadata_chain_of_custody_record.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-042,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_conductivity_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-043,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-044,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_osmolality_report_or_export.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-045,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_pH_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-046,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_build_or_supplier_record.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-047,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-048,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,hydrogel_laminin_control,72h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h/h_a_temperature_or_incubator_log.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-049,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_metadata_chain_of_custody_record.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-050,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_conductivity_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-051,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-052,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_osmolality_report_or_export.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-053,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_pH_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-054,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_build_or_supplier_record.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-055,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-056,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,lead_nhi_pedot_low_loading,0h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h/h_a_temperature_or_incubator_log.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-057,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_metadata_chain_of_custody_record.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-058,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_conductivity_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-059,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-060,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_osmolality_report_or_export.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-061,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_pH_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-062,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_build_or_supplier_record.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-063,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-064,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,lead_nhi_pedot_low_loading,24h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h/h_a_temperature_or_incubator_log.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-065,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_metadata_chain_of_custody_record.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-066,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_conductivity_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-067,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-068,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_osmolality_report_or_export.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-069,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_pH_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-070,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_build_or_supplier_record.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-071,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-072,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,lead_nhi_pedot_low_loading,72h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h/h_a_temperature_or_incubator_log.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-073,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_metadata_chain_of_custody_record.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-074,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_conductivity_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-075,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_physical_inspection_scoring_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-076,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_osmolality_report_or_export.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-077,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_pH_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-078,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_build_or_supplier_record.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-079,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_swelling_dimension_or_mass_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-080,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,no_coating_mea_control,0h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-0h/h_a_temperature_or_incubator_log.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-081,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_metadata_chain_of_custody_record.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-082,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_conductivity_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-083,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_physical_inspection_scoring_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-084,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_osmolality_report_or_export.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-085,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_pH_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-086,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_build_or_supplier_record.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-087,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_swelling_dimension_or_mass_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-088,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,no_coating_mea_control,24h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-24h/h_a_temperature_or_incubator_log.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-089,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_metadata_chain_of_custody_record.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,bench_or_chain_of_custody_record,date;medium_lot;medium_name,value_date;value_medium_name;value_medium_lot,3,false,"Bench sheet, vendor report, or chain-of-custody CSV. / Lot CoA, bottle label image, or chain-of-custody record. / Medium bottle photo, lot CoA, or chain-of-custody record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_metadata_chain_of_custody_record.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_medium_name;value_medium_lot;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-090,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_conductivity_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,conductivity_meter_export_or_photo,conductivity,value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm,2,true,"Conductivity meter export, calibration log, or display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_conductivity_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_initial_mS_cm;value_conductivity_final_mS_cm;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-091,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,image_or_scoring_worksheet,delamination_score;optical_transparency_fraction;visible_precipitate;visible_shedding,value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction,4,true,Image plus scoring worksheet or vendor image-analysis report. / Image-analysis export or vendor microscopy report. / Time-stamped image or microscopy/stereoscope export. / Time-stamped image or vendor inspection report.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_physical_inspection_scoring_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;value_visible_shedding;value_delamination_score;value_optical_transparency_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-092,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_osmolality_report_or_export.pdf,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,osmometer_report_or_export,osmolality,value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg,2,true,Osmometer report/export reconciled to run_id.,false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_osmolality_report_or_export.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_initial_mOsm_kg;value_osmolality_final_mOsm_kg;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-093,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_pH_meter_export_or_photo.csv,,,,,,,,,,,,,,,,,,,,,,,,2,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,pH_meter_export_or_photo,pH,value_pH_initial;value_pH_final,2,true,"Meter export, calibration log, or time-stamped display photo reconciled to run_id.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_pH_meter_export_or_photo.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_initial;value_pH_final;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-094,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_build_or_supplier_record.pdf,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,supplier_or_build_record,electrode_material;laminin_or_peptide_density;mea_coupon_id;sterilization_or_aseptic_protocol,value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol,4,false,"Build sheet, sample label, or chain-of-custody record. / Recipe record, supplier CoA, coating log, or build sheet. / SOP identifier, batch record, or chain-of-custody record. / Supplier documentation, build sheet, or sample label record.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_build_or_supplier_record.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;value_mea_coupon_id;value_electrode_material;value_laminin_or_peptide_density;value_sterilization_or_aseptic_protocol;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-095,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,,,,,,,,,,,,,,,,,,,,,,,,3,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,swelling_dimension_or_mass_worksheet,swelling_fraction,value_swelling_fraction,1,true,"Image analysis export, caliper log, or mass/dimension worksheet.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_swelling_dimension_or_mass_worksheet.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_swelling_fraction;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." -H-A-BUNDLE-096,,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_temperature_or_incubator_log.csv,,,,,,,,,,,,,,,,,,,,,,,,1,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,no_coating_mea_control,72h,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,"Incubator log, probe export, or time-stamped photo.",false,data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports/NHIPEDOT-H-A-no_coating_mea_control-R1-72h/h_a_temperature_or_incubator_log.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report/image/worksheet at source_file, fill only real measured/reviewed values, then set apply=yes and run python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv." diff --git a/data/nhi_pedot_h_a_vendor_return_intake.json b/data/nhi_pedot_h_a_vendor_return_intake.json deleted file mode 100644 index 6112f12..0000000 --- a/data/nhi_pedot_h_a_vendor_return_intake.json +++ /dev/null @@ -1,174 +0,0 @@ -{ - "bundle_entry_sheet": { - "apply_row_count": 0, - "blocked_apply_rows": 0, - "exists": true, - "fields": [ - "bundle_id", - "apply", - "source_file", - "measured_at", - "operator_or_agent", - "instrument_id", - "notes", - "value_date", - "value_medium_lot", - "value_medium_name", - "value_temperature_c", - "value_mea_coupon_id", - "value_electrode_material", - "value_laminin_or_peptide_density", - "value_sterilization_or_aseptic_protocol", - "value_pH_initial", - "value_pH_final", - "value_osmolality_initial_mOsm_kg", - "value_osmolality_final_mOsm_kg", - "value_conductivity_initial_mS_cm", - "value_conductivity_final_mS_cm", - "value_visible_precipitate", - "value_visible_shedding", - "value_swelling_fraction", - "value_delamination_score", - "value_optical_transparency_fraction", - "priority", - "run_id", - "article_id", - "timepoint", - "source_class", - "target_fields", - "target_value_columns", - "source_value_rows", - "instrument_required", - "source_file_requirement", - "source_file_exists", - "allowed_source_file", - "entry_status", - "missing_items", - "operator_action" - ], - "missing_fields": [], - "missing_or_unresolved_source_file_count": 0, - "missing_or_unresolved_source_file_examples": [], - "path": "data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv", - "ready_to_apply_rows": 0, - "row_count": 96, - "schema_ok": true - }, - "chain_of_custody": { - "exists": false, - "missing_fields": [ - "chain_id", - "sample_id", - "run_id", - "article_id", - "timepoint", - "sample_event", - "replicate", - "planned_container_id", - "prepared_by", - "prepared_at", - "preparation_batch_id", - "medium_name", - "medium_lot", - "coupon_or_well_id", - "released_by", - "released_at", - "carrier_or_transfer_method", - "received_by", - "received_at", - "condition_on_receipt", - "storage_location", - "source_file_returned", - "deviation_notes", - "transfer_status" - ], - "path": "data/nhi_pedot_h_a_vendor_return_inbox/completed_chain_of_custody.csv", - "pending_rows": 0, - "row_count": 0, - "schema_ok": false - }, - "checklist_rows": [ - { - "acceptance": "CSV has RAW_FIELDS schema, real value rows, provenance fields, and source_file references.", - "exists": "false", - "expected_path": "data/nhi_pedot_h_a_vendor_return_inbox/completed_raw_measurements.csv", - "item_id": "completed_raw_measurements", - "required": "true", - "status": "missing_or_incomplete" - }, - { - "acceptance": "Optional compact CSV has bundle-entry schema, ready apply=yes rows, and source_file references.", - "exists": "true", - "expected_path": "data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv", - "item_id": "completed_bundle_entry_sheet", - "required": "false", - "status": "missing_or_incomplete" - }, - { - "acceptance": "CSV uses the chain-of-custody schema with transfer fields filled for returned samples.", - "exists": "false", - "expected_path": "data/nhi_pedot_h_a_vendor_return_inbox/completed_chain_of_custody.csv", - "item_id": "completed_chain_of_custody", - "required": "true", - "status": "missing_or_incomplete" - }, - { - "acceptance": "Directory contains original instrument exports/images referenced by source_file.", - "exists": "true", - "expected_path": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports", - "item_id": "instrument_exports", - "required": "true", - "status": "missing_or_empty" - }, - { - "acceptance": "Markdown or text log states no deviations or lists every protocol/sample/instrument deviation.", - "exists": "false", - "expected_path": "data/nhi_pedot_h_a_vendor_return_inbox/deviation_log.md", - "item_id": "deviation_log", - "required": "true", - "status": "missing" - } - ], - "deviation_log": { - "exists": false, - "path": "data/nhi_pedot_h_a_vendor_return_inbox/deviation_log.md" - }, - "instrument_export_dir": "data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports", - "instrument_export_file_count": 0, - "non_evidence_boundary": "This intake report only checks whether returned files are ready for merge/QC. Returned files are not material evidence until real rows pass merge, intake QC, H-A interpretation, and the final claim audit.", - "post_return_commands": [ - "python3 scripts/render_nhi_pedot_h_a_vendor_bundle_entry_sheet.py", - "python3 scripts/apply_nhi_pedot_h_a_vendor_bundle_entry_return.py --sheet data/nhi_pedot_h_a_vendor_return_inbox/completed_bundle_entry_sheet.csv", - "python3 scripts/import_nhi_pedot_h_a_source_values.py", - "python3 scripts/merge_nhi_pedot_h_a_raw_measurements.py", - "python3 scripts/qc_nhi_pedot_h_a_intake.py --runs data/nhi_pedot_h_a_runs_active.csv --strict-exit", - "python3 scripts/interpret_nhi_pedot_h_a_sentinel.py --runs data/nhi_pedot_h_a_runs_active.csv", - "python3 scripts/run_limina_iteration.py" - ], - "purpose": "Check whether real vendor/cooperator H-A return files are ready for merge and QC.", - "raw_measurements": { - "exists": false, - "fields": [], - "missing_fields": [ - "run_id", - "sample_event", - "target_field", - "value", - "unit", - "measured_at", - "operator_or_agent", - "instrument_id", - "source_file", - "notes" - ], - "missing_or_unresolved_source_file_count": 0, - "missing_or_unresolved_source_file_examples": [], - "path": "data/nhi_pedot_h_a_vendor_return_inbox/completed_raw_measurements.csv", - "row_count": 0, - "schema_ok": false, - "value_row_count": 0 - }, - "readme": "data/nhi_pedot_h_a_vendor_return_inbox/README.md", - "return_dir": "data/nhi_pedot_h_a_vendor_return_inbox", - "status": "awaiting_vendor_return_files" -} \ No newline at end of file diff --git a/data/nhi_pedot_long_followup_package.json b/data/nhi_pedot_long_followup_package.json deleted file mode 100644 index 95d0450..0000000 --- a/data/nhi_pedot_long_followup_package.json +++ /dev/null @@ -1,191 +0,0 @@ -{ - "id": "nhi_pedot_long_followup_v0_1", - "parent_validation_package": "nhi_pedot_laminin_validation_v0_1", - "lead_variant_id": "nhi_pedot_low_loading_laminin", - "title": "NHI-PEDOT long-duration MEA network follow-up package", - "objective": "Determine whether the low-loading NHI-PEDOT laminin hydrogel interphase preserves material integrity, electrode performance, neural health, and MEA network activity over a longer CL1-like culture window after H-A/H-B/H-C coupon gates pass.", - "scope": { - "stage": "long-duration cell-contact MEA/network validation after coupon gates", - "entry_condition": "Run only after NHI-PEDOT H-A/H-B/H-C gates pass for the low-loading lead.", - "sample_type": "MEA coupons or disposable MEA cultures coated with laminin-only, hydrogel-laminin control, low-loading NHI-PEDOT lead, and high-loading challenge articles.", - "claim_after_success": "Supports first suitability claim for a CL1-like cell-contact MEA interphase, pending actual CL1 hardware integration constraints.", - "not_in_scope": "Regulatory approval, production CL1 modification, chronic implantable safety, and irreversible deployment into unavailable CL1 hardware." - }, - "test_articles": [ - { - "id": "long_laminin_only_control", - "source_article_id": "laminin_only_control", - "variant_id": "laminin_only_mea", - "role": "standard biochemical adhesion control" - }, - { - "id": "long_hydrogel_laminin_control", - "source_article_id": "hydrogel_laminin_control", - "variant_id": "hydrogel_laminin_no_pedot", - "role": "soft matrix comparator" - }, - { - "id": "long_lead_nhi_pedot_low_loading", - "source_article_id": "lead_nhi_pedot_low_loading", - "variant_id": "nhi_pedot_low_loading_laminin", - "role": "lead long-duration candidate" - }, - { - "id": "long_challenge_nhi_pedot_high_loading", - "source_article_id": "challenge_nhi_pedot_high_loading", - "variant_id": "nhi_pedot_high_loading_laminin", - "role": "conductivity-versus-toxicity boundary comparator" - }, - { - "id": "long_positive_toxicity_control", - "source_article_id": null, - "variant_id": null, - "role": "assay sensitivity control" - } - ], - "run_matrix": [ - { - "phase": "L1", - "name": "Long material and electrochemical stability", - "purpose": "Track hydrogel integrity, shedding, optical access, impedance drift, and charge-storage retention before claiming long-culture suitability.", - "articles": ["long_laminin_only_control", "long_hydrogel_laminin_control", "long_lead_nhi_pedot_low_loading", "long_challenge_nhi_pedot_high_loading"], - "minimum_replicates": 3, - "timepoints": ["0 d", "7 d", "14 d", "28 d", "42 d"], - "must_pass_before": "L2/L3 interpretation" - }, - { - "phase": "L2", - "name": "Long neural health and spontaneous network stability", - "purpose": "Measure whether the lead preserves viability, morphology, electrode yield, spontaneous spiking, burst structure, and synchrony over a CL1-like culture window.", - "articles": ["long_laminin_only_control", "long_hydrogel_laminin_control", "long_lead_nhi_pedot_low_loading", "long_challenge_nhi_pedot_high_loading", "long_positive_toxicity_control"], - "minimum_replicates": 3, - "timepoints": ["7 d", "14 d", "28 d", "42 d"], - "must_pass_before": "first suitability claim" - }, - { - "phase": "L3", - "name": "Stimulus-recording resilience and recovery", - "purpose": "Check whether the interphase maintains usable MEA signal and network recovery after controlled stimulation/recording stress.", - "articles": ["long_laminin_only_control", "long_hydrogel_laminin_control", "long_lead_nhi_pedot_low_loading", "long_challenge_nhi_pedot_high_loading"], - "minimum_replicates": 3, - "timepoints": ["pre-stim", "post-stim", "24 h recovery"], - "must_pass_before": "first suitability claim" - } - ], - "assay_panel": [ - { - "id": "long_material_integrity", - "readout": "Visible shedding, delamination, swelling, optical transparency, electrode-window access, and imaging compatibility", - "method_class": "longitudinal microscopy, image log, and physical inspection", - "evidence_refs": ["hydrogel_neural_tissue_2020", "gelma_pedot_micropatterning_2026"] - }, - { - "id": "long_electrochemical_stability", - "readout": "1 kHz impedance drift, charge-storage retention, baseline noise, and electrode yield", - "method_class": "MEA or electrochemical workstation longitudinal measurement", - "evidence_refs": ["pedot_brain_monitoring_2025", "pedot_neural_culture_hydrogel_2025"] - }, - { - "id": "long_neural_health", - "readout": "Viability, LDH or equivalent cytotoxicity, neurite/network coverage, and morphology stress flags", - "method_class": "viability assay and high-content neural imaging", - "evidence_refs": ["iso_10993_5_cytotoxicity_extract_fda", "dnt_nam_viability_neurite_mea_2022"] - }, - { - "id": "long_network_function", - "readout": "Spontaneous spike rate, burst rate, synchrony, electrode yield, and activity drift relative to hydrogel-laminin control", - "method_class": "MEA network recording and analysis", - "evidence_refs": ["neuronal_network_material_biocompatibility_mea_2013", "dnt_nam_viability_neurite_mea_2022"] - }, - { - "id": "stimulus_recovery", - "readout": "Post-stimulation signal recovery, spike/burst recovery, and irreversible impedance degradation", - "method_class": "controlled MEA stimulation/recording stress test", - "evidence_refs": ["pedot_brain_monitoring_2025", "neuronal_network_material_biocompatibility_mea_2013"] - } - ], - "acceptance_gates": [ - { - "id": "long_material_integrity_gate", - "criterion": "Lead shows no visible shedding, delamination score <= 0.5, swelling <= 20 percent, optical transparency >= 0.75, and electrode-window access preserved through the long window.", - "failure_response": "Do not claim suitability; change matrix, anchoring chemistry, thickness, or PEDOT:PSS loading." - }, - { - "id": "long_electrochemical_stability_gate", - "criterion": "Lead 1 kHz impedance drift remains within 25 percent of its initial value or stays at least 20 percent better than hydrogel-laminin control, with charge-storage retention >= 80 percent.", - "failure_response": "Do not claim MEA suitability; change conductive-domain geometry, stabilization, or rinse protocol." - }, - { - "id": "long_neural_health_gate", - "criterion": "Lead keeps viability >= 90 percent of hydrogel-laminin control, LDH/cytotoxicity <= 120 percent of control, neurite/network coverage >= 85 percent of control, and morphology stress score <= 1.", - "failure_response": "Treat the formulation as biologically unsafe or under-optimized; lower loading or change presentation chemistry." - }, - { - "id": "long_network_stability_gate", - "criterion": "Lead keeps electrode yield >= 90 percent of hydrogel-laminin control, spike rate and burst rate within 70-130 percent of control, synchrony within 70-130 percent, and no monotonic collapse across timepoints.", - "failure_response": "Do not claim CL1-like functional suitability; tune stiffness, ligand density, thickness, or conductive-domain layout." - }, - { - "id": "long_stimulus_recovery_gate", - "criterion": "After controlled stimulation/recording stress, lead recovers >= 85 percent of pre-stim spike/burst activity within 24 h and shows irreversible impedance degradation <= 20 percent.", - "failure_response": "Preserve as passive interface only; do not advance as robust recording/stimulation interphase." - }, - { - "id": "long_superiority_gate", - "criterion": "Lead is non-inferior to hydrogel-laminin control on neural health and network stability while improving or stabilizing electrochemical readouts; high-loading challenge must not be safer than the lead.", - "failure_response": "If hydrogel-laminin control is equivalent, demote PEDOT:PSS; if high-loading is safer and stronger, rerank loading." - } - ], - "data_capture_fields": [ - "run_id", - "date", - "operator_or_agent", - "phase", - "timepoint", - "replicate", - "article_id", - "variant_id", - "control_article_id", - "cell_model", - "culture_day", - "mea_coupon_id", - "hydrogel_matrix", - "pedot_pss_loading_fraction", - "laminin_or_peptide_density", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "electrode_window_access", - "eis_1khz_initial_ohm", - "eis_1khz_current_ohm", - "eis_1khz_pct_hydrogel_control", - "charge_storage_capacity_initial", - "charge_storage_capacity_current", - "charge_storage_capacity_retention_fraction", - "baseline_noise_uv", - "viability_pct_hydrogel_control", - "ldh_pct_hydrogel_control", - "neurite_coverage_pct_hydrogel_control", - "morphology_stress_score", - "electrode_yield_pct_hydrogel_control", - "spike_rate_pct_hydrogel_control", - "burst_rate_pct_hydrogel_control", - "synchrony_pct_hydrogel_control", - "post_stim_spike_recovery_pct_pre", - "post_stim_burst_recovery_pct_pre", - "post_stim_impedance_degradation_pct", - "gate_results", - "source_file", - "notes" - ], - "source_refs": [ - "pedot_brain_monitoring_2025", - "pedot_neural_culture_hydrogel_2025", - "hydrogel_neural_tissue_2020", - "gelma_pedot_micropatterning_2026", - "iso_10993_5_cytotoxicity_extract_fda", - "dnt_nam_viability_neurite_mea_2022", - "neuronal_network_material_biocompatibility_mea_2013" - ] -} diff --git a/data/nhi_pedot_long_planned_runs.csv b/data/nhi_pedot_long_planned_runs.csv deleted file mode 100644 index ebbbd9e..0000000 --- a/data/nhi_pedot_long_planned_runs.csv +++ /dev/null @@ -1,157 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,cell_model,culture_day,mea_coupon_id,hydrogel_matrix,pedot_pss_loading_fraction,laminin_or_peptide_density,visible_shedding,swelling_fraction,delamination_score,optical_transparency_fraction,electrode_window_access,eis_1khz_initial_ohm,eis_1khz_current_ohm,eis_1khz_pct_hydrogel_control,charge_storage_capacity_initial,charge_storage_capacity_current,charge_storage_capacity_retention_fraction,baseline_noise_uv,viability_pct_hydrogel_control,ldh_pct_hydrogel_control,neurite_coverage_pct_hydrogel_control,morphology_stress_score,electrode_yield_pct_hydrogel_control,spike_rate_pct_hydrogel_control,burst_rate_pct_hydrogel_control,synchrony_pct_hydrogel_control,post_stim_spike_recovery_pct_pre,post_stim_burst_recovery_pct_pre,post_stim_impedance_degradation_pct,gate_results,source_file,notes -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,,limina,L1,0 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,0,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,,limina,L1,7 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,,limina,L1,14 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,,limina,L1,28 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,,limina,L1,42 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,,limina,L1,0 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,0,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,,limina,L1,7 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,,limina,L1,14 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,,limina,L1,28 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,,limina,L1,42 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,,limina,L1,0 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,0,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,,limina,L1,7 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,,limina,L1,14 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,,limina,L1,28 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,,limina,L1,42 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,,limina,L1,0 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,,limina,L1,7 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,,limina,L1,14 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,,limina,L1,28 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,,limina,L1,42 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,,limina,L1,0 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,,limina,L1,7 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,,limina,L1,14 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,,limina,L1,28 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,,limina,L1,42 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,,limina,L1,0 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,,limina,L1,7 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,,limina,L1,14 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,,limina,L1,28 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,,limina,L1,42 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,,limina,L1,0 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,,limina,L1,7 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,,limina,L1,14 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,,limina,L1,28 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,,limina,L1,42 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,,limina,L1,0 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,,limina,L1,7 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,,limina,L1,14 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,,limina,L1,28 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,,limina,L1,42 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,,limina,L1,0 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,,limina,L1,7 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,,limina,L1,14 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,,limina,L1,28 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,,limina,L1,42 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,,limina,L1,0 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,,limina,L1,7 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,,limina,L1,14 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,,limina,L1,28 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,,limina,L1,42 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,,limina,L1,0 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,,limina,L1,7 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,,limina,L1,14 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,,limina,L1,28 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,,limina,L1,42 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,,limina,L1,0 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,0,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,,limina,L1,7 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,,limina,L1,14 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,,limina,L1,28 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,,limina,L1,42 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,,limina,L2,7 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,,limina,L2,14 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,,limina,L2,28 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,,limina,L2,42 d,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,,limina,L2,7 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,,limina,L2,14 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,,limina,L2,28 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,,limina,L2,42 d,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,,limina,L2,7 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,7,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,,limina,L2,14 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,14,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,,limina,L2,28 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,28,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,,limina,L2,42 d,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,42,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,,limina,L2,7 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,,limina,L2,14 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,,limina,L2,28 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,,limina,L2,42 d,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,,limina,L2,7 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,,limina,L2,14 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,,limina,L2,28 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,,limina,L2,42 d,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,,limina,L2,7 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,,limina,L2,14 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,,limina,L2,28 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,,limina,L2,42 d,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,,limina,L2,7 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,,limina,L2,14 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,,limina,L2,28 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,,limina,L2,42 d,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,,limina,L2,7 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,,limina,L2,14 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,,limina,L2,28 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,,limina,L2,42 d,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,,limina,L2,7 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,,limina,L2,14 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,,limina,L2,28 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,,limina,L2,42 d,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,,limina,L2,7 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,,limina,L2,14 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,,limina,L2,28 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,,limina,L2,42 d,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,,limina,L2,7 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,,limina,L2,14 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,,limina,L2,28 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,,limina,L2,42 d,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,,limina,L2,7 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,7,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,,limina,L2,14 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,14,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,,limina,L2,28 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,28,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,,limina,L2,42 d,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,42,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,,limina,L2,7 d,1,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,7,,assay_control,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,,limina,L2,14 d,1,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,14,,assay_control,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,,limina,L2,28 d,1,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,28,,assay_control,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,,limina,L2,42 d,1,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,42,,assay_control,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,,limina,L2,7 d,2,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,7,,assay_control,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,,limina,L2,14 d,2,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,14,,assay_control,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,,limina,L2,28 d,2,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,28,,assay_control,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,,limina,L2,42 d,2,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,42,,assay_control,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,,limina,L2,7 d,3,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,7,,assay_control,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,,limina,L2,14 d,3,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,14,,assay_control,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,,limina,L2,28 d,3,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,28,,assay_control,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,,limina,L2,42 d,3,long_positive_toxicity_control,,long_laminin_only_control,neural_culture_model_tbd,42,,assay_control,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,,limina,L3,pre-stim,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,,limina,L3,post-stim,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,,limina,L3,24 h recovery,1,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,24,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,,limina,L3,pre-stim,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,,limina,L3,post-stim,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,,limina,L3,24 h recovery,2,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,24,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,,limina,L3,pre-stim,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,,limina,L3,post-stim,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,,limina,L3,24 h recovery,3,long_laminin_only_control,laminin_only_mea,long_laminin_only_control,neural_culture_model_tbd,24,,none,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,,limina,L3,pre-stim,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,,limina,L3,post-stim,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,,limina,L3,24 h recovery,1,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,,limina,L3,pre-stim,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,,limina,L3,post-stim,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,,limina,L3,24 h recovery,2,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,,limina,L3,pre-stim,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,,limina,L3,post-stim,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,,limina,L3,24 h recovery,3,long_hydrogel_laminin_control,hydrogel_laminin_no_pedot,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,0,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,,limina,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,,limina,L3,post-stim,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,,limina,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,,limina,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,,limina,L3,post-stim,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,,limina,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,,limina,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,,limina,L3,post-stim,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,,limina,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,low,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,,limina,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,,limina,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,,limina,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,,limina,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,,limina,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,,limina,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,,limina,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,,limina,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,,limina,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,long_hydrogel_laminin_control,neural_culture_model_tbd,24,,candidate_soft_hydrogel,high,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/data/nhi_pedot_long_raw_csv_extracted_values.csv b/data/nhi_pedot_long_raw_csv_extracted_values.csv deleted file mode 100644 index 6d9cefc..0000000 --- a/data/nhi_pedot_long_raw_csv_extracted_values.csv +++ /dev/null @@ -1 +0,0 @@ -profile,run_id,phase,timepoint,replicate,article_id,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes,planned_value,current_value,source_class,instrument_required,recommended_source_file,source_file_exists,review_status,missing_items,capture_instruction diff --git a/data/nhi_pedot_long_raw_csv_value_extraction.json b/data/nhi_pedot_long_raw_csv_value_extraction.json deleted file mode 100644 index a012712..0000000 --- a/data/nhi_pedot_long_raw_csv_value_extraction.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "boundary": "This extractor reads only existing raw CSV/TSV files in allowed source-file roots. It writes a non-evidence source-value sidecar for the wide importer; missing files produce no synthetic rows.", - "generated_artifacts": { - "json": "data/nhi_pedot_long_raw_csv_value_extraction.json", - "report": "reports/nhi_pedot_long_raw_csv_value_extraction.md", - "values_out": "data/nhi_pedot_long_raw_csv_extracted_values.csv" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/nhi_pedot_long_source_values.csv" - }, - "issues": [], - "profile": "nhi_long", - "source_files": [], - "status": "nhi_pedot_long_raw_csv_value_extraction_no_raw_csv", - "summary": { - "ambiguous_rows": 0, - "error_count": 0, - "extracted_rows": 0, - "plan_rows": 4836, - "raw_csv_found": 0, - "raw_csv_missing": 3588, - "raw_csv_source_files": 0, - "raw_csv_unsupported": 1248, - "warning_count": 0 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_long_results.json b/data/nhi_pedot_long_results.json deleted file mode 100644 index 5906aab..0000000 --- a/data/nhi_pedot_long_results.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "aggregate_gates": [ - { - "gate": "long_superiority_gate", - "high_loading_not_safer": "not_evaluable", - "lead_adds_electrical_value": "not_evaluable", - "lead_noninferior_hydrogel": "not_evaluable", - "metrics": { - "challenge_viability_pct_hydrogel_mean": null, - "hydrogel_viability_pct_hydrogel_mean": null, - "lead_burst_pct_hydrogel_mean": null, - "lead_eis_pct_hydrogel_mean": null, - "lead_post_stim_spike_recovery_mean": null, - "lead_spike_pct_hydrogel_mean": null, - "lead_viability_pct_hydrogel_mean": null - }, - "status": "not_evaluable", - "stimulus_recovery_ok": "not_evaluable" - } - ], - "evaluations": [], - "summary": { - "aggregate_long_superiority": "not_evaluable", - "failed_lead_rows": 0, - "lead_rows": 0, - "passed_lead_replicates_by_phase": {}, - "phase_coverage": [], - "rows": 0, - "status": "no_data" - } -} \ No newline at end of file diff --git a/data/nhi_pedot_long_runs_template.csv b/data/nhi_pedot_long_runs_template.csv deleted file mode 100644 index fec2d82..0000000 --- a/data/nhi_pedot_long_runs_template.csv +++ /dev/null @@ -1 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,cell_model,culture_day,mea_coupon_id,hydrogel_matrix,pedot_pss_loading_fraction,laminin_or_peptide_density,visible_shedding,swelling_fraction,delamination_score,optical_transparency_fraction,electrode_window_access,eis_1khz_initial_ohm,eis_1khz_current_ohm,eis_1khz_pct_hydrogel_control,charge_storage_capacity_initial,charge_storage_capacity_current,charge_storage_capacity_retention_fraction,baseline_noise_uv,viability_pct_hydrogel_control,ldh_pct_hydrogel_control,neurite_coverage_pct_hydrogel_control,morphology_stress_score,electrode_yield_pct_hydrogel_control,spike_rate_pct_hydrogel_control,burst_rate_pct_hydrogel_control,synchrony_pct_hydrogel_control,post_stim_spike_recovery_pct_pre,post_stim_burst_recovery_pct_pre,post_stim_impedance_degradation_pct,gate_results,source_file,notes diff --git a/data/nhi_pedot_long_source_drop_plan.csv b/data/nhi_pedot_long_source_drop_plan.csv deleted file mode 100644 index 3cde518..0000000 --- a/data/nhi_pedot_long_source_drop_plan.csv +++ /dev/null @@ -1,4837 +0,0 @@ -profile,run_id,phase,sample_event,target_field,source_class,source_file,source_dir,source_dir_status,source_file_exists,source_file_allowed,value_filled,import_ready,source_file_requirement,capture_instruction -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,baseline_noise_uv,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,burst_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,cell_model,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,charge_storage_capacity_current,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,charge_storage_capacity_initial,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,charge_storage_capacity_retention_fraction,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,culture_day,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,date,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,delamination_score,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,eis_1khz_current_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,eis_1khz_initial_ohm,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,eis_1khz_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,electrode_window_access,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,electrode_yield_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,hydrogel_matrix,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,laminin_or_peptide_density,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,ldh_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,mea_coupon_id,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,morphology_stress_score,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,neurite_coverage_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,optical_transparency_fraction,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,pedot_pss_loading_fraction,bench_or_chain_of_custody_record,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,post_stim_burst_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,post_stim_impedance_degradation_pct,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,post_stim_spike_recovery_pct_pre,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,spike_rate_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,swelling_fraction,swelling_dimension_or_mass_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,synchrony_pct_hydrogel_control,electrochemical_or_mea_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,viability_pct_hydrogel_control,biological_assay_or_imaging_export,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,,visible_shedding,image_or_scoring_worksheet,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,already_exists,false,true,false,false,,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." diff --git a/data/nhi_pedot_long_source_drop_plan.json b/data/nhi_pedot_long_source_drop_plan.json deleted file mode 100644 index 008398c..0000000 --- a/data/nhi_pedot_long_source_drop_plan.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "boundary": "This creates allowed source-file directories and a missing-file plan only. It does not create raw measurement files or measured evidence.", - "generated_artifacts": { - "csv": "data/nhi_pedot_long_source_drop_plan.csv", - "json": "data/nhi_pedot_long_source_drop_plan.json", - "report": "reports/nhi_pedot_long_source_drop_plan.md" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/nhi_pedot_long_source_values.csv" - }, - "label": "NHI-PEDOT long-duration", - "profile": "nhi_long", - "status": "nhi_pedot_long_source_drop_plan_ready", - "summary": { - "allowed_source_file_count": 4836, - "created_source_dir_count": 0, - "existing_source_file_count": 0, - "filled_value_rows": 0, - "import_ready_rows": 0, - "missing_source_file_count": 4836, - "planned_source_file_count": 4836, - "source_class_counts": { - "bench_or_chain_of_custody_record": 1248, - "biological_assay_or_imaging_export": 624, - "electrochemical_or_mea_export": 2184, - "image_or_scoring_worksheet": 624, - "swelling_dimension_or_mass_worksheet": 156 - }, - "source_dir_count": 156, - "source_dir_status_counts": { - "already_exists": 4836 - } - } -} \ No newline at end of file diff --git a/data/nhi_pedot_long_source_file_template_manifest.csv b/data/nhi_pedot_long_source_file_template_manifest.csv deleted file mode 100644 index d4ddb90..0000000 --- a/data/nhi_pedot_long_source_file_template_manifest.csv +++ /dev/null @@ -1,6 +0,0 @@ -profile,source_class,template_file,template_row_count,target_source_files,accepted_extensions,required_source_metadata,template_columns,boundary -nhi_long,bench_or_chain_of_custody_record,data/limina_source_file_templates/nhi_long/source_class_templates/bench_or_chain_of_custody_record.csv,1248,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,"run_id or sample_id, operator, date, transfer or exposure event",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;record_type;record_id;sample_id;medium_name;medium_lot;transfer_or_exposure_event,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -nhi_long,biological_assay_or_imaging_export,data/limina_source_file_templates/nhi_long/source_class_templates/biological_assay_or_imaging_export.csv,624,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.tif;.tiff,"run_id, culture model, assay date, operator or vendor, instrument_id or imaging/export method",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;assay_type;cell_model;culture_day;plate_or_image_id;reader_or_imager_id;viability_fraction;ldh_fold_control;neurite_metric;morphology_score,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -nhi_long,electrochemical_or_mea_export,data/limina_source_file_templates/nhi_long/source_class_templates/electrochemical_or_mea_export.csv,2184,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,"run_id, measurement date, instrument_id, channel/electrode mapping, and analysis method",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;mea_or_potentiostat_id;channel_or_electrode_id;analysis_method;raw_export_file_id;eis_1khz_ohm;charge_storage_capacity;baseline_noise_uv;electrode_yield_fraction;spike_rate_hz;burst_rate_hz;synchrony,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -nhi_long,image_or_scoring_worksheet,data/limina_source_file_templates/nhi_long/source_class_templates/image_or_scoring_worksheet.csv,624,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic;.tif;.tiff,"run_id, imaging/scoring method, operator or vendor",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;image_file_name;imaging_method;scoring_method;score_or_boolean;reviewer,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -nhi_long,swelling_dimension_or_mass_worksheet,data/limina_source_file_templates/nhi_long/source_class_templates/swelling_dimension_or_mass_worksheet.csv,156,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv;data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,"run_id, pre/post measurement basis, method, operator",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;pre_measurement;post_measurement;measurement_basis;calculation;swelling_fraction,Template only; copy or export real instrument/report/worksheet data to the target source_file path. diff --git a/data/nhi_pedot_long_source_file_template_pack.json b/data/nhi_pedot_long_source_file_template_pack.json deleted file mode 100644 index c9b1467..0000000 --- a/data/nhi_pedot_long_source_file_template_pack.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "boundary": "Templates are outside allowed source-file roots and are never measured evidence. Only real files placed at target source_file paths can support measured rows.", - "generated_artifacts": { - "csv": "data/nhi_pedot_long_source_file_template_manifest.csv", - "json": "data/nhi_pedot_long_source_file_template_pack.json", - "report": "reports/nhi_pedot_long_source_file_template_pack.md", - "template_dir": "data/limina_source_file_templates/nhi_long" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/nhi_pedot_long_source_values.csv" - }, - "label": "NHI-PEDOT long-duration", - "profile": "nhi_long", - "status": "nhi_pedot_long_source_file_template_pack_ready", - "summary": { - "generated_template_files": 5, - "source_class_counts": { - "bench_or_chain_of_custody_record": 1248, - "biological_assay_or_imaging_export": 624, - "electrochemical_or_mea_export": 2184, - "image_or_scoring_worksheet": 624, - "swelling_dimension_or_mass_worksheet": 156 - }, - "source_class_template_count": 5, - "source_value_rows": 4836, - "target_extension_counts": { - ".csv": 3588, - ".png": 1248 - }, - "target_source_file_count": 4836, - "template_manifest_rows": 5 - }, - "templates": [ - "data/limina_source_file_templates/nhi_long/source_class_templates/bench_or_chain_of_custody_record.csv", - "data/limina_source_file_templates/nhi_long/source_class_templates/biological_assay_or_imaging_export.csv", - "data/limina_source_file_templates/nhi_long/source_class_templates/electrochemical_or_mea_export.csv", - "data/limina_source_file_templates/nhi_long/source_class_templates/image_or_scoring_worksheet.csv", - "data/limina_source_file_templates/nhi_long/source_class_templates/swelling_dimension_or_mass_worksheet.csv" - ] -} \ No newline at end of file diff --git a/data/nhi_pedot_long_source_values.csv b/data/nhi_pedot_long_source_values.csv deleted file mode 100644 index 22ef0cb..0000000 --- a/data/nhi_pedot_long_source_values.csv +++ /dev/null @@ -1,4837 +0,0 @@ -profile,run_id,phase,timepoint,replicate,article_id,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes,planned_value,current_value,source_class,instrument_required,recommended_source_file,source_file_exists,review_status,missing_items,capture_instruction -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d,L1,0 d,1,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d,L1,7 d,1,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d,L1,14 d,1,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d,L1,28 d,1,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d,L1,42 d,1,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d,L1,0 d,2,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d,L1,7 d,2,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d,L1,14 d,2,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d,L1,28 d,2,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d,L1,42 d,2,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d,L1,0 d,3,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d,L1,7 d,3,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d,L1,14 d,3,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d,L1,28 d,3,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d,L1,42 d,3,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d,L1,0 d,1,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d,L1,7 d,1,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d,L1,14 d,1,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d,L1,28 d,1,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d,L1,42 d,1,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d,L1,0 d,2,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d,L1,7 d,2,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d,L1,14 d,2,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d,L1,28 d,2,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d,L1,42 d,2,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d,L1,0 d,3,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d,L1,7 d,3,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d,L1,14 d,3,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d,L1,28 d,3,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d,L1,42 d,3,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d,L1,0 d,1,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d,L1,7 d,1,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d,L1,14 d,1,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d,L1,28 d,1,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d,L1,42 d,1,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d,L1,0 d,2,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d,L1,7 d,2,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d,L1,14 d,2,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d,L1,28 d,2,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d,L1,42 d,2,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d,L1,0 d,3,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d,L1,7 d,3,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d,L1,14 d,3,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d,L1,28 d,3,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d,L1,42 d,3,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d,L1,0 d,1,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d,L1,7 d,1,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d,L1,14 d,1,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d,L1,28 d,1,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d,L1,42 d,1,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d,L1,0 d,2,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d,L1,7 d,2,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d,L1,14 d,2,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d,L1,28 d,2,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d,L1,42 d,2,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d,L1,0 d,3,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d,L1,7 d,3,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d,L1,14 d,3,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d,L1,28 d,3,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d,L1,42 d,3,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d,L2,7 d,1,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d,L2,14 d,1,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d,L2,28 d,1,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d,L2,42 d,1,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d,L2,7 d,2,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d,L2,14 d,2,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d,L2,28 d,2,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d,L2,42 d,2,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d,L2,7 d,3,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d,L2,14 d,3,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d,L2,28 d,3,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d,L2,42 d,3,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d,L2,7 d,1,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d,L2,14 d,1,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d,L2,28 d,1,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d,L2,42 d,1,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d,L2,7 d,2,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d,L2,14 d,2,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d,L2,28 d,2,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d,L2,42 d,2,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d,L2,7 d,3,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d,L2,14 d,3,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d,L2,28 d,3,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d,L2,42 d,3,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d,L2,7 d,1,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d,L2,14 d,1,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d,L2,28 d,1,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d,L2,42 d,1,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d,L2,7 d,2,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d,L2,14 d,2,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d,L2,28 d,2,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d,L2,42 d,2,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d,L2,7 d,3,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d,L2,14 d,3,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d,L2,28 d,3,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d,L2,42 d,3,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d,L2,7 d,1,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d,L2,14 d,1,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d,L2,28 d,1,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d,L2,42 d,1,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d,L2,7 d,2,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d,L2,14 d,2,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d,L2,28 d,2,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d,L2,42 d,2,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d,L2,7 d,3,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d,L2,14 d,3,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d,L2,28 d,3,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d,L2,42 d,3,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,assay_control,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d,L2,7 d,1,long_positive_toxicity_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,assay_control,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d,L2,14 d,1,long_positive_toxicity_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,assay_control,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d,L2,28 d,1,long_positive_toxicity_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,assay_control,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d,L2,42 d,1,long_positive_toxicity_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,assay_control,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d,L2,7 d,2,long_positive_toxicity_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,assay_control,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d,L2,14 d,2,long_positive_toxicity_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,assay_control,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d,L2,28 d,2,long_positive_toxicity_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,assay_control,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d,L2,42 d,2,long_positive_toxicity_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,,7,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,assay_control,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d,L2,7 d,3,long_positive_toxicity_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,,14,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,assay_control,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d,L2,14 d,3,long_positive_toxicity_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,,28,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,assay_control,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d,L2,28 d,3,long_positive_toxicity_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,,42,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,assay_control,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d,L2,42 d,3,long_positive_toxicity_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim,L3,pre-stim,1,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim,L3,post-stim,1,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,24,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery,L3,24 h recovery,1,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim,L3,pre-stim,2,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim,L3,post-stim,2,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,24,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery,L3,24 h recovery,2,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim,L3,pre-stim,3,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim,L3,post-stim,3,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,24,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery,L3,24 h recovery,3,long_laminin_only_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim,L3,pre-stim,1,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim,L3,post-stim,1,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,24,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery,L3,24 h recovery,1,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim,L3,pre-stim,2,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim,L3,post-stim,2,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,24,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery,L3,24 h recovery,2,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim,L3,pre-stim,3,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim,L3,post-stim,3,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,24,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,0,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery,L3,24 h recovery,3,long_hydrogel_laminin_control,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim,L3,pre-stim,1,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim,L3,post-stim,1,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,24,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery,L3,24 h recovery,1,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim,L3,pre-stim,2,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim,L3,post-stim,2,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,24,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery,L3,24 h recovery,2,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim,L3,pre-stim,3,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim,L3,post-stim,3,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,24,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,low,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery,L3,24 h recovery,3,long_lead_nhi_pedot_low_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim,L3,pre-stim,1,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim,L3,post-stim,1,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,24,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery,L3,24 h recovery,1,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim,L3,pre-stim,2,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim,L3,post-stim,2,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,24,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery,L3,24 h recovery,2,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim,L3,pre-stim,3,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim,L3,post-stim,3,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,baseline_noise_uv,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,burst_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,cell_model,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,,neural_culture_model_tbd,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_current,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_initial,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,charge_storage_capacity_retention_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,culture_day,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,,24,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,date,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,delamination_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,eis_1khz_current_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,eis_1khz_initial_ohm,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,eis_1khz_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,electrode_window_access,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,electrode_yield_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,hydrogel_matrix,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,,candidate_soft_hydrogel,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,laminin_or_peptide_density,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,,standard_laminin,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,ldh_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,mea_coupon_id,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,morphology_stress_score,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,neurite_coverage_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,operator_or_agent,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,optical_transparency_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,pedot_pss_loading_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,,high,,bench_or_chain_of_custody_record,false,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,post_stim_burst_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,post_stim_impedance_degradation_pct,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,post_stim_spike_recovery_pct_pre,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,spike_rate_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,swelling_fraction,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,,,,swelling_dimension_or_mass_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,synchrony_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,,,,electrochemical_or_mea_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,viability_pct_hydrogel_control,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,,,,biological_assay_or_imaging_export,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." -nhi_long,NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery,L3,24 h recovery,3,long_challenge_nhi_pedot_high_loading,visible_shedding,,,,,,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer." diff --git a/data/nhi_pedot_long_source_values_import.json b/data/nhi_pedot_long_source_values_import.json deleted file mode 100644 index e00e051..0000000 --- a/data/nhi_pedot_long_source_values_import.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "boundary": "This importer only moves source-file-backed values into evaluator CSVs; it does not create measured evidence.", - "imported_rows": [], - "inputs": { - "plan": "data/nhi_pedot_long_planned_runs.csv", - "source_manifest": "data/limina_source_file_manifest.json", - "target": "data/nhi_pedot_long_runs_template.csv" - }, - "issues": [], - "profile": "nhi_long", - "status": "nhi_pedot_long_source_value_import_no_importable_rows", - "summary": { - "blank_rows": 4836, - "error_count": 0, - "imported_rows": 0, - "source_value_files": 2, - "source_value_rows": 4836, - "unchanged_rows": 0, - "warning_count": 0 - }, - "value_files": [ - "data/nhi_pedot_long_raw_csv_extracted_values.csv", - "data/nhi_pedot_long_source_values.csv" - ] -} \ No newline at end of file diff --git a/data/nhi_pedot_long_source_values_sheet.json b/data/nhi_pedot_long_source_values_sheet.json deleted file mode 100644 index 1f37713..0000000 --- a/data/nhi_pedot_long_source_values_sheet.json +++ /dev/null @@ -1,120933 +0,0 @@ -{ - "boundary": "This source-values sheet is sidecar metadata only; it is not measured evidence.", - "generated_artifacts": { - "csv": "data/nhi_pedot_long_source_values.csv", - "json": "data/nhi_pedot_long_source_values_sheet.json", - "report": "reports/nhi_pedot_long_source_values_sheet.md" - }, - "inputs": { - "plan": "data/nhi_pedot_long_planned_runs.csv", - "scope": "", - "target": "data/nhi_pedot_long_runs_template.csv" - }, - "profile": "nhi_long", - "rows": [ - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-0d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-0d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-0d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_laminin_only_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-0d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-0d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-0d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_hydrogel_laminin_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-0d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-0d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-0d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_lead_nhi_pedot_low_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-0d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-0d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-0d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "0 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L1", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L1-long_challenge_nhi_pedot_high_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_laminin_only_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_hydrogel_laminin_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_lead_nhi_pedot_low_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_challenge_nhi_pedot_high_loading-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "assay_control", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "assay_control", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "assay_control", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "assay_control", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R1-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "assay_control", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "assay_control", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "assay_control", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "assay_control", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R2-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "7", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "assay_control", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-7d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "7 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "14", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "assay_control", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-14d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "14 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "28", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "assay_control", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-28d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "28 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "42", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "assay_control", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_positive_toxicity_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L2", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L2-long_positive_toxicity_control-R3-42d/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "42 d", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "24", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "24", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "24", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "none", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_laminin_only_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_laminin_only_control-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "24", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "24", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "24", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "0", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_hydrogel_laminin_control", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_hydrogel_laminin_control-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "24", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "24", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "24", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "low", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_lead_nhi_pedot_low_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_lead_nhi_pedot_low_loading-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "24", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R1-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "24", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "2", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R2-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-pre_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "pre-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-post_stim/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "post-stim", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real baseline_noise_uv value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/baseline_noise_uv_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "baseline_noise_uv", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real burst_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/burst_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "burst_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real cell_model value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "neural_culture_model_tbd", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/cell_model_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "cell_model", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_current value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_current_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_current", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_initial value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_initial_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_initial", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real charge_storage_capacity_retention_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/charge_storage_capacity_retention_fraction_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "charge_storage_capacity_retention_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real culture_day value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "24", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/culture_day_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "culture_day", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real date value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real delamination_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/delamination_score_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "delamination_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_current_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_current_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_current_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_initial_ohm value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_initial_ohm_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_initial_ohm", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real eis_1khz_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/eis_1khz_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "eis_1khz_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_window_access value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/electrode_window_access_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "electrode_window_access", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real electrode_yield_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/electrode_yield_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "electrode_yield_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real hydrogel_matrix value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "candidate_soft_hydrogel", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/hydrogel_matrix_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "hydrogel_matrix", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real laminin_or_peptide_density value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "standard_laminin", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/laminin_or_peptide_density_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "laminin_or_peptide_density", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real ldh_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/ldh_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "ldh_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real mea_coupon_id value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/mea_coupon_id_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mea_coupon_id", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real morphology_stress_score value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/morphology_stress_score_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "morphology_stress_score", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real neurite_coverage_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/neurite_coverage_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "neurite_coverage_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real operator_or_agent value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "limina", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real optical_transparency_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/optical_transparency_fraction_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "optical_transparency_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real pedot_pss_loading_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "high", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/pedot_pss_loading_fraction_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "pedot_pss_loading_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_burst_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_burst_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_burst_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_impedance_degradation_pct value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_impedance_degradation_pct_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_impedance_degradation_pct", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real post_stim_spike_recovery_pct_pre value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/post_stim_spike_recovery_pct_pre_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "post_stim_spike_recovery_pct_pre", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real spike_rate_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/spike_rate_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "spike_rate_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real swelling_fraction value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "swelling_dimension_or_mass_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/swelling_fraction_swelling_dimension_or_mass_worksheet.csv", - "source_file_exists": "false", - "target_field": "swelling_fraction", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real synchrony_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "electrochemical_or_mea_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/synchrony_pct_hydrogel_control_electrochemical_or_mea_export.csv", - "source_file_exists": "false", - "target_field": "synchrony_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real viability_pct_hydrogel_control value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "biological_assay_or_imaging_export", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/viability_pct_hydrogel_control_biological_assay_or_imaging_export.png", - "source_file_exists": "false", - "target_field": "viability_pct_hydrogel_control", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - }, - { - "article_id": "long_challenge_nhi_pedot_high_loading", - "capture_instruction": "Enter the real visible_shedding value for NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "L3", - "planned_value": "", - "profile": "nhi_long", - "recommended_source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "replicate": "3", - "review_status": "awaiting_value_entry", - "run_id": "NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/nhi_pedot_long/NHIPEDOT-LONG-L3-long_challenge_nhi_pedot_high_loading-R3-24hrecovery/visible_shedding_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_shedding", - "timepoint": "24 h recovery", - "unit": "", - "value": "" - } - ], - "status": "nhi_pedot_long_source_values_sheet_ready", - "summary": { - "filled_value_rows": 0, - "import_ready_rows": 0, - "review_status_counts": { - "awaiting_value_entry": 4836 - }, - "source_class_counts": { - "bench_or_chain_of_custody_record": 1248, - "biological_assay_or_imaging_export": 624, - "electrochemical_or_mea_export": 2184, - "image_or_scoring_worksheet": 624, - "swelling_dimension_or_mass_worksheet": 156 - }, - "source_file_exists_rows": 0, - "source_value_rows": 4836 - } -} \ No newline at end of file diff --git a/data/nhi_pedot_next_measurements.csv b/data/nhi_pedot_next_measurements.csv deleted file mode 100644 index 66760b6..0000000 --- a/data/nhi_pedot_next_measurements.csv +++ /dev/null @@ -1,13 +0,0 @@ -priority,run_id,phase,timepoint,replicate,article_id,variant_id,readout_groups,recommendation_reason,must_have_fields -1,NHIPEDOT-H-A-no_coating_mea_control-R1-0h,H-A,0 h,1,no_coating_mea_control,,medium_integrity;physical_stability,phase_h_a_sentinel_no_measured_rows,pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -2,NHIPEDOT-H-A-no_coating_mea_control-R1-24h,H-A,24 h,1,no_coating_mea_control,,medium_integrity;physical_stability,phase_h_a_sentinel_no_measured_rows,pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -3,NHIPEDOT-H-A-no_coating_mea_control-R1-72h,H-A,72 h,1,no_coating_mea_control,,medium_integrity;physical_stability,phase_h_a_sentinel_no_measured_rows,pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -4,NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,H-A,0 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,medium_integrity;physical_stability,phase_h_a_sentinel_no_measured_rows,pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -5,NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,H-A,24 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,medium_integrity;physical_stability,phase_h_a_sentinel_no_measured_rows,pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -6,NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,H-A,72 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,medium_integrity;physical_stability,phase_h_a_sentinel_no_measured_rows,pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -7,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,H-A,0 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,medium_integrity;physical_stability,phase_h_a_sentinel_no_measured_rows,pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -8,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,H-A,24 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,medium_integrity;physical_stability,phase_h_a_sentinel_no_measured_rows,pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -9,NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,H-A,72 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,medium_integrity;physical_stability,phase_h_a_sentinel_no_measured_rows,pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -10,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,H-A,0 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,medium_integrity;physical_stability,phase_h_a_sentinel_no_measured_rows,pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -11,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,H-A,24 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,medium_integrity;physical_stability,phase_h_a_sentinel_no_measured_rows,pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction -12,NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,H-A,72 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,medium_integrity;physical_stability,phase_h_a_sentinel_no_measured_rows,pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction diff --git a/data/nhi_pedot_next_measurements.json b/data/nhi_pedot_next_measurements.json deleted file mode 100644 index 45a10c5..0000000 --- a/data/nhi_pedot_next_measurements.json +++ /dev/null @@ -1,154 +0,0 @@ -{ - "min_passed_lead_replicates_per_phase": 3, - "passed_lead_replicates_by_phase": {}, - "reason": "phase_h_a_sentinel_no_measured_rows", - "recommended_rows": [ - { - "article_id": "no_coating_mea_control", - "must_have_fields": "pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "phase": "H-A", - "priority": "1", - "readout_groups": "medium_integrity;physical_stability", - "recommendation_reason": "phase_h_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-0h", - "timepoint": "0 h", - "variant_id": "" - }, - { - "article_id": "no_coating_mea_control", - "must_have_fields": "pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "phase": "H-A", - "priority": "2", - "readout_groups": "medium_integrity;physical_stability", - "recommendation_reason": "phase_h_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-24h", - "timepoint": "24 h", - "variant_id": "" - }, - { - "article_id": "no_coating_mea_control", - "must_have_fields": "pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "phase": "H-A", - "priority": "3", - "readout_groups": "medium_integrity;physical_stability", - "recommendation_reason": "phase_h_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "NHIPEDOT-H-A-no_coating_mea_control-R1-72h", - "timepoint": "72 h", - "variant_id": "" - }, - { - "article_id": "hydrogel_laminin_control", - "must_have_fields": "pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "phase": "H-A", - "priority": "4", - "readout_groups": "medium_integrity;physical_stability", - "recommendation_reason": "phase_h_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h", - "timepoint": "0 h", - "variant_id": "hydrogel_laminin_no_pedot" - }, - { - "article_id": "hydrogel_laminin_control", - "must_have_fields": "pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "phase": "H-A", - "priority": "5", - "readout_groups": "medium_integrity;physical_stability", - "recommendation_reason": "phase_h_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h", - "timepoint": "24 h", - "variant_id": "hydrogel_laminin_no_pedot" - }, - { - "article_id": "hydrogel_laminin_control", - "must_have_fields": "pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "phase": "H-A", - "priority": "6", - "readout_groups": "medium_integrity;physical_stability", - "recommendation_reason": "phase_h_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h", - "timepoint": "72 h", - "variant_id": "hydrogel_laminin_no_pedot" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "must_have_fields": "pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "phase": "H-A", - "priority": "7", - "readout_groups": "medium_integrity;physical_stability", - "recommendation_reason": "phase_h_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h", - "timepoint": "0 h", - "variant_id": "nhi_pedot_low_loading_laminin" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "must_have_fields": "pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "phase": "H-A", - "priority": "8", - "readout_groups": "medium_integrity;physical_stability", - "recommendation_reason": "phase_h_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h", - "timepoint": "24 h", - "variant_id": "nhi_pedot_low_loading_laminin" - }, - { - "article_id": "lead_nhi_pedot_low_loading", - "must_have_fields": "pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "phase": "H-A", - "priority": "9", - "readout_groups": "medium_integrity;physical_stability", - "recommendation_reason": "phase_h_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h", - "timepoint": "72 h", - "variant_id": "nhi_pedot_low_loading_laminin" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "must_have_fields": "pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "phase": "H-A", - "priority": "10", - "readout_groups": "medium_integrity;physical_stability", - "recommendation_reason": "phase_h_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h", - "timepoint": "0 h", - "variant_id": "nhi_pedot_high_loading_laminin" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "must_have_fields": "pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "phase": "H-A", - "priority": "11", - "readout_groups": "medium_integrity;physical_stability", - "recommendation_reason": "phase_h_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h", - "timepoint": "24 h", - "variant_id": "nhi_pedot_high_loading_laminin" - }, - { - "article_id": "challenge_nhi_pedot_high_loading", - "must_have_fields": "pH_initial;pH_final;osmolality_initial_mOsm_kg;osmolality_final_mOsm_kg;conductivity_initial_mS_cm;conductivity_final_mS_cm;visible_precipitate;visible_shedding;swelling_fraction;delamination_score;optical_transparency_fraction", - "phase": "H-A", - "priority": "12", - "readout_groups": "medium_integrity;physical_stability", - "recommendation_reason": "phase_h_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h", - "timepoint": "72 h", - "variant_id": "nhi_pedot_high_loading_laminin" - } - ], - "remediation_actions": [], - "results_status": "no_data", - "status": "needs_h_a_sentinel" -} \ No newline at end of file diff --git a/data/nhi_pedot_planned_runs.csv b/data/nhi_pedot_planned_runs.csv deleted file mode 100644 index 51b7192..0000000 --- a/data/nhi_pedot_planned_runs.csv +++ /dev/null @@ -1,169 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,mea_coupon_id,electrode_material,hydrogel_matrix,hydrogel_modulus_kpa,hydrogel_thickness_um,pedot_pss_loading_fraction,pedot_pss_pre_rinse_protocol,laminin_or_peptide_density,crosslinking_protocol,sterilization_or_aseptic_protocol,medium_name,medium_lot,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,visible_precipitate,visible_shedding,swelling_fraction,delamination_score,optical_transparency_fraction,eis_1khz_initial_ohm,eis_1khz_final_ohm,charge_storage_capacity_initial,charge_storage_capacity_final,cell_model,seeding_density,viability_fraction,ldh_fold_control,neurite_coverage_fraction,mean_neurite_length_um,electrode_yield_fraction,spike_rate_hz,burst_rate_hz,gate_results,source_file,notes -NHIPEDOT-H-A-no_coating_mea_control-R1-0h,,limina,H-A,0 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-4h,,limina,H-A,4 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-24h,,limina,H-A,24 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R1-72h,,limina,H-A,72 h,1,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R2-0h,,limina,H-A,0 h,2,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R2-4h,,limina,H-A,4 h,2,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R2-24h,,limina,H-A,24 h,2,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R2-72h,,limina,H-A,72 h,2,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R3-0h,,limina,H-A,0 h,3,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R3-4h,,limina,H-A,4 h,3,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R3-24h,,limina,H-A,24 h,3,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-no_coating_mea_control-R3-72h,,limina,H-A,72 h,3,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-laminin_only_control-R1-0h,,limina,H-A,0 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-laminin_only_control-R1-4h,,limina,H-A,4 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-laminin_only_control-R1-24h,,limina,H-A,24 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-laminin_only_control-R1-72h,,limina,H-A,72 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-laminin_only_control-R2-0h,,limina,H-A,0 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-laminin_only_control-R2-4h,,limina,H-A,4 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-laminin_only_control-R2-24h,,limina,H-A,24 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-laminin_only_control-R2-72h,,limina,H-A,72 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-laminin_only_control-R3-0h,,limina,H-A,0 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-laminin_only_control-R3-4h,,limina,H-A,4 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-laminin_only_control-R3-24h,,limina,H-A,24 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-laminin_only_control-R3-72h,,limina,H-A,72 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-0h,,limina,H-A,0 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-4h,,limina,H-A,4 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-24h,,limina,H-A,24 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R1-72h,,limina,H-A,72 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R2-0h,,limina,H-A,0 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R2-4h,,limina,H-A,4 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R2-24h,,limina,H-A,24 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R2-72h,,limina,H-A,72 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R3-0h,,limina,H-A,0 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R3-4h,,limina,H-A,4 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R3-24h,,limina,H-A,24 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-hydrogel_laminin_control-R3-72h,,limina,H-A,72 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-0h,,limina,H-A,0 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-4h,,limina,H-A,4 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-24h,,limina,H-A,24 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R1-72h,,limina,H-A,72 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R2-0h,,limina,H-A,0 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R2-4h,,limina,H-A,4 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R2-24h,,limina,H-A,24 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R2-72h,,limina,H-A,72 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R3-0h,,limina,H-A,0 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R3-4h,,limina,H-A,4 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R3-24h,,limina,H-A,24 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-lead_nhi_pedot_low_loading-R3-72h,,limina,H-A,72 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-0h,,limina,H-A,0 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-4h,,limina,H-A,4 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-24h,,limina,H-A,24 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R1-72h,,limina,H-A,72 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R2-0h,,limina,H-A,0 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R2-4h,,limina,H-A,4 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R2-24h,,limina,H-A,24 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R2-72h,,limina,H-A,72 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R3-0h,,limina,H-A,0 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R3-4h,,limina,H-A,4 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R3-24h,,limina,H-A,24 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-A-challenge_nhi_pedot_high_loading-R3-72h,,limina,H-A,72 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-no_coating_mea_control-R1-pre_soak,,limina,H-B,pre-soak,1,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-no_coating_mea_control-R1-24hsoak,,limina,H-B,24 h soak,1,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-no_coating_mea_control-R1-72hsoak,,limina,H-B,72 h soak,1,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-no_coating_mea_control-R1-post_cycling,,limina,H-B,post-cycling,1,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-no_coating_mea_control-R2-pre_soak,,limina,H-B,pre-soak,2,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-no_coating_mea_control-R2-24hsoak,,limina,H-B,24 h soak,2,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-no_coating_mea_control-R2-72hsoak,,limina,H-B,72 h soak,2,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-no_coating_mea_control-R2-post_cycling,,limina,H-B,post-cycling,2,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-no_coating_mea_control-R3-pre_soak,,limina,H-B,pre-soak,3,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-no_coating_mea_control-R3-24hsoak,,limina,H-B,24 h soak,3,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-no_coating_mea_control-R3-72hsoak,,limina,H-B,72 h soak,3,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-no_coating_mea_control-R3-post_cycling,,limina,H-B,post-cycling,3,no_coating_mea_control,,no_coating_mea_control,,,none,,,0,,standard_control_or_none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-laminin_only_control-R1-pre_soak,,limina,H-B,pre-soak,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-laminin_only_control-R1-24hsoak,,limina,H-B,24 h soak,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-laminin_only_control-R1-72hsoak,,limina,H-B,72 h soak,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-laminin_only_control-R1-post_cycling,,limina,H-B,post-cycling,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-laminin_only_control-R2-pre_soak,,limina,H-B,pre-soak,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-laminin_only_control-R2-24hsoak,,limina,H-B,24 h soak,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-laminin_only_control-R2-72hsoak,,limina,H-B,72 h soak,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-laminin_only_control-R2-post_cycling,,limina,H-B,post-cycling,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-laminin_only_control-R3-pre_soak,,limina,H-B,pre-soak,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-laminin_only_control-R3-24hsoak,,limina,H-B,24 h soak,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-laminin_only_control-R3-72hsoak,,limina,H-B,72 h soak,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-laminin_only_control-R3-post_cycling,,limina,H-B,post-cycling,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-hydrogel_laminin_control-R1-pre_soak,,limina,H-B,pre-soak,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-hydrogel_laminin_control-R1-24hsoak,,limina,H-B,24 h soak,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-hydrogel_laminin_control-R1-72hsoak,,limina,H-B,72 h soak,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-hydrogel_laminin_control-R1-post_cycling,,limina,H-B,post-cycling,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-hydrogel_laminin_control-R2-pre_soak,,limina,H-B,pre-soak,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-hydrogel_laminin_control-R2-24hsoak,,limina,H-B,24 h soak,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-hydrogel_laminin_control-R2-72hsoak,,limina,H-B,72 h soak,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-hydrogel_laminin_control-R2-post_cycling,,limina,H-B,post-cycling,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-hydrogel_laminin_control-R3-pre_soak,,limina,H-B,pre-soak,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-hydrogel_laminin_control-R3-24hsoak,,limina,H-B,24 h soak,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-hydrogel_laminin_control-R3-72hsoak,,limina,H-B,72 h soak,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-hydrogel_laminin_control-R3-post_cycling,,limina,H-B,post-cycling,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-pre_soak,,limina,H-B,pre-soak,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-24hsoak,,limina,H-B,24 h soak,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-72hsoak,,limina,H-B,72 h soak,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R1-post_cycling,,limina,H-B,post-cycling,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R2-pre_soak,,limina,H-B,pre-soak,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R2-24hsoak,,limina,H-B,24 h soak,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R2-72hsoak,,limina,H-B,72 h soak,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R2-post_cycling,,limina,H-B,post-cycling,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R3-pre_soak,,limina,H-B,pre-soak,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R3-24hsoak,,limina,H-B,24 h soak,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R3-72hsoak,,limina,H-B,72 h soak,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-lead_nhi_pedot_low_loading-R3-post_cycling,,limina,H-B,post-cycling,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-pre_soak,,limina,H-B,pre-soak,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-24hsoak,,limina,H-B,24 h soak,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-72hsoak,,limina,H-B,72 h soak,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R1-post_cycling,,limina,H-B,post-cycling,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R2-pre_soak,,limina,H-B,pre-soak,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R2-24hsoak,,limina,H-B,24 h soak,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R2-72hsoak,,limina,H-B,72 h soak,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R2-post_cycling,,limina,H-B,post-cycling,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R3-pre_soak,,limina,H-B,pre-soak,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R3-24hsoak,,limina,H-B,24 h soak,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R3-72hsoak,,limina,H-B,72 h soak,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-B-challenge_nhi_pedot_high_loading-R3-post_cycling,,limina,H-B,post-cycling,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-laminin_only_control-R1-24h,,limina,H-C,24 h,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-laminin_only_control-R1-7d,,limina,H-C,7 d,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-laminin_only_control-R1-14d,,limina,H-C,14 d,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-laminin_only_control-R1-28difearlygatespass,,limina,H-C,28 d if early gates pass,1,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-laminin_only_control-R2-24h,,limina,H-C,24 h,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-laminin_only_control-R2-7d,,limina,H-C,7 d,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-laminin_only_control-R2-14d,,limina,H-C,14 d,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-laminin_only_control-R2-28difearlygatespass,,limina,H-C,28 d if early gates pass,2,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-laminin_only_control-R3-24h,,limina,H-C,24 h,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-laminin_only_control-R3-7d,,limina,H-C,7 d,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-laminin_only_control-R3-14d,,limina,H-C,14 d,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-laminin_only_control-R3-28difearlygatespass,,limina,H-C,28 d if early gates pass,3,laminin_only_control,laminin_only_mea,no_coating_mea_control,,,none,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-hydrogel_laminin_control-R1-24h,,limina,H-C,24 h,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-hydrogel_laminin_control-R1-7d,,limina,H-C,7 d,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-hydrogel_laminin_control-R1-14d,,limina,H-C,14 d,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-hydrogel_laminin_control-R1-28difearlygatespass,,limina,H-C,28 d if early gates pass,1,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-hydrogel_laminin_control-R2-24h,,limina,H-C,24 h,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-hydrogel_laminin_control-R2-7d,,limina,H-C,7 d,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-hydrogel_laminin_control-R2-14d,,limina,H-C,14 d,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-hydrogel_laminin_control-R2-28difearlygatespass,,limina,H-C,28 d if early gates pass,2,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-hydrogel_laminin_control-R3-24h,,limina,H-C,24 h,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-hydrogel_laminin_control-R3-7d,,limina,H-C,7 d,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-hydrogel_laminin_control-R3-14d,,limina,H-C,14 d,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-hydrogel_laminin_control-R3-28difearlygatespass,,limina,H-C,28 d if early gates pass,3,hydrogel_laminin_control,hydrogel_laminin_no_pedot,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,0,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-24h,,limina,H-C,24 h,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-7d,,limina,H-C,7 d,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-14d,,limina,H-C,14 d,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R1-28difearlygatespass,,limina,H-C,28 d if early gates pass,1,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R2-24h,,limina,H-C,24 h,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R2-7d,,limina,H-C,7 d,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R2-14d,,limina,H-C,14 d,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R2-28difearlygatespass,,limina,H-C,28 d if early gates pass,2,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R3-24h,,limina,H-C,24 h,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R3-7d,,limina,H-C,7 d,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R3-14d,,limina,H-C,14 d,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-lead_nhi_pedot_low_loading-R3-28difearlygatespass,,limina,H-C,28 d if early gates pass,3,lead_nhi_pedot_low_loading,nhi_pedot_low_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,low,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-24h,,limina,H-C,24 h,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-7d,,limina,H-C,7 d,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-14d,,limina,H-C,14 d,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R1-28difearlygatespass,,limina,H-C,28 d if early gates pass,1,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R2-24h,,limina,H-C,24 h,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R2-7d,,limina,H-C,7 d,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R2-14d,,limina,H-C,14 d,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R2-28difearlygatespass,,limina,H-C,28 d if early gates pass,2,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R3-24h,,limina,H-C,24 h,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R3-7d,,limina,H-C,7 d,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R3-14d,,limina,H-C,14 d,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NHIPEDOT-H-C-challenge_nhi_pedot_high_loading-R3-28difearlygatespass,,limina,H-C,28 d if early gates pass,3,challenge_nhi_pedot_high_loading,nhi_pedot_high_loading_laminin,hydrogel_laminin_control,,,candidate_soft_hydrogel,,,high,,standard_laminin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/data/nhi_pedot_recipe_lock_v0_2.json b/data/nhi_pedot_recipe_lock_v0_2.json deleted file mode 100644 index 8772010..0000000 --- a/data/nhi_pedot_recipe_lock_v0_2.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "id": "nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2", - "candidate_id": "limina_alg_lam_pedot_lowdose_v0_2", - "parent_validation_package": "nhi_pedot_laminin_validation_v0_1", - "protocol_id": "nhi_pedot_alg_lam_protocol_v0_2", - "status": "active_recipe_lock_for_h_a_sentinel", - "lock_reason": "The discovery queue ranks ALG-LAM-PEDOT low-dose as the fastest path toward a defensible first cell-contact suitability claim because it has direct neural-culture evidence and can reuse existing H-A/H-B/H-C gates.", - "evidence_refs": [ - "pedot_neural_culture_hydrogel_2025", - "pedot_brain_monitoring_2025", - "hydrogel_neural_tissue_2020", - "dnt_nam_viability_neurite_mea_2022" - ], - "design_targets": { - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem", - "mechanics": "brain-soft low-kPa target; enter measured modulus as numeric data, not as a target label", - "conductive_phase": "0.6 wt percent PEDOT:PSS lead, selected from the published neural-culture loading", - "presentation": "EHS laminin or equivalent laminin cue retained above or within the hydrogel", - "pedot_strategy": "use 0.6 wt percent as lead and 1.2 wt percent as high-loading boundary comparator", - "first_claim_boundary": "no suitability claim until non-synthetic H-A/H-B/H-C and long-duration rows pass" - }, - "template_defaults": { - "hydrogel_laminin_control": { - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem", - "hydrogel_thickness_um": "400", - "pedot_pss_loading_fraction": "0", - "pedot_pss_pre_rinse_protocol": "not_applicable_no_pedot", - "laminin_or_peptide_density": "ehs_laminin_same_as_lead_record_lot", - "crosslinking_protocol": "183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation", - "sterilization_or_aseptic_protocol": "aseptic_preparation_record_lot_and_handling", - "medium_name": "DMEM_F12_or_CL1_proxy_record_actual", - "temperature_c": "37" - }, - "lead_nhi_pedot_low_loading": { - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "hydrogel_thickness_um": "400", - "pedot_pss_loading_fraction": "0.006", - "pedot_pss_pre_rinse_protocol": "overnight_medium_conditioning_before_measurement", - "laminin_or_peptide_density": "ehs_laminin_same_as_control_record_lot", - "crosslinking_protocol": "183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation", - "sterilization_or_aseptic_protocol": "aseptic_preparation_record_lot_and_handling", - "medium_name": "DMEM_F12_or_CL1_proxy_record_actual", - "temperature_c": "37" - }, - "challenge_nhi_pedot_high_loading": { - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "hydrogel_thickness_um": "400", - "pedot_pss_loading_fraction": "0.012", - "pedot_pss_pre_rinse_protocol": "overnight_medium_conditioning_before_measurement", - "laminin_or_peptide_density": "ehs_laminin_same_as_control_record_lot", - "crosslinking_protocol": "183mM_CaSO4_in_1x_DMEM_syringe_mix_cast_1h_gelation", - "sterilization_or_aseptic_protocol": "aseptic_preparation_record_lot_and_handling", - "medium_name": "DMEM_F12_or_CL1_proxy_record_actual", - "temperature_c": "37" - } - }, - "operator_notes": [ - "Do not enter target ranges into numeric measurement fields.", - "Replace record_actual labels and all assay fields with actual formulation, lot, coupon, and measurement values before treating rows as measured evidence.", - "Keep hydrogel-only, low-loading lead, and high-loading challenge articles matched except for PEDOT:PSS loading.", - "If H-A blank integrity fails, stop before H-B electrochemistry or H-C neural culture." - ] -} diff --git a/data/nhi_pedot_results.json b/data/nhi_pedot_results.json deleted file mode 100644 index f96323e..0000000 --- a/data/nhi_pedot_results.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "evaluations": [], - "summary": { - "failed_lead_rows": 0, - "lead_rows": 0, - "min_passed_lead_replicates_per_phase": 3, - "passed_lead_replicates_by_phase": {}, - "passed_lead_rows": 0, - "phase_coverage": [], - "required_phases": [ - "H-A", - "H-B", - "H-C" - ], - "rows": 0, - "status": "no_data" - } -} \ No newline at end of file diff --git a/data/nhi_pedot_runs_template.csv b/data/nhi_pedot_runs_template.csv deleted file mode 100644 index cc7ae21..0000000 --- a/data/nhi_pedot_runs_template.csv +++ /dev/null @@ -1 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,mea_coupon_id,electrode_material,hydrogel_matrix,hydrogel_modulus_kpa,hydrogel_thickness_um,pedot_pss_loading_fraction,pedot_pss_pre_rinse_protocol,laminin_or_peptide_density,crosslinking_protocol,sterilization_or_aseptic_protocol,medium_name,medium_lot,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,visible_precipitate,visible_shedding,swelling_fraction,delamination_score,optical_transparency_fraction,eis_1khz_initial_ohm,eis_1khz_final_ohm,charge_storage_capacity_initial,charge_storage_capacity_final,cell_model,seeding_density,viability_fraction,ldh_fold_control,neurite_coverage_fraction,mean_neurite_length_um,electrode_yield_fraction,spike_rate_hz,burst_rate_hz,gate_results,source_file,notes diff --git a/data/nhi_pedot_validation_package.json b/data/nhi_pedot_validation_package.json deleted file mode 100644 index 161b846..0000000 --- a/data/nhi_pedot_validation_package.json +++ /dev/null @@ -1,280 +0,0 @@ -{ - "id": "nhi_pedot_laminin_validation_v0_1", - "lead_variant_id": "nhi_pedot_low_loading_laminin", - "parent_technology": "limina_nhi_pedot_laminin_v0_1", - "title": "NHI-PEDOT laminin hydrogel interphase validation package", - "objective": "Determine whether a laminin-anchored, low-loading PEDOT:PSS neural hydrogel interphase is suitable to enter CL1-like MEA neural culture follow-up by proving acellular material stability, electrochemical benefit, and early neural compatibility without medium drift or material shedding.", - "scope": { - "stage": "cell-contact coupon and MEA validation", - "claim_after_success": "Ready for longer CL1-like neural network pilot on MEA coupons, not yet proven as a final CL1 material.", - "lead_design": "Brain-soft hydrogel matrix with laminin or laminin-like adhesive presentation and low-loading PEDOT:PSS conductive microdomains on a defined MEA coupon.", - "design_boundary": "Direct cell-contact interface; no closed CL1 deployment until extract, soak, electrochemical, and biological pilot gates pass.", - "not_in_scope": "Implantable claims, GMP manufacturing, final sterilization validation, and irreversible modification of production CL1 hardware." - }, - "procurement_specs": [ - { - "id": "neural_hydrogel_matrix", - "component": "Soft hydrogel matrix", - "required_spec": "GelMA, hyaluronic-acid, or alginate-based matrix that can be tuned near brain-like low-kPa mechanics, prepared aseptically, and measured for swelling and extractables.", - "preferred_format": "Small-batch coupon casting or micropatterned format compatible with MEA witness coupons.", - "reject_if": "Unknown crosslinking chemistry, persistent photoinitiator toxicity, opacity that blocks inspection, or uncontrolled swelling over 24-72 h.", - "evidence_refs": ["hydrogel_neural_tissue_2020", "stiffness_sensing_2020", "gelma_pedot_composite_2018"] - }, - { - "id": "pedot_pss_conductive_phase", - "component": "Conductive PEDOT:PSS phase", - "required_spec": "Low-loading PEDOT:PSS dispersion or preformed microdomain route with neutralized/rinsed formulation, recorded solids fraction, and no unqualified conductivity enhancer in the cell-contact path.", - "preferred_format": "Dose ladder with hydrogel-only control, low PEDOT:PSS lead, and high PEDOT:PSS challenge article.", - "reject_if": "Acidic pH drift, visible particle shedding, uncontrolled PSS/leachable release, or impedance benefit only at cell-toxic loading.", - "evidence_refs": ["pedot_brain_monitoring_2025", "pedot_bio_sei_2026", "conductive_hydrogels_2025", "pedot_neural_culture_hydrogel_2025"] - }, - { - "id": "laminin_presentation", - "component": "Cell-instructive adhesive layer", - "required_spec": "Laminin, laminin-derived peptide, or ECM-mimetic adhesive motif compatible with the selected hydrogel chemistry and neural culture model.", - "preferred_format": "Matched hydrogel-plus-laminin control without PEDOT:PSS to isolate electrical versus biochemical effects.", - "reject_if": "Adhesive cue rapidly desorbs, blocks electrodes, causes unstable coating thickness, or fails to support neurite outgrowth in controls.", - "evidence_refs": ["hydrogel_neural_tissue_2020", "pedot_neural_culture_hydrogel_2025"] - }, - { - "id": "mea_coupon_substrate", - "component": "MEA witness coupon", - "required_spec": "MEA-like electrode coupon or disposable MEA with known electrode geometry, insulation material, optical access, and stable baseline impedance.", - "preferred_format": "Dedicated test coupon, not a production CL1 consumable, with uncoated, laminin-only, and hydrogel-only controls.", - "reject_if": "Unknown electrode material, poor baseline impedance stability, opaque layout, or bonding chemistry that cannot be replicated.", - "evidence_refs": ["neuronal_network_material_biocompatibility_mea_2013", "pedot_brain_monitoring_2025"] - } - ], - "test_articles": [ - { - "id": "no_coating_mea_control", - "variant_id": null, - "description": "MEA coupon with standard cell-culture coating or uncoated material-control state.", - "role": "baseline device control" - }, - { - "id": "laminin_only_control", - "variant_id": "laminin_only_mea", - "description": "MEA coupon with laminin or laminin-like adhesive cue but no hydrogel or PEDOT:PSS phase.", - "role": "biochemical adhesion control" - }, - { - "id": "hydrogel_laminin_control", - "variant_id": "hydrogel_laminin_no_pedot", - "description": "Soft hydrogel plus laminin presentation without conductive PEDOT:PSS.", - "role": "soft matrix control" - }, - { - "id": "lead_nhi_pedot_low_loading", - "variant_id": "nhi_pedot_low_loading_laminin", - "description": "Soft laminin-presenting hydrogel with low-loading PEDOT:PSS microdomains.", - "role": "lead candidate" - }, - { - "id": "challenge_nhi_pedot_high_loading", - "variant_id": "nhi_pedot_high_loading_laminin", - "description": "Same hydrogel and laminin presentation with higher PEDOT:PSS loading for conductivity-versus-toxicity boundary testing.", - "role": "high-conductivity challenge" - } - ], - "run_matrix": [ - { - "phase": "H-A", - "name": "Acellular material blank and extract", - "purpose": "Detect medium drift, leachables, swelling, shedding, opacity, and delamination before live-cell exposure.", - "inputs": ["fresh complete neuronal medium or closest CL1-like medium proxy", "MEA witness coupons", "hydrogel test articles"], - "articles": ["no_coating_mea_control", "laminin_only_control", "hydrogel_laminin_control", "lead_nhi_pedot_low_loading", "challenge_nhi_pedot_high_loading"], - "minimum_replicates": 3, - "timepoints": ["0 h", "4 h", "24 h", "72 h"], - "must_pass_before": "H-B and H-C" - }, - { - "phase": "H-B", - "name": "Electrochemical and physical stability", - "purpose": "Measure whether PEDOT:PSS loading improves interface metrics without thickness, transparency, swelling, or adhesion failure.", - "inputs": ["MEA witness coupons", "culture-medium-soaked articles"], - "articles": ["no_coating_mea_control", "laminin_only_control", "hydrogel_laminin_control", "lead_nhi_pedot_low_loading", "challenge_nhi_pedot_high_loading"], - "minimum_replicates": 3, - "timepoints": ["pre-soak", "24 h soak", "72 h soak", "post-cycling"], - "must_pass_before": "H-C" - }, - { - "phase": "H-C", - "name": "Neural compatibility pilot", - "purpose": "Test whether the lead improves or preserves neural survival, neurites, morphology, and early network activity compared with laminin and hydrogel controls.", - "inputs": ["primary cortical neurons or human iPSC-derived cortical neurons", "matched MEA coupons", "validated medium"], - "articles": ["laminin_only_control", "hydrogel_laminin_control", "lead_nhi_pedot_low_loading", "challenge_nhi_pedot_high_loading"], - "minimum_replicates": 3, - "timepoints": ["24 h", "7 d", "14 d", "28 d if early gates pass"], - "must_pass_before": "long-duration CL1-like pilot" - } - ], - "assay_panel": [ - { - "id": "medium_integrity", - "readout": "pH, osmolality, conductivity, visible particulates, color/opacity, and precipitate", - "method_class": "standard media chemistry, visual inspection, and microscopy", - "sample_matrix": "fresh medium soak and extract samples", - "control_requirement": "same timepoints for no-coating, laminin-only, and hydrogel-only controls", - "evidence_refs": ["iso_10993_5_cytotoxicity_extract_fda"] - }, - { - "id": "physical_stability", - "readout": "Hydrogel thickness, swelling, delamination, cracking, electrode-window occlusion, and optical transparency", - "method_class": "profilometry or calibrated microscopy plus image log", - "sample_matrix": "MEA witness coupons", - "control_requirement": "pre-soak baseline and hydrogel-only comparator", - "evidence_refs": ["gelma_pedot_micropatterning_2026", "gelma_pedot_composite_2018"] - }, - { - "id": "electrochemical_interface", - "readout": "Electrochemical impedance spectroscopy, charge-storage capacity, cyclic-voltammetry drift, and stimulation-safe voltage excursion where available", - "method_class": "MEA/electrochemical workstation measurement", - "sample_matrix": "coated MEA coupons before and after medium soak", - "control_requirement": "uncoated, laminin-only, and hydrogel-only coupon baselines", - "evidence_refs": ["pedot_brain_monitoring_2025", "pedot_neural_culture_hydrogel_2025"] - }, - { - "id": "neural_viability", - "readout": "Metabolic viability, LDH release or equivalent cytotoxicity, live/dead imaging", - "method_class": "in vitro cytotoxicity and neural culture viability assay", - "sample_matrix": "neural culture on coated coupons and material extracts", - "control_requirement": "negative material control and positive cytotoxicity control", - "evidence_refs": ["iso_10993_5_cytotoxicity_extract_fda", "dnt_nam_viability_neurite_mea_2022"] - }, - { - "id": "neurite_and_morphology", - "readout": "Neurite length/density, network coverage, cell clustering, and morphology stress flags", - "method_class": "immunostaining or high-content imaging", - "sample_matrix": "neural culture on coated MEA coupons", - "control_requirement": "laminin-only and hydrogel-only controls", - "evidence_refs": ["hydrogel_neural_tissue_2020", "dnt_nam_viability_neurite_mea_2022"] - }, - { - "id": "network_activity", - "readout": "Spike rate, burst metrics, electrode yield, impedance drift during culture, and network synchrony where available", - "method_class": "MEA recording and analysis", - "sample_matrix": "neural culture on MEA coupons", - "control_requirement": "same culture batch across laminin-only, hydrogel-only, lead, and high-loading challenge articles", - "evidence_refs": ["neuronal_network_material_biocompatibility_mea_2013", "pedot_neural_culture_hydrogel_2025"] - } - ], - "acceptance_gates": [ - { - "id": "blank_integrity_gate", - "criterion": "Acellular soak or extract shows no material-driven pH drift greater than 0.10 pH units, no osmolality or conductivity drift greater than 5 percent versus hydrogel-free controls, no visible shedding/precipitate, and no unresolved color/opacity issue.", - "rationale": "A direct cell-contact material cannot advance if it changes base neural medium chemistry or sheds material.", - "failure_response": "Reduce PEDOT:PSS loading, change matrix/pre-rinse/crosslinking, or reject the formulation before cell exposure." - }, - { - "id": "physical_stability_gate", - "criterion": "Hydrogel thickness changes less than 20 percent, no delamination/cracking, electrode windows remain inspectable, and transparency remains sufficient for cell monitoring after 72 h soak.", - "rationale": "MEA culture needs stable geometry and optical access; swelling or delamination can dominate biological outcomes.", - "failure_response": "Change matrix concentration, anchoring chemistry, pattern geometry, or crosslinking route." - }, - { - "id": "electrochemical_benefit_gate", - "criterion": "The low-loading lead improves impedance or charge-storage metrics by at least 25 percent versus hydrogel-laminin control after soak, without unstable cyclic-voltammetry drift.", - "rationale": "PEDOT:PSS must add measurable electrical value beyond a soft biochemical coating.", - "failure_response": "Rerank loading, domain geometry, or drop PEDOT:PSS if the hydrogel-only control is equivalent." - }, - { - "id": "neural_health_gate", - "criterion": "Lead viability, LDH or equivalent cytotoxicity, neurite coverage, and morphology are non-inferior to laminin-only and hydrogel-laminin controls at early timepoints.", - "rationale": "The lead is only useful if its electrical benefit does not degrade basic neural health.", - "failure_response": "Lower PEDOT:PSS loading, improve rinse/neutralization, change ECM presentation, or reject the conductive phase." - }, - { - "id": "network_activity_gate", - "criterion": "Lead MEA cultures maintain electrode yield and network activity at least non-inferior to hydrogel-laminin controls, with lower impedance drift, through the pilot window.", - "rationale": "For CL1-like use, material suitability must be functional, not only cytocompatible.", - "failure_response": "If cells survive but network activity falls, change stiffness, ligand density, thickness, or conductive-domain geometry before longer tests." - } - ], - "data_capture_fields": [ - "run_id", - "date", - "operator_or_agent", - "phase", - "timepoint", - "replicate", - "article_id", - "variant_id", - "control_article_id", - "mea_coupon_id", - "electrode_material", - "hydrogel_matrix", - "hydrogel_modulus_kpa", - "hydrogel_thickness_um", - "pedot_pss_loading_fraction", - "pedot_pss_pre_rinse_protocol", - "laminin_or_peptide_density", - "crosslinking_protocol", - "sterilization_or_aseptic_protocol", - "medium_name", - "medium_lot", - "temperature_c", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "visible_precipitate", - "visible_shedding", - "swelling_fraction", - "delamination_score", - "optical_transparency_fraction", - "eis_1khz_initial_ohm", - "eis_1khz_final_ohm", - "charge_storage_capacity_initial", - "charge_storage_capacity_final", - "cell_model", - "seeding_density", - "viability_fraction", - "ldh_fold_control", - "neurite_coverage_fraction", - "mean_neurite_length_um", - "electrode_yield_fraction", - "spike_rate_hz", - "burst_rate_hz", - "gate_results", - "source_file", - "notes" - ], - "decision_rules": [ - { - "condition": "All H-A/H-B/H-C gates pass for low-loading NHI-PEDOT", - "action": "Promote to cell-contact biological pilot candidate and design a longer MEA network stability study." - }, - { - "condition": "Blank and neural health pass but electrochemical benefit fails", - "action": "Demote PEDOT:PSS to optional and compare hydrogel-laminin-only coating against simpler PDA-laminin controls." - }, - { - "condition": "Electrochemical benefit passes but neural health fails", - "action": "Reduce PEDOT:PSS loading, strengthen rinse/neutralization, or reject the conductive phase before live-cell continuation." - }, - { - "condition": "High-loading challenge outperforms lead electrically but harms cells", - "action": "Use the high-loading result only as an upper toxicity/electrical boundary; do not promote it." - }, - { - "condition": "Hydrogel swells, delaminates, or blocks optical/MEA access", - "action": "Change matrix, anchoring chemistry, or geometry before any biological interpretation." - } - ], - "source_refs": [ - "pedot_brain_monitoring_2025", - "pedot_bio_sei_2026", - "conductive_hydrogels_2025", - "hydrogel_neural_tissue_2020", - "stiffness_sensing_2020", - "gelma_pedot_composite_2018", - "pedot_neural_culture_hydrogel_2025", - "gelma_pedot_micropatterning_2026", - "iso_10993_5_cytotoxicity_extract_fda", - "dnt_nam_viability_neurite_mea_2022", - "neuronal_network_material_biocompatibility_mea_2013" - ] -} diff --git a/data/nhi_pedot_variant_ladder.csv b/data/nhi_pedot_variant_ladder.csv deleted file mode 100644 index 6176a2c..0000000 --- a/data/nhi_pedot_variant_ladder.csv +++ /dev/null @@ -1,8 +0,0 @@ -rank,variant_id,role,trigger,hydrogel_matrix,pedot_pss_loading_fraction,anchoring_or_surface_prep,conditioning,primary_readouts,expected_information,advance_if,stop_if,evidence_refs,weighted_utility -1,alg_lam_pedot_0p6pct_lead,current first-claim lead,primary_H-A_then_H-B_then_H-C_route,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,0.006,none_initially,overnight_medium_conditioning_before_measurement,H-A_medium_integrity;H-A_physical_stability;H-B_EIS;H-B_charge_storage;H-C_neural_health_if_H-A_H-B_pass,Directly tests the literature-anchored cell-culture loading in the LIMINA geometry.,"Passes H-A, improves H-B electrical metrics versus hydrogel control, then remains non-inferior in H-C.","Fails H-A blank integrity, sheds, delaminates, or loses optical access.",pedot_neural_culture_hydrogel_2025;pedot_brain_monitoring_2025;hydrogel_neural_tissue_2020;dnt_nam_viability_neurite_mea_2022,0.617 -2,alg_lam_pedot_0p9pct_midpoint,dose-response midpoint,use_if_0p6pct_passes_H-A_but_H-B_electrical_benefit_is_borderline,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,0.009,none_initially,overnight_medium_conditioning_before_measurement,H-A_medium_integrity;transparency;EIS;charge_storage;CV_drift,Maps the benefit-versus-instability slope before jumping to the high-loading challenge.,Electrical benefit clears threshold without new H-A failures versus 0.6 wt percent.,"Transparency, swelling, or medium drift worsens before meaningful electrical gain appears.",pedot_neural_culture_hydrogel_2025;pedot_brain_monitoring_2025;hydrogel_neural_tissue_2020;dnt_nam_viability_neurite_mea_2022,0.598 -3,alg_lam_pedot_1p2pct_upper_boundary,high-loading boundary challenge,use_as_boundary_not_first_claim_lead,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,0.012,none_initially,overnight_medium_conditioning_before_measurement,H-A_shedding;H-A_transparency;H-B_EIS;H-B_charge_storage;CV_stability,Defines the upper conductivity/stability boundary and protects against overpromoting the lead.,Only as a comparator; do not promote to H-C unless it is unexpectedly clean and biologically justified.,"Any medium drift, opacity, shedding, swelling, or delamination appears.",pedot_neural_culture_hydrogel_2025;pedot_brain_monitoring_2025;hydrogel_neural_tissue_2020;dnt_nam_viability_neurite_mea_2022,0.563 -4,alg_lam_pedot_0p3pct_safety_rescue,low-dose safety rescue,use_if_0p6pct_lead_has_mild_H-A_drift_or_shedding_without_hydrogel_control_failure,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,0.003,none_initially,extended_medium_conditioning_overnight_plus_medium_exchange,pH;osmolality;conductivity;visible_shedding;swelling;transparency;EIS_if_blank_passes,Tests whether the failure is PEDOT:PSS dose-dependent and recoverable without changing the matrix.,H-A drift resolves and H-B still shows at least a modest impedance or charge-storage gain.,Any PEDOT:PSS loading continues to fail medium-integrity or shedding gates.,pedot_neural_culture_hydrogel_2025;pedot_brain_monitoring_2025;hydrogel_neural_tissue_2020;dnt_nam_viability_neurite_mea_2022,0.557 -5,pda_anchor_alg_lam_pedot_0p6pct,adhesion/window rescue,use_if_unanchored_0p6pct_passes_medium_gates_but_fails_delamination_or_window_stability,alginate_laminin_2pct_wv_caso4_dmem_pedotpss,0.006,polydopamine_or_oxygen_plasma_primer_record_exact_process,same_as_lead_plus_primer_extract_blank,primer_extract;delamination;electrode_window_occlusion;transparency;EIS,Tests whether the failure mode is mechanical attachment rather than material biology.,Delamination resolves without new extract or medium drift and electrode windows remain inspectable.,"Primer adds medium drift, opacity, or extract toxicity risk.",pedot_neural_culture_hydrogel_2025;pedot_brain_monitoring_2025;hydrogel_neural_tissue_2020;dnt_nam_viability_neurite_mea_2022;gelma_pedot_micropatterning_2026;neuronal_network_material_biocompatibility_mea_2013,0.536 -6,alg_lam_hydrogel_no_pedot_control,matched negative material baseline,always_pair_with_every_H-A_or_H-B_batch,alginate_laminin_2pct_wv_caso4_dmem,0.0,none_or_same_mea_baseline_as_lead,same_medium_soak_as_lead,pH;osmolality;conductivity;swelling;delamination;transparency;EIS_baseline_if_H-B,Separates hydrogel/laminin effects from PEDOT:PSS-specific drift and electrical benefit.,Lead beats this control electrically while remaining non-inferior on H-A physical and medium gates.,"Hydrogel-only control itself causes medium drift, swelling, or delamination.",pedot_neural_culture_hydrogel_2025;pedot_brain_monitoring_2025;hydrogel_neural_tissue_2020;dnt_nam_viability_neurite_mea_2022,0.517 -7,alg_gel_pedot_ppy_acellular_comparator,high-conductivity comparator only,use_after_ALG-LAM-PEDOT_baseline_if_H-B_needs_wider_conductive_hydrogel_context,alginate_gelatin_pedot_or_ppy_record_exact_recipe,record_exact,not_first_claim_route,extractables_first_medium_conditioning,extract_pH;osmolality;conductivity;visible_shedding;EIS;charge_storage;transparency,Benchmarks how much electrical upside is possible with a riskier conductive hydrogel family.,Only to acellular comparator status unless extract and neural gates are later designed.,"Any PPy/PEDOT residue, opacity, shedding, or medium drift exceeds ALG-LAM-PEDOT.",alg_gel_pedot_ppy_biointerface_2026;conductive_hydrogels_2025;iso_10993_5_cytotoxicity_extract_fda,0.495 diff --git a/data/nhi_pedot_variant_ladder.json b/data/nhi_pedot_variant_ladder.json deleted file mode 100644 index 9712860..0000000 --- a/data/nhi_pedot_variant_ladder.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "claim_boundary": "variant ladder is not measured evidence", - "items": [ - { - "advance_if": "Passes H-A, improves H-B electrical metrics versus hydrogel control, then remains non-inferior in H-C.", - "anchoring_or_surface_prep": "none_initially", - "conditioning": "overnight_medium_conditioning_before_measurement", - "evidence_refs": "pedot_neural_culture_hydrogel_2025;pedot_brain_monitoring_2025;hydrogel_neural_tissue_2020;dnt_nam_viability_neurite_mea_2022", - "expected_information": "Directly tests the literature-anchored cell-culture loading in the LIMINA geometry.", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "pedot_pss_loading_fraction": "0.006", - "primary_readouts": "H-A_medium_integrity;H-A_physical_stability;H-B_EIS;H-B_charge_storage;H-C_neural_health_if_H-A_H-B_pass", - "rank": "1", - "role": "current first-claim lead", - "stop_if": "Fails H-A blank integrity, sheds, delaminates, or loses optical access.", - "trigger": "primary_H-A_then_H-B_then_H-C_route", - "variant_id": "alg_lam_pedot_0p6pct_lead", - "weighted_utility": "0.617" - }, - { - "advance_if": "Electrical benefit clears threshold without new H-A failures versus 0.6 wt percent.", - "anchoring_or_surface_prep": "none_initially", - "conditioning": "overnight_medium_conditioning_before_measurement", - "evidence_refs": "pedot_neural_culture_hydrogel_2025;pedot_brain_monitoring_2025;hydrogel_neural_tissue_2020;dnt_nam_viability_neurite_mea_2022", - "expected_information": "Maps the benefit-versus-instability slope before jumping to the high-loading challenge.", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "pedot_pss_loading_fraction": "0.009", - "primary_readouts": "H-A_medium_integrity;transparency;EIS;charge_storage;CV_drift", - "rank": "2", - "role": "dose-response midpoint", - "stop_if": "Transparency, swelling, or medium drift worsens before meaningful electrical gain appears.", - "trigger": "use_if_0p6pct_passes_H-A_but_H-B_electrical_benefit_is_borderline", - "variant_id": "alg_lam_pedot_0p9pct_midpoint", - "weighted_utility": "0.598" - }, - { - "advance_if": "Only as a comparator; do not promote to H-C unless it is unexpectedly clean and biologically justified.", - "anchoring_or_surface_prep": "none_initially", - "conditioning": "overnight_medium_conditioning_before_measurement", - "evidence_refs": "pedot_neural_culture_hydrogel_2025;pedot_brain_monitoring_2025;hydrogel_neural_tissue_2020;dnt_nam_viability_neurite_mea_2022", - "expected_information": "Defines the upper conductivity/stability boundary and protects against overpromoting the lead.", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "pedot_pss_loading_fraction": "0.012", - "primary_readouts": "H-A_shedding;H-A_transparency;H-B_EIS;H-B_charge_storage;CV_stability", - "rank": "3", - "role": "high-loading boundary challenge", - "stop_if": "Any medium drift, opacity, shedding, swelling, or delamination appears.", - "trigger": "use_as_boundary_not_first_claim_lead", - "variant_id": "alg_lam_pedot_1p2pct_upper_boundary", - "weighted_utility": "0.563" - }, - { - "advance_if": "H-A drift resolves and H-B still shows at least a modest impedance or charge-storage gain.", - "anchoring_or_surface_prep": "none_initially", - "conditioning": "extended_medium_conditioning_overnight_plus_medium_exchange", - "evidence_refs": "pedot_neural_culture_hydrogel_2025;pedot_brain_monitoring_2025;hydrogel_neural_tissue_2020;dnt_nam_viability_neurite_mea_2022", - "expected_information": "Tests whether the failure is PEDOT:PSS dose-dependent and recoverable without changing the matrix.", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "pedot_pss_loading_fraction": "0.003", - "primary_readouts": "pH;osmolality;conductivity;visible_shedding;swelling;transparency;EIS_if_blank_passes", - "rank": "4", - "role": "low-dose safety rescue", - "stop_if": "Any PEDOT:PSS loading continues to fail medium-integrity or shedding gates.", - "trigger": "use_if_0p6pct_lead_has_mild_H-A_drift_or_shedding_without_hydrogel_control_failure", - "variant_id": "alg_lam_pedot_0p3pct_safety_rescue", - "weighted_utility": "0.557" - }, - { - "advance_if": "Delamination resolves without new extract or medium drift and electrode windows remain inspectable.", - "anchoring_or_surface_prep": "polydopamine_or_oxygen_plasma_primer_record_exact_process", - "conditioning": "same_as_lead_plus_primer_extract_blank", - "evidence_refs": "pedot_neural_culture_hydrogel_2025;pedot_brain_monitoring_2025;hydrogel_neural_tissue_2020;dnt_nam_viability_neurite_mea_2022;gelma_pedot_micropatterning_2026;neuronal_network_material_biocompatibility_mea_2013", - "expected_information": "Tests whether the failure mode is mechanical attachment rather than material biology.", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem_pedotpss", - "pedot_pss_loading_fraction": "0.006", - "primary_readouts": "primer_extract;delamination;electrode_window_occlusion;transparency;EIS", - "rank": "5", - "role": "adhesion/window rescue", - "stop_if": "Primer adds medium drift, opacity, or extract toxicity risk.", - "trigger": "use_if_unanchored_0p6pct_passes_medium_gates_but_fails_delamination_or_window_stability", - "variant_id": "pda_anchor_alg_lam_pedot_0p6pct", - "weighted_utility": "0.536" - }, - { - "advance_if": "Lead beats this control electrically while remaining non-inferior on H-A physical and medium gates.", - "anchoring_or_surface_prep": "none_or_same_mea_baseline_as_lead", - "conditioning": "same_medium_soak_as_lead", - "evidence_refs": "pedot_neural_culture_hydrogel_2025;pedot_brain_monitoring_2025;hydrogel_neural_tissue_2020;dnt_nam_viability_neurite_mea_2022", - "expected_information": "Separates hydrogel/laminin effects from PEDOT:PSS-specific drift and electrical benefit.", - "hydrogel_matrix": "alginate_laminin_2pct_wv_caso4_dmem", - "pedot_pss_loading_fraction": "0.0", - "primary_readouts": "pH;osmolality;conductivity;swelling;delamination;transparency;EIS_baseline_if_H-B", - "rank": "6", - "role": "matched negative material baseline", - "stop_if": "Hydrogel-only control itself causes medium drift, swelling, or delamination.", - "trigger": "always_pair_with_every_H-A_or_H-B_batch", - "variant_id": "alg_lam_hydrogel_no_pedot_control", - "weighted_utility": "0.517" - }, - { - "advance_if": "Only to acellular comparator status unless extract and neural gates are later designed.", - "anchoring_or_surface_prep": "not_first_claim_route", - "conditioning": "extractables_first_medium_conditioning", - "evidence_refs": "alg_gel_pedot_ppy_biointerface_2026;conductive_hydrogels_2025;iso_10993_5_cytotoxicity_extract_fda", - "expected_information": "Benchmarks how much electrical upside is possible with a riskier conductive hydrogel family.", - "hydrogel_matrix": "alginate_gelatin_pedot_or_ppy_record_exact_recipe", - "pedot_pss_loading_fraction": "record_exact", - "primary_readouts": "extract_pH;osmolality;conductivity;visible_shedding;EIS;charge_storage;transparency", - "rank": "7", - "role": "high-conductivity comparator only", - "stop_if": "Any PPy/PEDOT residue, opacity, shedding, or medium drift exceeds ALG-LAM-PEDOT.", - "trigger": "use_after_ALG-LAM-PEDOT_baseline_if_H-B_needs_wider_conductive_hydrogel_context", - "variant_id": "alg_gel_pedot_ppy_acellular_comparator", - "weighted_utility": "0.495" - } - ], - "recipe_lock": "nhi_pedot_alg_lam_lowdose_recipe_lock_v0_2", - "status": "designed", - "top_discovery_candidate": "limina_alg_lam_pedot_lowdose_v0_2" -} \ No newline at end of file diff --git a/data/readiness_criteria.json b/data/readiness_criteria.json deleted file mode 100644 index 4dfdd89..0000000 --- a/data/readiness_criteria.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": "0.1", - "technology_id": "limina_zrc_nd_v0_1", - "lead_variant_id": "zrc_nd_3p5k_mpc_guard", - "non_cell_validation_required": { - "validation_result_status": "lead_passes_non_cell_gates", - "aggregate_lead_superiority": "pass", - "required_phase_coverage": ["A", "B", "C"], - "min_passed_lead_replicates_per_phase": 3, - "allowed_failed_lead_rows": 0 - }, - "biological_followup_required": { - "bio_result_status": "bio_followup_passes_gates", - "aggregate_bio_superiority": "pass", - "required_phase_coverage": ["D1", "D2", "D3"], - "min_passed_lead_replicates_per_phase": 3, - "allowed_failed_lead_rows": 0 - }, - "suitability_required": { - "minimum_claim": "first suitable material technology for CL1-like neural wetware support", - "requires_non_cell_validation": true, - "requires_biological_followup": true, - "required_biological_evidence": [ - "conditioned-medium viability or toxicity screen", - "neurite/morphology or equivalent neural-health readout", - "MEA/network activity or equivalent functional stability readout if available", - "no unresolved material blank or extractables issue" - ] - } -} diff --git a/data/rfq_reply_files/h_a/README.md b/data/rfq_reply_files/h_a/README.md deleted file mode 100644 index 3a90151..0000000 --- a/data/rfq_reply_files/h_a/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# NHI-PEDOT H-A RFQ Reply Files - -Place original vendor/cooperator RFQ replies here: email exports, PDFs, quote forms, or saved web-form confirmations. -These files document sourcing logistics only. They are not material measurement evidence. - -After adding a reply file, fill the matching row in the RFQ reply log and rerun: - -```bash -python3 scripts/apply_limina_rfq_reply_log.py --profile h_a -python3 scripts/run_limina_iteration.py -``` diff --git a/data/rfq_reply_files/zrc_phase_a/README.md b/data/rfq_reply_files/zrc_phase_a/README.md deleted file mode 100644 index 2cc098b..0000000 --- a/data/rfq_reply_files/zrc_phase_a/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# ZRC-ND Phase A RFQ Reply Files - -Place original vendor/cooperator RFQ replies here: email exports, PDFs, quote forms, or saved web-form confirmations. -These files document sourcing logistics only. They are not material measurement evidence. - -After adding a reply file, fill the matching row in the RFQ reply log and rerun: - -```bash -python3 scripts/apply_limina_rfq_reply_log.py --profile zrc_phase_a -python3 scripts/run_limina_iteration.py -``` diff --git a/data/rfq_reply_review_templates/h_a/cambridge_polymer_group_hydrogel_reply_review_template.md b/data/rfq_reply_review_templates/h_a/cambridge_polymer_group_hydrogel_reply_review_template.md deleted file mode 100644 index 4171254..0000000 --- a/data/rfq_reply_review_templates/h_a/cambridge_polymer_group_hydrogel_reply_review_template.md +++ /dev/null @@ -1,44 +0,0 @@ -# Cambridge Polymer Group H-A RFQ Reply Review Notes - -This is a planning template only. Do not cite this file as `reply_source_file`. - -After a real vendor reply arrives, save the original email export, quote PDF, attached proposal, or confirmation page to: - -`data/rfq_reply_files/h_a/cambridge_polymer_group_hydrogel_reply.txt` - -The intake script can register the matching row in `data/nhi_pedot_h_a_rfq_reply_log.csv` for review. -Use these fields if manual review is needed: - -- `candidate_id`: `cambridge_polymer_group_hydrogel` -- `reply_status`: `quote_received`, `received`, `clarification_received`, `declined`, or `cannot_quote` -- `reply_at`: timestamp or date of the vendor reply -- `responder_name`: sender/person/team name -- `quote_id_or_reference`: quote ID, ticket, email subject, or proposal reference -- `reply_source_file`: `data/rfq_reply_files/h_a/cambridge_polymer_group_hydrogel_reply.txt` - -Review fields to extract from the original reply: -- `can_cover_full_h_a` -- `needs_split_scope` -- `run_id_level_raw_data` -- `media_physicochemical_coverage` -- `coupon_physical_coverage` -- `csv_schema_acceptance` -- `bundle_entry_sheet_acceptance` -- `sample_handling_fit` -- `non_glp_scope_control` - -Hard required fields for execution selection: -- `run_id_level_raw_data` -- `csv_schema_acceptance` -- `sample_handling_fit` -- `non_glp_scope_control` - -Do not select a provider unless the reply is source-backed and preserves run_id-level raw data. - -After saving the real reply, run: - -`python3 scripts/intake_limina_rfq_replies.py --profile h_a` - -Then run: - -`python3 scripts/apply_limina_rfq_reply_log.py --profile h_a` diff --git a/data/rfq_reply_review_templates/h_a/materials_metric_reply_review_template.md b/data/rfq_reply_review_templates/h_a/materials_metric_reply_review_template.md deleted file mode 100644 index d083df2..0000000 --- a/data/rfq_reply_review_templates/h_a/materials_metric_reply_review_template.md +++ /dev/null @@ -1,44 +0,0 @@ -# Materials Metric H-A RFQ Reply Review Notes - -This is a planning template only. Do not cite this file as `reply_source_file`. - -After a real vendor reply arrives, save the original email export, quote PDF, attached proposal, or confirmation page to: - -`data/rfq_reply_files/h_a/materials_metric_reply.txt` - -The intake script can register the matching row in `data/nhi_pedot_h_a_rfq_reply_log.csv` for review. -Use these fields if manual review is needed: - -- `candidate_id`: `materials_metric` -- `reply_status`: `quote_received`, `received`, `clarification_received`, `declined`, or `cannot_quote` -- `reply_at`: timestamp or date of the vendor reply -- `responder_name`: sender/person/team name -- `quote_id_or_reference`: quote ID, ticket, email subject, or proposal reference -- `reply_source_file`: `data/rfq_reply_files/h_a/materials_metric_reply.txt` - -Review fields to extract from the original reply: -- `can_cover_full_h_a` -- `needs_split_scope` -- `run_id_level_raw_data` -- `media_physicochemical_coverage` -- `coupon_physical_coverage` -- `csv_schema_acceptance` -- `bundle_entry_sheet_acceptance` -- `sample_handling_fit` -- `non_glp_scope_control` - -Hard required fields for execution selection: -- `run_id_level_raw_data` -- `csv_schema_acceptance` -- `sample_handling_fit` -- `non_glp_scope_control` - -Do not select a provider unless the reply is source-backed and preserves run_id-level raw data. - -After saving the real reply, run: - -`python3 scripts/intake_limina_rfq_replies.py --profile h_a` - -Then run: - -`python3 scripts/apply_limina_rfq_reply_log.py --profile h_a` diff --git a/data/rfq_reply_review_templates/h_a/sigmaaldrich_media_testing_reply_review_template.md b/data/rfq_reply_review_templates/h_a/sigmaaldrich_media_testing_reply_review_template.md deleted file mode 100644 index dcc0626..0000000 --- a/data/rfq_reply_review_templates/h_a/sigmaaldrich_media_testing_reply_review_template.md +++ /dev/null @@ -1,44 +0,0 @@ -# MilliporeSigma Cell Culture Media Stability and Testing Services H-A RFQ Reply Review Notes - -This is a planning template only. Do not cite this file as `reply_source_file`. - -After a real vendor reply arrives, save the original email export, quote PDF, attached proposal, or confirmation page to: - -`data/rfq_reply_files/h_a/sigmaaldrich_media_testing_reply.txt` - -The intake script can register the matching row in `data/nhi_pedot_h_a_rfq_reply_log.csv` for review. -Use these fields if manual review is needed: - -- `candidate_id`: `sigmaaldrich_media_testing` -- `reply_status`: `quote_received`, `received`, `clarification_received`, `declined`, or `cannot_quote` -- `reply_at`: timestamp or date of the vendor reply -- `responder_name`: sender/person/team name -- `quote_id_or_reference`: quote ID, ticket, email subject, or proposal reference -- `reply_source_file`: `data/rfq_reply_files/h_a/sigmaaldrich_media_testing_reply.txt` - -Review fields to extract from the original reply: -- `can_cover_full_h_a` -- `needs_split_scope` -- `run_id_level_raw_data` -- `media_physicochemical_coverage` -- `coupon_physical_coverage` -- `csv_schema_acceptance` -- `bundle_entry_sheet_acceptance` -- `sample_handling_fit` -- `non_glp_scope_control` - -Hard required fields for execution selection: -- `run_id_level_raw_data` -- `csv_schema_acceptance` -- `sample_handling_fit` -- `non_glp_scope_control` - -Do not select a provider unless the reply is source-backed and preserves run_id-level raw data. - -After saving the real reply, run: - -`python3 scripts/intake_limina_rfq_replies.py --profile h_a` - -Then run: - -`python3 scripts/apply_limina_rfq_reply_log.py --profile h_a` diff --git a/data/rfq_reply_review_templates/h_a/the_osmolality_lab_reply_review_template.md b/data/rfq_reply_review_templates/h_a/the_osmolality_lab_reply_review_template.md deleted file mode 100644 index b5da712..0000000 --- a/data/rfq_reply_review_templates/h_a/the_osmolality_lab_reply_review_template.md +++ /dev/null @@ -1,44 +0,0 @@ -# The Osmolality Lab H-A RFQ Reply Review Notes - -This is a planning template only. Do not cite this file as `reply_source_file`. - -After a real vendor reply arrives, save the original email export, quote PDF, attached proposal, or confirmation page to: - -`data/rfq_reply_files/h_a/the_osmolality_lab_reply.txt` - -The intake script can register the matching row in `data/nhi_pedot_h_a_rfq_reply_log.csv` for review. -Use these fields if manual review is needed: - -- `candidate_id`: `the_osmolality_lab` -- `reply_status`: `quote_received`, `received`, `clarification_received`, `declined`, or `cannot_quote` -- `reply_at`: timestamp or date of the vendor reply -- `responder_name`: sender/person/team name -- `quote_id_or_reference`: quote ID, ticket, email subject, or proposal reference -- `reply_source_file`: `data/rfq_reply_files/h_a/the_osmolality_lab_reply.txt` - -Review fields to extract from the original reply: -- `can_cover_full_h_a` -- `needs_split_scope` -- `run_id_level_raw_data` -- `media_physicochemical_coverage` -- `coupon_physical_coverage` -- `csv_schema_acceptance` -- `bundle_entry_sheet_acceptance` -- `sample_handling_fit` -- `non_glp_scope_control` - -Hard required fields for execution selection: -- `run_id_level_raw_data` -- `csv_schema_acceptance` -- `sample_handling_fit` -- `non_glp_scope_control` - -Do not select a provider unless the reply is source-backed and preserves run_id-level raw data. - -After saving the real reply, run: - -`python3 scripts/intake_limina_rfq_replies.py --profile h_a` - -Then run: - -`python3 scripts/apply_limina_rfq_reply_log.py --profile h_a` diff --git a/data/rfq_reply_review_templates/zrc_phase_a/jordi_labs_el_polymer_reply_review_template.md b/data/rfq_reply_review_templates/zrc_phase_a/jordi_labs_el_polymer_reply_review_template.md deleted file mode 100644 index f1edeac..0000000 --- a/data/rfq_reply_review_templates/zrc_phase_a/jordi_labs_el_polymer_reply_review_template.md +++ /dev/null @@ -1,44 +0,0 @@ -# Jordi Labs Analytical Testing ZRC-ND Phase A RFQ Reply Review Notes - -This is a planning template only. Do not cite this file as `reply_source_file`. - -After a real vendor reply arrives, save the original email export, quote PDF, attached proposal, or confirmation page to: - -`data/rfq_reply_files/zrc_phase_a/jordi_labs_el_polymer_reply.txt` - -The intake script can register the matching row in `data/zrc_nd_phase_a_rfq_reply_log.csv` for review. -Use these fields if manual review is needed: - -- `candidate_id`: `jordi_labs_el_polymer` -- `reply_status`: `quote_received`, `received`, `clarification_received`, `declined`, or `cannot_quote` -- `reply_at`: timestamp or date of the vendor reply -- `responder_name`: sender/person/team name -- `quote_id_or_reference`: quote ID, ticket, email subject, or proposal reference -- `reply_source_file`: `data/rfq_reply_files/zrc_phase_a/jordi_labs_el_polymer_reply.txt` - -Review fields to extract from the original reply: -- `can_cover_full_phase_a` -- `needs_split_scope` -- `run_id_level_raw_data` -- `phase_a_media_panel_coverage` -- `csv_schema_acceptance` -- `sample_handling_fit` -- `source_file_provenance` -- `non_glp_scope_control` - -Hard required fields for execution selection: -- `run_id_level_raw_data` -- `csv_schema_acceptance` -- `sample_handling_fit` -- `source_file_provenance` -- `non_glp_scope_control` - -Do not select a provider unless the reply is source-backed and preserves run_id-level raw data plus source-file provenance. - -After saving the real reply, run: - -`python3 scripts/intake_limina_rfq_replies.py --profile zrc_phase_a` - -Then run: - -`python3 scripts/apply_limina_rfq_reply_log.py --profile zrc_phase_a` diff --git a/data/rfq_reply_review_templates/zrc_phase_a/pacific_biolabs_physicochemical_reply_review_template.md b/data/rfq_reply_review_templates/zrc_phase_a/pacific_biolabs_physicochemical_reply_review_template.md deleted file mode 100644 index 6480734..0000000 --- a/data/rfq_reply_review_templates/zrc_phase_a/pacific_biolabs_physicochemical_reply_review_template.md +++ /dev/null @@ -1,44 +0,0 @@ -# Pacific BioLabs Physicochemical Properties Testing ZRC-ND Phase A RFQ Reply Review Notes - -This is a planning template only. Do not cite this file as `reply_source_file`. - -After a real vendor reply arrives, save the original email export, quote PDF, attached proposal, or confirmation page to: - -`data/rfq_reply_files/zrc_phase_a/pacific_biolabs_physicochemical_reply.txt` - -The intake script can register the matching row in `data/zrc_nd_phase_a_rfq_reply_log.csv` for review. -Use these fields if manual review is needed: - -- `candidate_id`: `pacific_biolabs_physicochemical` -- `reply_status`: `quote_received`, `received`, `clarification_received`, `declined`, or `cannot_quote` -- `reply_at`: timestamp or date of the vendor reply -- `responder_name`: sender/person/team name -- `quote_id_or_reference`: quote ID, ticket, email subject, or proposal reference -- `reply_source_file`: `data/rfq_reply_files/zrc_phase_a/pacific_biolabs_physicochemical_reply.txt` - -Review fields to extract from the original reply: -- `can_cover_full_phase_a` -- `needs_split_scope` -- `run_id_level_raw_data` -- `phase_a_media_panel_coverage` -- `csv_schema_acceptance` -- `sample_handling_fit` -- `source_file_provenance` -- `non_glp_scope_control` - -Hard required fields for execution selection: -- `run_id_level_raw_data` -- `csv_schema_acceptance` -- `sample_handling_fit` -- `source_file_provenance` -- `non_glp_scope_control` - -Do not select a provider unless the reply is source-backed and preserves run_id-level raw data plus source-file provenance. - -After saving the real reply, run: - -`python3 scripts/intake_limina_rfq_replies.py --profile zrc_phase_a` - -Then run: - -`python3 scripts/apply_limina_rfq_reply_log.py --profile zrc_phase_a` diff --git a/data/rfq_reply_review_templates/zrc_phase_a/sigmaaldrich_media_testing_reply_review_template.md b/data/rfq_reply_review_templates/zrc_phase_a/sigmaaldrich_media_testing_reply_review_template.md deleted file mode 100644 index 40e78e1..0000000 --- a/data/rfq_reply_review_templates/zrc_phase_a/sigmaaldrich_media_testing_reply_review_template.md +++ /dev/null @@ -1,44 +0,0 @@ -# MilliporeSigma Cell Culture Media Stability and Testing Services ZRC-ND Phase A RFQ Reply Review Notes - -This is a planning template only. Do not cite this file as `reply_source_file`. - -After a real vendor reply arrives, save the original email export, quote PDF, attached proposal, or confirmation page to: - -`data/rfq_reply_files/zrc_phase_a/sigmaaldrich_media_testing_reply.txt` - -The intake script can register the matching row in `data/zrc_nd_phase_a_rfq_reply_log.csv` for review. -Use these fields if manual review is needed: - -- `candidate_id`: `sigmaaldrich_media_testing` -- `reply_status`: `quote_received`, `received`, `clarification_received`, `declined`, or `cannot_quote` -- `reply_at`: timestamp or date of the vendor reply -- `responder_name`: sender/person/team name -- `quote_id_or_reference`: quote ID, ticket, email subject, or proposal reference -- `reply_source_file`: `data/rfq_reply_files/zrc_phase_a/sigmaaldrich_media_testing_reply.txt` - -Review fields to extract from the original reply: -- `can_cover_full_phase_a` -- `needs_split_scope` -- `run_id_level_raw_data` -- `phase_a_media_panel_coverage` -- `csv_schema_acceptance` -- `sample_handling_fit` -- `source_file_provenance` -- `non_glp_scope_control` - -Hard required fields for execution selection: -- `run_id_level_raw_data` -- `csv_schema_acceptance` -- `sample_handling_fit` -- `source_file_provenance` -- `non_glp_scope_control` - -Do not select a provider unless the reply is source-backed and preserves run_id-level raw data plus source-file provenance. - -After saving the real reply, run: - -`python3 scripts/intake_limina_rfq_replies.py --profile zrc_phase_a` - -Then run: - -`python3 scripts/apply_limina_rfq_reply_log.py --profile zrc_phase_a` diff --git a/data/rfq_reply_review_templates/zrc_phase_a/the_osmolality_lab_reply_review_template.md b/data/rfq_reply_review_templates/zrc_phase_a/the_osmolality_lab_reply_review_template.md deleted file mode 100644 index 99f257a..0000000 --- a/data/rfq_reply_review_templates/zrc_phase_a/the_osmolality_lab_reply_review_template.md +++ /dev/null @@ -1,44 +0,0 @@ -# The Osmolality Lab ZRC-ND Phase A RFQ Reply Review Notes - -This is a planning template only. Do not cite this file as `reply_source_file`. - -After a real vendor reply arrives, save the original email export, quote PDF, attached proposal, or confirmation page to: - -`data/rfq_reply_files/zrc_phase_a/the_osmolality_lab_reply.txt` - -The intake script can register the matching row in `data/zrc_nd_phase_a_rfq_reply_log.csv` for review. -Use these fields if manual review is needed: - -- `candidate_id`: `the_osmolality_lab` -- `reply_status`: `quote_received`, `received`, `clarification_received`, `declined`, or `cannot_quote` -- `reply_at`: timestamp or date of the vendor reply -- `responder_name`: sender/person/team name -- `quote_id_or_reference`: quote ID, ticket, email subject, or proposal reference -- `reply_source_file`: `data/rfq_reply_files/zrc_phase_a/the_osmolality_lab_reply.txt` - -Review fields to extract from the original reply: -- `can_cover_full_phase_a` -- `needs_split_scope` -- `run_id_level_raw_data` -- `phase_a_media_panel_coverage` -- `csv_schema_acceptance` -- `sample_handling_fit` -- `source_file_provenance` -- `non_glp_scope_control` - -Hard required fields for execution selection: -- `run_id_level_raw_data` -- `csv_schema_acceptance` -- `sample_handling_fit` -- `source_file_provenance` -- `non_glp_scope_control` - -Do not select a provider unless the reply is source-backed and preserves run_id-level raw data plus source-file provenance. - -After saving the real reply, run: - -`python3 scripts/intake_limina_rfq_replies.py --profile zrc_phase_a` - -Then run: - -`python3 scripts/apply_limina_rfq_reply_log.py --profile zrc_phase_a` diff --git a/data/rfq_send_confirmation_files/h_a/README.md b/data/rfq_send_confirmation_files/h_a/README.md deleted file mode 100644 index f2bbc68..0000000 --- a/data/rfq_send_confirmation_files/h_a/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# NHI-PEDOT H-A RFQ Send Confirmation Files - -Place original RFQ send confirmations here: sent-email exports, web-form confirmation PDFs, screenshots, or saved confirmation pages. -These files document outreach logistics only. They are not material measurement evidence. - -After adding a confirmation file, fill the matching row in the RFQ send log and rerun: - -```bash -python3 scripts/apply_limina_rfq_send_log.py --profile h_a -python3 scripts/run_limina_iteration.py -``` diff --git a/data/rfq_send_confirmation_files/zrc_phase_a/README.md b/data/rfq_send_confirmation_files/zrc_phase_a/README.md deleted file mode 100644 index d4f7d4a..0000000 --- a/data/rfq_send_confirmation_files/zrc_phase_a/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# ZRC-ND Phase A RFQ Send Confirmation Files - -Place original RFQ send confirmations here: sent-email exports, web-form confirmation PDFs, screenshots, or saved confirmation pages. -These files document outreach logistics only. They are not material measurement evidence. - -After adding a confirmation file, fill the matching row in the RFQ send log and rerun: - -```bash -python3 scripts/apply_limina_rfq_send_log.py --profile zrc_phase_a -python3 scripts/run_limina_iteration.py -``` diff --git a/data/rfq_send_confirmation_templates/h_a/cambridge_polymer_group_hydrogel_send_confirmation_template.md b/data/rfq_send_confirmation_templates/h_a/cambridge_polymer_group_hydrogel_send_confirmation_template.md deleted file mode 100644 index f969496..0000000 --- a/data/rfq_send_confirmation_templates/h_a/cambridge_polymer_group_hydrogel_send_confirmation_template.md +++ /dev/null @@ -1,30 +0,0 @@ -# Cambridge Polymer Group H-A RFQ Send Confirmation Notes - -This is a planning template only. Do not cite this file as `send_confirmation_source_file`. - -After a real email or web-form submission, save the original sent-email export, form confirmation page, PDF, or screenshot to: - -`data/rfq_send_confirmation_files/h_a/cambridge_polymer_group_hydrogel_send_confirmation.txt` - -The intake script can fill the matching row in `data/nhi_pedot_h_a_rfq_send_log.csv` when the saved confirmation proves the expected bundle. -Use these fields if manual review is needed: - -- `candidate_id`: `cambridge_polymer_group_hydrogel` -- `send_status`: `sent`, `emailed`, `submitted`, or `form_submitted` -- `sent_at`: ISO timestamp or date of the actual submission -- `sent_by`: human sender/account -- `send_method`: `request_quote_form_or_email` -- `recipient_or_form`: `info@campoly.com` -- `message_id_or_confirmation`: message ID, ticket ID, quote request ID, or form confirmation text -- `send_confirmation_source_file`: `data/rfq_send_confirmation_files/h_a/cambridge_polymer_group_hydrogel_send_confirmation.txt` -- `sent_bundle_sha256`: `bad885c9487cfc4e33c6abda168421232f8da5b1fc2a6698b4d129453d7811a1` - -After saving the real confirmation, run: - -`python3 scripts/intake_limina_rfq_send_confirmations.py --profile h_a` - -Then run: - -`python3 scripts/apply_limina_rfq_send_log.py --profile h_a` - -Do not mark the row sent until the real submission has happened. diff --git a/data/rfq_send_confirmation_templates/h_a/materials_metric_send_confirmation_template.md b/data/rfq_send_confirmation_templates/h_a/materials_metric_send_confirmation_template.md deleted file mode 100644 index 3718ce4..0000000 --- a/data/rfq_send_confirmation_templates/h_a/materials_metric_send_confirmation_template.md +++ /dev/null @@ -1,30 +0,0 @@ -# Materials Metric H-A RFQ Send Confirmation Notes - -This is a planning template only. Do not cite this file as `send_confirmation_source_file`. - -After a real email or web-form submission, save the original sent-email export, form confirmation page, PDF, or screenshot to: - -`data/rfq_send_confirmation_files/h_a/materials_metric_send_confirmation.txt` - -The intake script can fill the matching row in `data/nhi_pedot_h_a_rfq_send_log.csv` when the saved confirmation proves the expected bundle. -Use these fields if manual review is needed: - -- `candidate_id`: `materials_metric` -- `send_status`: `sent`, `emailed`, `submitted`, or `form_submitted` -- `sent_at`: ISO timestamp or date of the actual submission -- `sent_by`: human sender/account -- `send_method`: `email_or_request_service_form` -- `recipient_or_form`: `info@materialsmetric.com` -- `message_id_or_confirmation`: message ID, ticket ID, quote request ID, or form confirmation text -- `send_confirmation_source_file`: `data/rfq_send_confirmation_files/h_a/materials_metric_send_confirmation.txt` -- `sent_bundle_sha256`: `6799fdef01396d5ed999a13a4de131bf1d490719369c0e4b90f81c7c73cd9d35` - -After saving the real confirmation, run: - -`python3 scripts/intake_limina_rfq_send_confirmations.py --profile h_a` - -Then run: - -`python3 scripts/apply_limina_rfq_send_log.py --profile h_a` - -Do not mark the row sent until the real submission has happened. diff --git a/data/rfq_send_confirmation_templates/h_a/sigmaaldrich_media_testing_send_confirmation_template.md b/data/rfq_send_confirmation_templates/h_a/sigmaaldrich_media_testing_send_confirmation_template.md deleted file mode 100644 index ad04517..0000000 --- a/data/rfq_send_confirmation_templates/h_a/sigmaaldrich_media_testing_send_confirmation_template.md +++ /dev/null @@ -1,30 +0,0 @@ -# MilliporeSigma Cell Culture Media Stability and Testing Services H-A RFQ Send Confirmation Notes - -This is a planning template only. Do not cite this file as `send_confirmation_source_file`. - -After a real email or web-form submission, save the original sent-email export, form confirmation page, PDF, or screenshot to: - -`data/rfq_send_confirmation_files/h_a/sigmaaldrich_media_testing_send_confirmation.txt` - -The intake script can fill the matching row in `data/nhi_pedot_h_a_rfq_send_log.csv` when the saved confirmation proves the expected bundle. -Use these fields if manual review is needed: - -- `candidate_id`: `sigmaaldrich_media_testing` -- `send_status`: `sent`, `emailed`, `submitted`, or `form_submitted` -- `sent_at`: ISO timestamp or date of the actual submission -- `sent_by`: human sender/account -- `send_method`: `service_page_or_technical_service` -- `recipient_or_form`: `PSTechService@milliporesigma.com` -- `message_id_or_confirmation`: message ID, ticket ID, quote request ID, or form confirmation text -- `send_confirmation_source_file`: `data/rfq_send_confirmation_files/h_a/sigmaaldrich_media_testing_send_confirmation.txt` -- `sent_bundle_sha256`: `6950279d9e72509ba62950b8ad0ea46f1f9d4c4b3e54960054d5967bc66ea8cd` - -After saving the real confirmation, run: - -`python3 scripts/intake_limina_rfq_send_confirmations.py --profile h_a` - -Then run: - -`python3 scripts/apply_limina_rfq_send_log.py --profile h_a` - -Do not mark the row sent until the real submission has happened. diff --git a/data/rfq_send_confirmation_templates/h_a/the_osmolality_lab_send_confirmation_template.md b/data/rfq_send_confirmation_templates/h_a/the_osmolality_lab_send_confirmation_template.md deleted file mode 100644 index b799769..0000000 --- a/data/rfq_send_confirmation_templates/h_a/the_osmolality_lab_send_confirmation_template.md +++ /dev/null @@ -1,30 +0,0 @@ -# The Osmolality Lab H-A RFQ Send Confirmation Notes - -This is a planning template only. Do not cite this file as `send_confirmation_source_file`. - -After a real email or web-form submission, save the original sent-email export, form confirmation page, PDF, or screenshot to: - -`data/rfq_send_confirmation_files/h_a/the_osmolality_lab_send_confirmation.txt` - -The intake script can fill the matching row in `data/nhi_pedot_h_a_rfq_send_log.csv` when the saved confirmation proves the expected bundle. -Use these fields if manual review is needed: - -- `candidate_id`: `the_osmolality_lab` -- `send_status`: `sent`, `emailed`, `submitted`, or `form_submitted` -- `sent_at`: ISO timestamp or date of the actual submission -- `sent_by`: human sender/account -- `send_method`: `email_or_contact_form` -- `recipient_or_form`: `info@osmolab.com` -- `message_id_or_confirmation`: message ID, ticket ID, quote request ID, or form confirmation text -- `send_confirmation_source_file`: `data/rfq_send_confirmation_files/h_a/the_osmolality_lab_send_confirmation.txt` -- `sent_bundle_sha256`: `b89d68822a7e42b1d387d3b239b6cee86140d3b188e1a3ae14e92792094c023a` - -After saving the real confirmation, run: - -`python3 scripts/intake_limina_rfq_send_confirmations.py --profile h_a` - -Then run: - -`python3 scripts/apply_limina_rfq_send_log.py --profile h_a` - -Do not mark the row sent until the real submission has happened. diff --git a/data/rfq_send_confirmation_templates/zrc_phase_a/jordi_labs_el_polymer_send_confirmation_template.md b/data/rfq_send_confirmation_templates/zrc_phase_a/jordi_labs_el_polymer_send_confirmation_template.md deleted file mode 100644 index 3c9bffe..0000000 --- a/data/rfq_send_confirmation_templates/zrc_phase_a/jordi_labs_el_polymer_send_confirmation_template.md +++ /dev/null @@ -1,25 +0,0 @@ -# Jordi Labs Analytical Testing ZRC-ND Phase A RFQ Send Confirmation Notes - -This is a planning template only. Do not cite this file as `send_confirmation_source_file`. - -After a real email or web-form submission, save the original sent-email export, form confirmation page, PDF, or screenshot to: - -`data/rfq_send_confirmation_files/zrc_phase_a/jordi_labs_el_polymer_send_confirmation.txt` - -Use these fields if manual review is needed: - -- `candidate_id`: `jordi_labs_el_polymer` -- `send_status`: `sent`, `emailed`, `submitted`, or `form_submitted` -- `sent_at`: ISO timestamp or date of the actual submission -- `sent_by`: human sender/account -- `send_method`: `contact_form_or_email` -- `recipient_or_form`: `info@jordilabs.com` -- `message_id_or_confirmation`: message ID, ticket ID, quote request ID, or form confirmation text -- `send_confirmation_source_file`: `data/rfq_send_confirmation_files/zrc_phase_a/jordi_labs_el_polymer_send_confirmation.txt` -- `sent_bundle_sha256`: `9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3` - -Then run: - -`python3 scripts/apply_limina_rfq_send_log.py --profile zrc_phase_a` - -Do not mark the row sent until the real submission has happened. diff --git a/data/rfq_send_confirmation_templates/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation_template.md b/data/rfq_send_confirmation_templates/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation_template.md deleted file mode 100644 index 941eb25..0000000 --- a/data/rfq_send_confirmation_templates/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation_template.md +++ /dev/null @@ -1,25 +0,0 @@ -# Pacific BioLabs Physicochemical Properties Testing ZRC-ND Phase A RFQ Send Confirmation Notes - -This is a planning template only. Do not cite this file as `send_confirmation_source_file`. - -After a real email or web-form submission, save the original sent-email export, form confirmation page, PDF, or screenshot to: - -`data/rfq_send_confirmation_files/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation.txt` - -Use these fields if manual review is needed: - -- `candidate_id`: `pacific_biolabs_physicochemical` -- `send_status`: `sent`, `emailed`, `submitted`, or `form_submitted` -- `sent_at`: ISO timestamp or date of the actual submission -- `sent_by`: human sender/account -- `send_method`: `contact_form_or_quote_phone` -- `recipient_or_form`: `https://pacificbiolabs.com/contact/` -- `message_id_or_confirmation`: message ID, ticket ID, quote request ID, or form confirmation text -- `send_confirmation_source_file`: `data/rfq_send_confirmation_files/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation.txt` -- `sent_bundle_sha256`: `b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d` - -Then run: - -`python3 scripts/apply_limina_rfq_send_log.py --profile zrc_phase_a` - -Do not mark the row sent until the real submission has happened. diff --git a/data/rfq_send_confirmation_templates/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation_template.md b/data/rfq_send_confirmation_templates/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation_template.md deleted file mode 100644 index edf4729..0000000 --- a/data/rfq_send_confirmation_templates/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation_template.md +++ /dev/null @@ -1,25 +0,0 @@ -# MilliporeSigma Cell Culture Media Stability and Testing Services ZRC-ND Phase A RFQ Send Confirmation Notes - -This is a planning template only. Do not cite this file as `send_confirmation_source_file`. - -After a real email or web-form submission, save the original sent-email export, form confirmation page, PDF, or screenshot to: - -`data/rfq_send_confirmation_files/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation.txt` - -Use these fields if manual review is needed: - -- `candidate_id`: `sigmaaldrich_media_testing` -- `send_status`: `sent`, `emailed`, `submitted`, or `form_submitted` -- `sent_at`: ISO timestamp or date of the actual submission -- `sent_by`: human sender/account -- `send_method`: `service_page_or_technical_service` -- `recipient_or_form`: `PSTechService@milliporesigma.com` -- `message_id_or_confirmation`: message ID, ticket ID, quote request ID, or form confirmation text -- `send_confirmation_source_file`: `data/rfq_send_confirmation_files/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation.txt` -- `sent_bundle_sha256`: `020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2` - -Then run: - -`python3 scripts/apply_limina_rfq_send_log.py --profile zrc_phase_a` - -Do not mark the row sent until the real submission has happened. diff --git a/data/rfq_send_confirmation_templates/zrc_phase_a/the_osmolality_lab_send_confirmation_template.md b/data/rfq_send_confirmation_templates/zrc_phase_a/the_osmolality_lab_send_confirmation_template.md deleted file mode 100644 index ea9628f..0000000 --- a/data/rfq_send_confirmation_templates/zrc_phase_a/the_osmolality_lab_send_confirmation_template.md +++ /dev/null @@ -1,25 +0,0 @@ -# The Osmolality Lab ZRC-ND Phase A RFQ Send Confirmation Notes - -This is a planning template only. Do not cite this file as `send_confirmation_source_file`. - -After a real email or web-form submission, save the original sent-email export, form confirmation page, PDF, or screenshot to: - -`data/rfq_send_confirmation_files/zrc_phase_a/the_osmolality_lab_send_confirmation.txt` - -Use these fields if manual review is needed: - -- `candidate_id`: `the_osmolality_lab` -- `send_status`: `sent`, `emailed`, `submitted`, or `form_submitted` -- `sent_at`: ISO timestamp or date of the actual submission -- `sent_by`: human sender/account -- `send_method`: `email_or_contact_form` -- `recipient_or_form`: `info@osmolab.com` -- `message_id_or_confirmation`: message ID, ticket ID, quote request ID, or form confirmation text -- `send_confirmation_source_file`: `data/rfq_send_confirmation_files/zrc_phase_a/the_osmolality_lab_send_confirmation.txt` -- `sent_bundle_sha256`: `29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f` - -Then run: - -`python3 scripts/apply_limina_rfq_send_log.py --profile zrc_phase_a` - -Do not mark the row sent until the real submission has happened. diff --git a/data/source_files/README.md b/data/source_files/README.md deleted file mode 100644 index 26d3f40..0000000 --- a/data/source_files/README.md +++ /dev/null @@ -1,22 +0,0 @@ -# LIMINA Source Files - -Place real raw exports, photos, reports, worksheets, calibration logs, and build records here before filling `source_file` fields. - -Do not use emails, quotes, verbal notes, capability claims, synthetic fixtures, or placeholder files as measured evidence. - -## Allowed Roots - -- `data/source_files/full/h_a`: Local instrument exports, photos, worksheets, calibration logs, and bench records for the full H-A matrix. -- `data/source_files/full/zrc_nd_phase_a`: Local records and instrument outputs for the full ZRC-ND Phase A matrix. -- `data/source_files/full/nhi_pedot_forward`: Local instrument exports, images, worksheets, and biological assay records for NHI-PEDOT H-B/H-C coupon gates. -- `data/source_files/full/nhi_pedot_long`: Long-duration MEA, neural health, stimulus-recovery, imaging, and material-integrity records for NHI-PEDOT. -- `data/source_files/full/zrc_nd_bio`: Biological assay records, imaging, MEA outputs, and worksheets for ZRC-ND conditioned-medium follow-up gates. -- `data/source_files/smoke/h_a`: Minimal source files for the smoke-tranche H-A pipeline rehearsal. -- `data/source_files/smoke/zrc_nd_phase_a`: Minimal source files for the smoke-tranche ZRC-ND pipeline rehearsal. -- `data/source_files/calibration_logs`: Calibration or standard-check files referenced by pH, conductivity, temperature, osmometer, image, mass, or dimension records. -- `data/source_files/bench_records`: Bench logs, pipetting worksheets, chain-of-custody exports, and operator worksheets. -- `data/source_files/build_records`: Recipe records, supplier CoAs, sample labels, coating logs, and build sheets. -- `data/nhi_pedot_h_a_vendor_return_inbox/external_lab_exports`: Original external lab exports, reports, images, and worksheets referenced by returned H-A rows. -- `data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports`: Original external lab exports, reports, images, and worksheets referenced by returned ZRC-ND rows. - -Run `python3 scripts/preflight_limina_local_capture.py` after entries are filled. diff --git a/data/technology_schema.json b/data/technology_schema.json deleted file mode 100644 index 8cf76dd..0000000 --- a/data/technology_schema.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": "0.1", - "record_type": "limina_material_technology", - "required_fields": [ - "id", - "name", - "priority_lane", - "status", - "one_line", - "technology_type", - "core_material_stack", - "design_claim", - "why_it_is_new_for_limina", - "fit_to_requirements", - "evidence_refs", - "validation_plan", - "kill_criteria", - "open_questions", - "score" - ], - "field_notes": { - "status": "candidate, nominated, validated, rejected", - "core_material_stack": "Layered material/module architecture.", - "fit_to_requirements": "Requirement-by-requirement mapping.", - "validation_plan": "Measurements needed before claiming experimental suitability.", - "kill_criteria": "Conditions that should stop investment.", - "score": "Internal LIMINA score, not a proof of experimental success." - } -} - diff --git a/data/validation_package_schema.json b/data/validation_package_schema.json deleted file mode 100644 index 06735d2..0000000 --- a/data/validation_package_schema.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": "0.1", - "record_type": "limina_validation_package", - "required_fields": [ - "id", - "lead_variant_id", - "parent_technology", - "title", - "objective", - "scope", - "procurement_specs", - "test_articles", - "run_matrix", - "assay_panel", - "acceptance_gates", - "data_capture_fields", - "decision_rules", - "source_refs" - ], - "field_notes": { - "procurement_specs": "Material and assay specifications to source; avoid hard-coding one vendor unless necessary.", - "test_articles": "Concrete modules/coupons to run in the validation package.", - "run_matrix": "Phased tests and controls; design-level, not a wet-lab SOP.", - "assay_panel": "Analytical readouts needed to judge suitability.", - "acceptance_gates": "Initial pass/fail gates for advancing the candidate.", - "data_capture_fields": "Fields that should be logged for every run to enable agent iteration.", - "decision_rules": "What to do when gates pass or fail.", - "source_refs": "Evidence ids or source URLs that motivate the package." - } -} diff --git a/data/zrc_nd_3p5k_guard_validation_package.json b/data/zrc_nd_3p5k_guard_validation_package.json deleted file mode 100644 index 27408c7..0000000 --- a/data/zrc_nd_3p5k_guard_validation_package.json +++ /dev/null @@ -1,307 +0,0 @@ -{ - "id": "zrc_nd_3p5k_guard_validation_v0_1", - "lead_variant_id": "zrc_nd_3p5k_mpc_guard", - "parent_technology": "limina_zrc_nd_v0_1", - "title": "ZRC-ND-3.5M Guard validation package", - "objective": "Determine whether the ZRC-ND-3.5M Guard lead is suitable to enter biological conditioned-medium follow-up by proving small-waste exchange, trophic-factor retention, low material interference, and stable module behavior in non-cell media tests.", - "scope": { - "stage": "non-cell media-chemistry validation", - "claim_after_success": "Ready for conditioned-medium and biological follow-up, not yet proven safe for direct or long-duration neural culture use.", - "lead_design": "3.5 kDa regenerated-cellulose dialysis membrane with MPC-like zwitterionic wetted-surface modification, low-binding PES/SFCA guard prefilter, and COC/COP monitored housing.", - "design_boundary": "Side-stream cartridge outside the cell chamber; no direct cell exposure before blank and recovery gates pass.", - "not_in_scope": "Final sterilization validation, GMP manufacturing, implantable/device claims, and CL1 API integration." - }, - "procurement_specs": [ - { - "id": "primary_rc_3p5k_membrane", - "component": "Primary exchange membrane", - "required_spec": "Regenerated-cellulose dialysis membrane or cassette, nominal 3.5 kDa MWCO, low nonspecific protein adsorption, aqueous medium compatibility, enough area to fabricate replicate coupons or small side-stream modules.", - "preferred_format": "Closed cassette or flat/tubular membrane coupon that can be placed in an external loop without exposing cells to adhesives or unvalidated housing.", - "reject_if": "Cellulose ester only without regenerated-cellulose comparator, unknown MWCO, high protein binding, incompatible preservatives, or no usable extractables/handling information.", - "evidence_refs": ["rc_3p5k_repligen_vendor_spec", "dialysis_mwco_principle_thermo", "low_binding_rc_membrane_vendor"] - }, - { - "id": "challenge_rc_10k_membrane", - "component": "High-clearance challenge membrane", - "required_spec": "Regenerated-cellulose dialysis membrane or cassette, nominal 10 kDa MWCO, same geometry class as the 3.5 kDa lead when possible.", - "preferred_format": "Matched coupon or cassette for retention-clearance boundary testing.", - "reject_if": "Geometry, area, or handling differs enough that clearance cannot be compared to the 3.5 kDa lead.", - "evidence_refs": ["dialysis_mwco_principle_thermo", "bdnf_uniprot_p23560", "ngf_uniprot_p01138"] - }, - { - "id": "low_binding_guard_prefilter", - "component": "Guard prefilter", - "required_spec": "Sterile low-protein-binding PES or SFCA filter, preferably 0.22 um for debris/sterility-style guarding in a short upstream position.", - "preferred_format": "Small inline or syringe-filter format that can be bypassed for matched no-guard controls.", - "reject_if": "High protein binding, surfactant leaching risk, unknown membrane material, or large hold-up volume that changes medium composition.", - "evidence_refs": ["low_binding_membrane_media_technical"] - }, - { - "id": "coc_cop_housing", - "component": "Observed side-stream housing", - "required_spec": "COC/COP or PEEK wetted housing with low extractables risk, optical observation of bubbles/precipitate, and ports for pH, conductivity, and flow/pressure monitoring.", - "preferred_format": "COC/COP first, PEEK backup; avoid PDMS in the lead path unless adsorption is intentionally being tested.", - "reject_if": "PDMS as primary wetted housing, unknown adhesive exposure, opaque housing that prevents bubble checks, or no blank-extractables plan.", - "evidence_refs": ["organ_chip_perfusion_review_2022", "coc_cop_ooc_material_review_2026", "coc_pdms_sorption_2025"] - }, - { - "id": "mpc_like_zwitterionic_surface", - "component": "Antifouling wetted-surface modification", - "required_spec": "Primary coupon route: PDA/polyMPC controlled surface-only deposition with pore-protection/backflow or equivalent pore-preserving process control. Backup routes: PMMMSi MPC-silane crosslinked brush or PSBMA cellulose brush only after the primary route fails a defined gate.", - "preferred_format": "Thin, stable surface treatment with matched unmodified RC and housing controls, measured before and after coating for MWCO/transport shift.", - "reject_if": "Coating blocks low-MW transport, changes MWCO unpredictably, sheds measurable extractables, or lowers BDNF/NGF recovery.", - "evidence_refs": ["polympc_polyprev_retained_pore_2019", "pda_click_pmpc_membrane_2025", "zwitterionic_membrane_antifouling_2016", "zwitterionic_cellulose_acetate_hfm_2026", "psbma_cellulose_si_raft_2013"] - } - ], - "test_articles": [ - { - "id": "lead_zrc_nd_3p5m_guard", - "variant_id": "zrc_nd_3p5k_mpc_guard", - "description": "3.5 kDa RC exchange element, MPC-like zwitterionic wetted-surface modification, low-binding PES/SFCA guard, COC/COP housing.", - "role": "lead candidate" - }, - { - "id": "baseline_rc_3p5m_guard", - "variant_id": "zrc_nd_3p5k_unmodified_guard", - "description": "3.5 kDa RC exchange element with the same guard and housing but no zwitterionic modification.", - "role": "unmodified baseline" - }, - { - "id": "challenge_zrc_nd_10m_guard", - "variant_id": "zrc_nd_10k_mpc_guard", - "description": "10 kDa RC exchange element with the same zwitterionic/guard/housing concept.", - "role": "high-clearance retention challenge" - }, - { - "id": "no_module_static_control", - "variant_id": null, - "description": "Matched medium held without cartridge exposure.", - "role": "stability and background control" - }, - { - "id": "bulk_exchange_reference", - "variant_id": null, - "description": "Conventional medium refresh reference for waste dilution and secretome dilution comparison.", - "role": "process reference" - } - ], - "run_matrix": [ - { - "phase": "A", - "name": "Fresh-medium material blank", - "purpose": "Detect pH, osmolality, conductivity, turbidity, and extractables shifts before any biological material is used.", - "inputs": ["fresh complete neuronal medium or closest CL1-like medium proxy"], - "articles": ["lead_zrc_nd_3p5m_guard", "baseline_rc_3p5m_guard", "challenge_zrc_nd_10m_guard", "no_module_static_control"], - "minimum_replicates": 3, - "timepoints": ["0 h", "1 h", "4 h", "24 h"], - "must_pass_before": "Phase B" - }, - { - "phase": "B", - "name": "Spiked recovery and clearance panel", - "purpose": "Measure whether the module removes lactate/ammonium-class wastes while retaining trophic proteins and bulk proteins.", - "inputs": ["matched medium spiked with lactate", "matched medium spiked with ammonium", "BDNF or validated BDNF proxy", "NGF or validated NGF proxy", "albumin", "transferrin"], - "articles": ["lead_zrc_nd_3p5m_guard", "baseline_rc_3p5m_guard", "challenge_zrc_nd_10m_guard", "no_module_static_control"], - "minimum_replicates": 3, - "timepoints": ["0 h", "1 h", "4 h", "24 h"], - "must_pass_before": "Phase C" - }, - { - "phase": "C", - "name": "Conditioned-medium non-cell challenge", - "purpose": "Stress the cartridge with protein-rich or aged neural-conditioned medium without exposing live cells to unvalidated materials.", - "inputs": ["conditioned medium or aged medium proxy", "matched fresh medium blank"], - "articles": ["lead_zrc_nd_3p5m_guard", "baseline_rc_3p5m_guard", "no_module_static_control", "bulk_exchange_reference"], - "minimum_replicates": 3, - "timepoints": ["0 h", "4 h", "24 h", "repeat exposure if fouling is low"], - "must_pass_before": "Phase D biological pilot" - } - ], - "assay_panel": [ - { - "id": "lactate_clearance", - "readout": "Lactate concentration", - "method_class": "colorimetric or enzymatic lactate assay", - "sample_matrix": "matched medium and conditioned-medium proxy", - "control_requirement": "medium-matched calibration and spike/recovery control", - "evidence_refs": ["lactate_assay_cell_culture_vendor"] - }, - { - "id": "ammonia_clearance", - "readout": "Total ammonia/ammonium concentration", - "method_class": "colorimetric or enzymatic ammonia assay", - "sample_matrix": "matched medium and conditioned-medium proxy", - "control_requirement": "record pH; run standards in matched medium", - "evidence_refs": ["ammonia_assay_cell_culture_vendor", "ammonia_importance_review_1996"] - }, - { - "id": "bdnf_retention", - "readout": "BDNF or BDNF-proxy recovery", - "method_class": "ELISA or validated immunoassay", - "sample_matrix": "spiked medium and conditioned-medium proxy when available", - "control_requirement": "matrix spike/recovery and no-cartridge stability control", - "evidence_refs": ["bdnf_uniprot_p23560", "bdnf_elisa_cell_culture_vendor"] - }, - { - "id": "ngf_retention", - "readout": "NGF or NGF-proxy recovery", - "method_class": "ELISA or validated immunoassay", - "sample_matrix": "spiked medium and conditioned-medium proxy when available", - "control_requirement": "matrix spike/recovery and no-cartridge stability control", - "evidence_refs": ["ngf_uniprot_p01138", "ngf_elisa_cell_culture_vendor"] - }, - { - "id": "bulk_protein_retention", - "readout": "Albumin, transferrin, and total protein recovery", - "method_class": "protein-specific assay plus total protein assay", - "sample_matrix": "spiked matched medium", - "control_requirement": "no-cartridge stability and unmodified RC baseline", - "evidence_refs": ["low_binding_membrane_media_technical", "low_binding_rc_membrane_vendor"] - }, - { - "id": "medium_integrity", - "readout": "pH, osmolality, conductivity, turbidity, and visible precipitate", - "method_class": "standard media chemistry and visual inspection", - "sample_matrix": "fresh medium blank and all recovery samples", - "control_requirement": "same timepoints for no-module static control", - "evidence_refs": ["organ_chip_perfusion_review_2022"] - }, - { - "id": "module_performance", - "readout": "Flow resistance, bubble events, and apparent fouling/flux decline", - "method_class": "inline flow/pressure proxy and observation log", - "sample_matrix": "all phases", - "control_requirement": "record module geometry, membrane area, flow rate, and exposure time for normalization", - "evidence_refs": ["neural_microfluidic_systems_2023"] - } - ], - "acceptance_gates": [ - { - "id": "blank_integrity_gate", - "criterion": "Fresh-medium blank shows no material-driven pH drift greater than 0.10 pH units, no osmolality or conductivity drift greater than 5 percent versus no-module control, no visible precipitate/turbidity increase, and no unresolved extractables concern.", - "rationale": "No biological follow-up should begin if the cartridge changes base medium chemistry.", - "failure_response": "Change housing, guard, coating, rinse/preconditioning, or membrane source before retesting." - }, - { - "id": "factor_retention_gate", - "criterion": "BDNF/NGF or validated proxy recovery is at least 90 percent versus no-module control, with albumin/transferrin/total protein recovery also at least 90 percent.", - "rationale": "The lead is selected to preserve neural signaling context rather than maximize waste clearance.", - "failure_response": "Lower MWCO, remove or change guard/coating, or reduce adsorption-prone wetted area." - }, - { - "id": "waste_clearance_gate", - "criterion": "Lactate and total ammonia/ammonium decrease at least 25 percent more than no-module control over the chosen exposure window without violating retention or blank-integrity gates.", - "rationale": "The module must show useful waste exchange, not just passive compatibility.", - "failure_response": "Increase membrane area/exposure, consider 10 kDa challenge data, or add a second-stage confined polishing module." - }, - { - "id": "fouling_stability_gate", - "criterion": "Flow resistance or pressure proxy changes less than 20 percent during the test window, and clearance/retention does not degrade across repeat exposure.", - "rationale": "A wetware life-support cartridge must fail visibly and slowly, not silently strip or clog.", - "failure_response": "Improve prefilter, surface modification, geometry, or cleaning/preconditioning strategy." - }, - { - "id": "lead_superiority_gate", - "criterion": "The lead must outperform unmodified 3.5 kDa RC on fouling or protein recovery while remaining safer than the 10 kDa challenge on retention.", - "rationale": "This gate tests whether the zwitterionic lead adds value beyond a simple RC baseline.", - "failure_response": "If unmodified RC performs equally well, downselect to simpler RC-3.5K Guard; if 10 kDa retains factors adequately, rerank the variants." - } - ], - "data_capture_fields": [ - "run_id", - "date", - "operator_or_agent", - "phase", - "timepoint", - "replicate", - "article_id", - "variant_id", - "control_article_id", - "membrane_lot", - "mwco_kda", - "membrane_area_cm2", - "surface_modification", - "prefilter_lot", - "housing_material", - "medium_name", - "medium_lot", - "initial_volume_ml", - "flow_rate_ul_min", - "exposure_time_h", - "temperature_c", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "lactate_initial_mM", - "lactate_final_mM", - "ammonia_initial_uM", - "ammonia_final_uM", - "bdnf_initial_pg_ml", - "bdnf_final_pg_ml", - "ngf_initial_pg_ml", - "ngf_final_pg_ml", - "albumin_initial", - "albumin_final", - "transferrin_initial", - "transferrin_final", - "total_protein_initial", - "total_protein_final", - "flow_resistance_initial", - "flow_resistance_final", - "bubble_events", - "visible_precipitate", - "gate_results", - "source_file", - "notes" - ], - "decision_rules": [ - { - "condition": "All acceptance gates pass for ZRC-ND-3.5M Guard", - "action": "Promote the technology from nominated to validation-passed-for-non-cell-media and design Phase D biological conditioned-medium pilot." - }, - { - "condition": "Blank integrity passes, retention passes, but waste clearance fails", - "action": "Keep 3.5 kDa as retention-safe baseline and optimize membrane area, exposure time, or a confined second-stage polishing module." - }, - { - "condition": "Blank integrity passes, clearance passes, but factor retention fails", - "action": "Reject the lead geometry for CL1-like neural medium and move to lower MWCO or lower-adsorption wetted surfaces." - }, - { - "condition": "Zwitterionic lead does not beat unmodified 3.5 kDa RC", - "action": "Demote the coating to optional; simplify toward RC-3.5K Guard until fouling data justify added chemistry." - }, - { - "condition": "10 kDa challenge passes retention and improves clearance", - "action": "Rerun variant screen with measured retention/clearance values and reconsider 10 kDa as lead." - }, - { - "condition": "Any material blank fails", - "action": "Do not expose cells; replace the suspect material or preconditioning workflow and repeat Phase A." - } - ], - "source_refs": [ - "rc_3p5k_repligen_vendor_spec", - "dialysis_medium_partitioning_2020", - "dialysis_mwco_principle_thermo", - "low_binding_membrane_media_technical", - "low_binding_rc_membrane_vendor", - "polympc_polyprev_retained_pore_2019", - "pda_click_pmpc_membrane_2025", - "zwitterionic_membrane_antifouling_2016", - "zwitterionic_cellulose_acetate_hfm_2026", - "zwitterionic_peptide_membrane_2025", - "psbma_cellulose_si_raft_2013", - "coc_cop_ooc_material_review_2026", - "coc_pdms_sorption_2025", - "lactate_assay_cell_culture_vendor", - "ammonia_assay_cell_culture_vendor", - "bdnf_elisa_cell_culture_vendor", - "ngf_elisa_cell_culture_vendor", - "organ_chip_perfusion_review_2022", - "neural_microfluidic_systems_2023" - ] -} diff --git a/data/zrc_nd_bio_planned_runs.csv b/data/zrc_nd_bio_planned_runs.csv deleted file mode 100644 index 8b463ee..0000000 --- a/data/zrc_nd_bio_planned_runs.csv +++ /dev/null @@ -1,55 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,cell_model,medium_condition,exposure_time_h,viability_metabolic_pct_control,ldh_release_pct_control,neurite_length_pct_control,neurite_branching_pct_control,cell_body_count_pct_control,network_spike_rate_pct_control,burst_rate_pct_control,synchrony_pct_control,morphology_notes,gate_results,source_file,notes -ZRCND-BIO-D1-bio_no_module_control-R1-24h,,limina,D1,24 h,1,bio_no_module_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_no_module_control-R1-72h,,limina,D1,72 h,1,bio_no_module_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_no_module_control-R2-24h,,limina,D1,24 h,2,bio_no_module_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_no_module_control-R2-72h,,limina,D1,72 h,2,bio_no_module_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_no_module_control-R3-24h,,limina,D1,24 h,3,bio_no_module_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_no_module_control-R3-72h,,limina,D1,72 h,3,bio_no_module_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_lead_zrc_nd_3p5m_guard-R1-24h,,limina,D1,24 h,1,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_lead_zrc_nd_3p5m_guard-R1-72h,,limina,D1,72 h,1,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_lead_zrc_nd_3p5m_guard-R2-24h,,limina,D1,24 h,2,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_lead_zrc_nd_3p5m_guard-R2-72h,,limina,D1,72 h,2,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_lead_zrc_nd_3p5m_guard-R3-24h,,limina,D1,24 h,3,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_lead_zrc_nd_3p5m_guard-R3-72h,,limina,D1,72 h,3,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_baseline_rc_3p5m_guard-R1-24h,,limina,D1,24 h,1,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_baseline_rc_3p5m_guard-R1-72h,,limina,D1,72 h,1,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_baseline_rc_3p5m_guard-R2-24h,,limina,D1,24 h,2,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_baseline_rc_3p5m_guard-R2-72h,,limina,D1,72 h,2,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_baseline_rc_3p5m_guard-R3-24h,,limina,D1,24 h,3,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_baseline_rc_3p5m_guard-R3-72h,,limina,D1,72 h,3,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_challenge_zrc_nd_10m_guard-R1-24h,,limina,D1,24 h,1,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_challenge_zrc_nd_10m_guard-R1-72h,,limina,D1,72 h,1,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_challenge_zrc_nd_10m_guard-R2-24h,,limina,D1,24 h,2,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_challenge_zrc_nd_10m_guard-R2-72h,,limina,D1,72 h,2,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_challenge_zrc_nd_10m_guard-R3-24h,,limina,D1,24 h,3,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_challenge_zrc_nd_10m_guard-R3-72h,,limina,D1,72 h,3,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_positive_toxicity_control-R1-24h,,limina,D1,24 h,1,bio_positive_toxicity_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_positive_toxicity_control-R1-72h,,limina,D1,72 h,1,bio_positive_toxicity_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_positive_toxicity_control-R2-24h,,limina,D1,24 h,2,bio_positive_toxicity_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_positive_toxicity_control-R2-72h,,limina,D1,72 h,2,bio_positive_toxicity_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_positive_toxicity_control-R3-24h,,limina,D1,24 h,3,bio_positive_toxicity_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D1-bio_positive_toxicity_control-R3-72h,,limina,D1,72 h,3,bio_positive_toxicity_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D2-bio_no_module_control-R1-72h,,limina,D2,72 h,1,bio_no_module_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D2-bio_no_module_control-R2-72h,,limina,D2,72 h,2,bio_no_module_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D2-bio_no_module_control-R3-72h,,limina,D2,72 h,3,bio_no_module_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D2-bio_lead_zrc_nd_3p5m_guard-R1-72h,,limina,D2,72 h,1,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D2-bio_lead_zrc_nd_3p5m_guard-R2-72h,,limina,D2,72 h,2,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D2-bio_lead_zrc_nd_3p5m_guard-R3-72h,,limina,D2,72 h,3,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D2-bio_baseline_rc_3p5m_guard-R1-72h,,limina,D2,72 h,1,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D2-bio_baseline_rc_3p5m_guard-R2-72h,,limina,D2,72 h,2,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D2-bio_baseline_rc_3p5m_guard-R3-72h,,limina,D2,72 h,3,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D2-bio_challenge_zrc_nd_10m_guard-R1-72h,,limina,D2,72 h,1,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D2-bio_challenge_zrc_nd_10m_guard-R2-72h,,limina,D2,72 h,2,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D2-bio_challenge_zrc_nd_10m_guard-R3-72h,,limina,D2,72 h,3,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D3-bio_no_module_control-R1-72h,,limina,D3,72 h,1,bio_no_module_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D3-bio_no_module_control-R2-72h,,limina,D3,72 h,2,bio_no_module_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D3-bio_no_module_control-R3-72h,,limina,D3,72 h,3,bio_no_module_control,,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D3-bio_lead_zrc_nd_3p5m_guard-R1-72h,,limina,D3,72 h,1,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D3-bio_lead_zrc_nd_3p5m_guard-R2-72h,,limina,D3,72 h,2,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D3-bio_lead_zrc_nd_3p5m_guard-R3-72h,,limina,D3,72 h,3,bio_lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D3-bio_baseline_rc_3p5m_guard-R1-72h,,limina,D3,72 h,1,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D3-bio_baseline_rc_3p5m_guard-R2-72h,,limina,D3,72 h,2,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D3-bio_baseline_rc_3p5m_guard-R3-72h,,limina,D3,72 h,3,bio_baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D3-bio_challenge_zrc_nd_10m_guard-R1-72h,,limina,D3,72 h,1,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D3-bio_challenge_zrc_nd_10m_guard-R2-72h,,limina,D3,72 h,2,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, -ZRCND-BIO-D3-bio_challenge_zrc_nd_10m_guard-R3-72h,,limina,D3,72 h,3,bio_challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,bio_no_module_control,neural_culture_model_tbd,conditioned_medium_or_proxy,,,,,,,,,,,,, diff --git a/data/zrc_nd_bio_results.json b/data/zrc_nd_bio_results.json deleted file mode 100644 index 8cb4424..0000000 --- a/data/zrc_nd_bio_results.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "aggregate_gates": [ - { - "gate": "bio_superiority_gate", - "lead_vs_baseline": "not_evaluable", - "lead_vs_challenge": "not_evaluable", - "metrics": { - "baseline_morphology_min_mean": null, - "baseline_viability_mean": null, - "challenge_function_stability_mean": null, - "challenge_morphology_min_mean": null, - "challenge_viability_mean": null, - "lead_function_stability_mean": null, - "lead_morphology_min_mean": null, - "lead_viability_mean": null - }, - "status": "not_evaluable" - } - ], - "evaluations": [], - "summary": { - "aggregate_bio_superiority": "not_evaluable", - "failed_rows": 0, - "lead_rows": 0, - "passed_lead_replicates_by_phase": {}, - "phase_coverage": [], - "rows": 0, - "status": "no_data" - } -} \ No newline at end of file diff --git a/data/zrc_nd_bio_runs_template.csv b/data/zrc_nd_bio_runs_template.csv deleted file mode 100644 index d7a3615..0000000 --- a/data/zrc_nd_bio_runs_template.csv +++ /dev/null @@ -1 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,cell_model,medium_condition,exposure_time_h,viability_metabolic_pct_control,ldh_release_pct_control,neurite_length_pct_control,neurite_branching_pct_control,cell_body_count_pct_control,network_spike_rate_pct_control,burst_rate_pct_control,synchrony_pct_control,morphology_notes,gate_results,source_file,notes diff --git a/data/zrc_nd_biological_followup_package.json b/data/zrc_nd_biological_followup_package.json deleted file mode 100644 index 1a23e73..0000000 --- a/data/zrc_nd_biological_followup_package.json +++ /dev/null @@ -1,150 +0,0 @@ -{ - "id": "zrc_nd_bio_followup_v0_1", - "parent_validation_package": "zrc_nd_3p5k_guard_validation_v0_1", - "lead_variant_id": "zrc_nd_3p5k_mpc_guard", - "title": "ZRC-ND Phase D biological follow-up package", - "objective": "Determine whether ZRC-ND-conditioned medium that has passed non-cell chemistry gates preserves neural culture health, morphology, and functional activity well enough to support a first suitability claim.", - "scope": { - "stage": "biological follow-up after non-cell validation", - "entry_condition": "Run only after Phase A/B/C non-cell gates pass for the lead article.", - "sample_type": "media or conditioned-media proxy exposed to the ZRC-ND lead, unmodified 3.5 kDa baseline, 10 kDa challenge, and no-module controls", - "claim_after_success": "Supports suitability for biological conditioned-medium pilot use, not final long-duration CL1 deployment.", - "not_in_scope": "Regulatory approval, chronic manufacturing validation, direct cell-contact material certification, and organismal safety." - }, - "test_articles": [ - { - "id": "bio_no_module_control", - "source_article_id": "no_module_static_control", - "variant_id": null, - "role": "negative/control medium" - }, - { - "id": "bio_lead_zrc_nd_3p5m_guard", - "source_article_id": "lead_zrc_nd_3p5m_guard", - "variant_id": "zrc_nd_3p5k_mpc_guard", - "role": "lead biological challenge" - }, - { - "id": "bio_baseline_rc_3p5m_guard", - "source_article_id": "baseline_rc_3p5m_guard", - "variant_id": "zrc_nd_3p5k_unmodified_guard", - "role": "unmodified baseline biological comparator" - }, - { - "id": "bio_challenge_zrc_nd_10m_guard", - "source_article_id": "challenge_zrc_nd_10m_guard", - "variant_id": "zrc_nd_10k_mpc_guard", - "role": "high-clearance retention-risk biological comparator" - }, - { - "id": "bio_positive_toxicity_control", - "source_article_id": null, - "variant_id": null, - "role": "assay sensitivity control" - } - ], - "run_matrix": [ - { - "phase": "D1", - "name": "Extract or conditioned-medium viability screen", - "purpose": "Detect acute material-conditioned medium toxicity before morphology or network claims.", - "articles": ["bio_no_module_control", "bio_lead_zrc_nd_3p5m_guard", "bio_baseline_rc_3p5m_guard", "bio_challenge_zrc_nd_10m_guard", "bio_positive_toxicity_control"], - "minimum_replicates": 3, - "timepoints": ["24 h", "72 h"], - "must_pass_before": "D2" - }, - { - "phase": "D2", - "name": "Neurite and morphology screen", - "purpose": "Check whether ZRC-ND-conditioned medium preserves neural morphology and outgrowth relative to no-module control.", - "articles": ["bio_no_module_control", "bio_lead_zrc_nd_3p5m_guard", "bio_baseline_rc_3p5m_guard", "bio_challenge_zrc_nd_10m_guard"], - "minimum_replicates": 3, - "timepoints": ["72 h"], - "must_pass_before": "D3" - }, - { - "phase": "D3", - "name": "Network activity stability screen", - "purpose": "Check whether ZRC-ND-conditioned medium preserves MEA or equivalent functional network activity relative to no-module control.", - "articles": ["bio_no_module_control", "bio_lead_zrc_nd_3p5m_guard", "bio_baseline_rc_3p5m_guard", "bio_challenge_zrc_nd_10m_guard"], - "minimum_replicates": 3, - "timepoints": ["72 h"], - "must_pass_before": "suitability claim" - } - ], - "assay_panel": [ - { - "id": "viability_toxicity", - "readout": "Metabolic viability and LDH/cell lysis relative to no-module control", - "method_class": "metabolic viability assay plus LDH or equivalent cytotoxicity assay", - "evidence_refs": ["iso_10993_5_cytotoxicity_extract_fda", "dnt_nam_viability_neurite_mea_2022"] - }, - { - "id": "neurite_morphology", - "readout": "Neurite length/branching and cell-body count relative to no-module control", - "method_class": "high-content imaging or equivalent neural morphology assay", - "evidence_refs": ["dnt_nam_viability_neurite_mea_2022"] - }, - { - "id": "network_activity", - "readout": "MEA spike rate, burst rate, and synchrony relative to no-module control", - "method_class": "MEA or equivalent functional network activity assay", - "evidence_refs": ["neuronal_network_material_biocompatibility_mea_2013", "dnt_nam_viability_neurite_mea_2022"] - } - ], - "acceptance_gates": [ - { - "id": "bio_viability_gate", - "criterion": "Lead-conditioned medium keeps metabolic viability >= 90 percent of no-module control and LDH/cell lysis <= 120 percent of no-module control.", - "failure_response": "Do not claim suitability; investigate extractables, coating residues, medium drift, or cartridge preconditioning." - }, - { - "id": "bio_morphology_gate", - "criterion": "Lead-conditioned medium keeps neurite length and branching >= 85 percent of no-module control and cell-body count >= 90 percent.", - "failure_response": "Do not claim neural suitability; repeat with lower exposure, extra rinsing, or simplified unmodified RC baseline." - }, - { - "id": "bio_function_gate", - "criterion": "Lead-conditioned medium keeps spike rate, burst rate, and synchrony within 70 to 130 percent of no-module control, unless a domain-specific assay defines a tighter gate.", - "failure_response": "Do not claim CL1-like functional suitability; preserve the candidate as chemistry-compatible only." - }, - { - "id": "bio_superiority_gate", - "criterion": "Lead is not worse than unmodified 3.5 kDa baseline on viability/morphology and is safer than the 10 kDa challenge on functional or morphology retention.", - "failure_response": "Reconsider whether the coating route adds value or whether the MWCO challenge is too disruptive." - } - ], - "data_capture_fields": [ - "run_id", - "date", - "operator_or_agent", - "phase", - "timepoint", - "replicate", - "article_id", - "variant_id", - "control_article_id", - "cell_model", - "medium_condition", - "exposure_time_h", - "viability_metabolic_pct_control", - "ldh_release_pct_control", - "neurite_length_pct_control", - "neurite_branching_pct_control", - "cell_body_count_pct_control", - "network_spike_rate_pct_control", - "burst_rate_pct_control", - "synchrony_pct_control", - "morphology_notes", - "gate_results", - "source_file", - "notes" - ], - "source_refs": [ - "iso_10993_5_cytotoxicity_extract_fda", - "neuronal_network_material_biocompatibility_mea_2013", - "dnt_nam_viability_neurite_mea_2022", - "neural_microfluidic_systems_2023", - "organ_chip_perfusion_review_2022" - ] -} diff --git a/data/zrc_nd_bom.json b/data/zrc_nd_bom.json deleted file mode 100644 index 411ee10..0000000 --- a/data/zrc_nd_bom.json +++ /dev/null @@ -1,156 +0,0 @@ -{ - "id": "zrc_nd_3p5m_guard_bom_v0_1", - "parent_validation_package": "zrc_nd_3p5k_guard_validation_v0_1", - "title": "ZRC-ND-3.5M Guard minimum validation BOM", - "objective": "Define a procurement-ready minimum bill of materials for non-cell validation of the ZRC-ND-3.5M Guard lead without implying that any item is already proven compatible with CL1-like neural wetware.", - "items": [ - { - "id": "rc_3p5k_primary_membrane", - "category": "membrane", - "role": "lead primary exchange membrane", - "required_spec": "Regenerated cellulose dialysis membrane or tubing, nominal 3.5 kDa MWCO, low protein binding, aqueous medium compatible, enough area for coupon replicates.", - "anchor_product": "Repligen Spectra/Por 3 Standard Grade RC, 3.5 kD MWCO trial kit or equivalent RC membrane.", - "anchor_source_url": "https://store.repligen.com/products/spectra-por-3-dialysis-trial-kit", - "accept_equivalents": true, - "reject_if": "Cellulose ester only, unknown MWCO, unknown preservative, high protein binding, or format cannot support replicated coupon testing.", - "evidence_refs": ["rc_3p5k_repligen_vendor_spec", "dialysis_mwco_principle_thermo", "low_binding_rc_membrane_vendor"] - }, - { - "id": "rc_10k_challenge_membrane", - "category": "membrane", - "role": "high-clearance challenge comparator", - "required_spec": "Regenerated cellulose dialysis membrane or tubing, nominal 10 kDa MWCO, same general geometry class as the 3.5 kDa membrane when possible.", - "anchor_product": "Repligen Spectra/Por 7 pre-treated Standard Grade RC, 10 kD MWCO or equivalent matched RC membrane.", - "anchor_source_url": "https://www.repligen.com/products/dialysis/spectrapor-dialysis-tubing-and-membranes/spectrapor-pre-treated-standard-grade-rc-dialysis-tubing-and-trial-kits", - "accept_equivalents": true, - "reject_if": "Cannot be compared by membrane area/exposure to the 3.5 kDa lead.", - "evidence_refs": ["dialysis_mwco_principle_thermo", "bdnf_uniprot_p23560", "ngf_uniprot_p01138"] - }, - { - "id": "sfca_guard_filter", - "category": "prefilter", - "role": "low-binding debris guard", - "required_spec": "Sterile 0.22 um SFCA syringe or inline filter with low protein binding, low extractables/leachables, and low hold-up volume.", - "anchor_product": "CELLTREAT 0.22 um sterile SFCA syringe filter or equivalent low-binding SFCA guard.", - "anchor_source_url": "https://www.celltreat.com/product/229765/", - "accept_equivalents": true, - "reject_if": "High protein binding, surfactant leaching concern, large hold-up volume, or unknown membrane material.", - "evidence_refs": ["low_binding_membrane_media_technical"] - }, - { - "id": "pes_guard_filter_backup", - "category": "prefilter", - "role": "low-binding debris guard backup", - "required_spec": "Sterile 0.22 um PES syringe or inline filter with low protein binding and cell-culture media compatibility.", - "anchor_product": "Sterile Millex or equivalent PES 0.22 um low-binding syringe filter.", - "anchor_source_url": "https://www.fishersci.com/content/dam/fishersci/en_US/documents/programs/scientific/technical-documents/data-sheets/emd-millipore-sterile-millex-syringe-filters-data-sheet.pdf", - "accept_equivalents": true, - "reject_if": "Binding/hold-up is not characterized enough for trophic-factor recovery testing.", - "evidence_refs": ["low_binding_membrane_media_technical"] - }, - { - "id": "coc_observation_housing", - "category": "housing", - "role": "observed side-stream coupon cartridge or screening chip", - "required_spec": "COC/COP wetted housing or chip with optical access, mini-Luer/Luer-style ports, low dead volume, and no PDMS in the primary wetted path.", - "anchor_product": "COC microfluidic chip with Mini Luer ports, such as a ChipShop/Darwin or Sigma COC screening chip.", - "anchor_source_url": "https://darwin-microfluidics.com/products/open-4-straight-channels-chip-mini-luer", - "accept_equivalents": true, - "reject_if": "PDMS primary wetted path, opaque housing, unknown adhesive exposure, or no way to observe bubbles/precipitate.", - "evidence_refs": ["organ_chip_perfusion_review_2022", "coc_cop_ooc_material_review_2026", "coc_pdms_sorption_2025"] - }, - { - "id": "dopamine_hcl_pda_primer", - "category": "coating_reagent", - "role": "PDA primer precursor for controlled surface-only route", - "required_spec": "Dopamine hydrochloride or equivalent PDA precursor suitable for research coating trials, with lot documentation and no direct cell exposure before blank testing.", - "anchor_product": "Sigma-Aldrich dopamine hydrochloride or equivalent research-grade dopamine hydrochloride.", - "anchor_source_url": "https://www.sigmaaldrich.com/US/en/product/sigma/h8502-", - "accept_equivalents": true, - "reject_if": "No lot/COA documentation, unknown purity, or incompatible contaminants for media blank testing.", - "evidence_refs": ["polympc_polyprev_retained_pore_2019", "pda_click_pmpc_membrane_2025"] - }, - { - "id": "mpc_monomer_or_polympc", - "category": "coating_reagent", - "role": "zwitterionic MPC chemistry source", - "required_spec": "MPC monomer or preformed polyMPC/PMPC compatible with surface-only coating development; document inhibitor, purity, polymerization or immobilization route.", - "anchor_product": "Sigma-Aldrich 2-Methacryloyloxyethyl phosphorylcholine, 97%, or equivalent MPC source.", - "anchor_source_url": "https://www.sigmaaldrich.com/US/en/product/aldrich/730114", - "accept_equivalents": true, - "reject_if": "Unknown inhibitor/purity, no route to remove soluble residuals, or no way to check extractables after coating.", - "evidence_refs": ["polympc_polyprev_retained_pore_2019", "pda_click_pmpc_membrane_2025", "zwitterionic_membrane_antifouling_2016"] - }, - { - "id": "lactate_assay", - "category": "assay", - "role": "waste-clearance readout", - "required_spec": "Quantitative lactate assay compatible with cell culture supernatant or matched medium, with medium-matched standards/spike recovery.", - "anchor_product": "Abcam L-Lactate Assay Kit ab65331 or equivalent enzymatic/colorimetric lactate assay.", - "anchor_source_url": "https://www.abcam.com/en-us/products/assay-kits/l-lactate-assay-kit-colorimetric-ab65331", - "accept_equivalents": true, - "reject_if": "No demonstrated compatibility with culture media or no workable spike/recovery controls.", - "evidence_refs": ["lactate_assay_cell_culture_vendor"] - }, - { - "id": "ammonia_assay", - "category": "assay", - "role": "waste-clearance readout", - "required_spec": "Quantitative ammonia/ammonium assay compatible with cell culture media or matched medium standards.", - "anchor_product": "Abcam Ammonia Assay Kit ab83360 or equivalent ammonia/ammonium assay.", - "anchor_source_url": "https://www.abcam.com/en-us/products/assay-kits/ammonia-assay-kit-ab83360", - "accept_equivalents": true, - "reject_if": "Cannot run pH/matrix-matched standards or cannot distinguish matrix interference.", - "evidence_refs": ["ammonia_assay_cell_culture_vendor", "ammonia_importance_review_1996"] - }, - { - "id": "bdnf_elisa", - "category": "assay", - "role": "trophic-factor retention readout", - "required_spec": "BDNF ELISA or validated immunoassay compatible with the selected species/proxy and cell culture supernatant matrix.", - "anchor_product": "Abcam Human BDNF ELISA Kit ab212166 or species-matched equivalent.", - "anchor_source_url": "https://www.abcam.com/en-us/products/elisa-kits/human-bdnf-elisa-kit-ab212166", - "accept_equivalents": true, - "reject_if": "Wrong species/form specificity or no matrix recovery plan.", - "evidence_refs": ["bdnf_uniprot_p23560", "bdnf_elisa_cell_culture_vendor"] - }, - { - "id": "ngf_elisa", - "category": "assay", - "role": "trophic-factor retention readout", - "required_spec": "NGF ELISA or validated immunoassay compatible with the selected species/proxy and cell culture supernatant matrix.", - "anchor_product": "R&D Systems Human beta-NGF DuoSet ELISA DY256 or species-matched equivalent.", - "anchor_source_url": "https://www.rndsystems.com/products/human-beta-ngf-duoset-elisa_dy256", - "accept_equivalents": true, - "reject_if": "Wrong species/form specificity or no matrix recovery plan.", - "evidence_refs": ["ngf_uniprot_p01138", "ngf_elisa_cell_culture_vendor"] - }, - { - "id": "media_integrity_readouts", - "category": "instrumentation", - "role": "blank-integrity and silent-failure readouts", - "required_spec": "pH, conductivity, osmolality, turbidity/visual inspection, and flow/pressure proxy readouts sufficient to evaluate gate thresholds.", - "anchor_product": "Lab pH meter, conductivity meter, osmometer access, plate reader or turbidity/visual log, and simple flow/pressure monitoring.", - "anchor_source_url": "", - "accept_equivalents": true, - "reject_if": "Cannot measure pH/osmolality/conductivity drift relative to no-module control.", - "evidence_refs": ["organ_chip_perfusion_review_2022", "neural_microfluidic_systems_2023"] - } - ], - "source_refs": [ - "rc_3p5k_repligen_vendor_spec", - "dialysis_mwco_principle_thermo", - "low_binding_membrane_media_technical", - "polympc_polyprev_retained_pore_2019", - "pda_click_pmpc_membrane_2025", - "zwitterionic_membrane_antifouling_2016", - "organ_chip_perfusion_review_2022", - "coc_cop_ooc_material_review_2026", - "coc_pdms_sorption_2025", - "lactate_assay_cell_culture_vendor", - "ammonia_assay_cell_culture_vendor", - "bdnf_elisa_cell_culture_vendor", - "ngf_elisa_cell_culture_vendor", - "neural_microfluidic_systems_2023" - ] -} diff --git a/data/zrc_nd_coating_route_scores.json b/data/zrc_nd_coating_route_scores.json deleted file mode 100644 index e3d8626..0000000 --- a/data/zrc_nd_coating_route_scores.json +++ /dev/null @@ -1,176 +0,0 @@ -[ - { - "advantages": [ - "Directly addresses the low-MWCO pore-clogging risk by prioritizing surface-only deposition.", - "Uses MPC-like zwitterionic chemistry already aligned with the ZRC-ND lead.", - "Can be screened on coupons against an unmodified RC control before cartridge commitment." - ], - "chemistry": "Thin PDA primer plus polyMPC antifouling layer, deposited with pore-protection/backflow or equivalent surface-only control.", - "composite_score": 0.727, - "evidence_refs": [ - "polympc_polyprev_retained_pore_2019", - "pda_click_pmpc_membrane_2025", - "zwitterionic_membrane_antifouling_2016" - ], - "gate_failures": [], - "id": "pda_polympc_polyprev_surface_only", - "intended_role": "first coating route for ZRC-ND-3.5M Guard coupon testing", - "metrics": { - "antifouling_evidence": 0.82, - "cellulose_relevance": 0.55, - "coating_durability": 0.6, - "extractables_safety": 0.62, - "implementation_feasibility": 0.7, - "novelty_upside": 0.75, - "pore_preservation": 0.88 - }, - "name": "PDA/polyMPC surface-only controlled deposition", - "risks": [ - "PDA/polyMPC extractables and color/adsorption effects must be checked.", - "Evidence is from ultrafiltration membranes, not 3.5 kDa regenerated cellulose.", - "Requires process control to keep coating out of pores." - ], - "route_class": "surface_only_pda_polympc", - "status": "lead_route" - }, - { - "advantages": [ - "Separates surface primer from polymer immobilization and can tune brush density.", - "Recent membrane evidence includes dynamic fouling evaluation.", - "Thermal annealing may improve PDA stability." - ], - "chemistry": "PDA primer followed by click-mediated PMPC immobilization with controlled polymer density.", - "composite_score": 0.668, - "evidence_refs": [ - "pda_click_pmpc_membrane_2025", - "zwitterionic_membrane_antifouling_2016" - ], - "gate_failures": [], - "id": "pda_click_pmpc_grafting_to", - "intended_role": "density-controlled backup route for coupon testing", - "metrics": { - "antifouling_evidence": 0.8, - "cellulose_relevance": 0.45, - "coating_durability": 0.78, - "extractables_safety": 0.58, - "implementation_feasibility": 0.55, - "novelty_upside": 0.82, - "pore_preservation": 0.72 - }, - "name": "PDA-click PMPC grafting-to", - "risks": [ - "Click chemistry and PDA annealing add process complexity.", - "Substrate transfer to 3.5 kDa RC is unproven.", - "Pore access must be restricted during coating." - ], - "route_class": "pda_click_grafting_to", - "status": "screen" - }, - { - "advantages": [ - "Recent cellulose-family membrane evidence supports combining MPC-like chemistry with membrane transport.", - "Crosslinked brush architecture may improve durability relative to adsorbed coatings.", - "High novelty for a neural-medium side-stream cartridge." - ], - "chemistry": "Crosslinked MPC-silane copolymer brush inspired by poly(MPC-silane) modification of cellulose-family hollow-fiber membranes.", - "composite_score": 0.734, - "evidence_refs": [ - "zwitterionic_cellulose_acetate_hfm_2026", - "zwitterionic_membrane_antifouling_2016" - ], - "gate_failures": [ - "implementation_feasibility" - ], - "id": "pmmmsi_mpc_silane_crosslinked_brush", - "intended_role": "advanced durability backup if PDA/polyMPC passes retention but fails stability", - "metrics": { - "antifouling_evidence": 0.86, - "cellulose_relevance": 0.7, - "coating_durability": 0.82, - "extractables_safety": 0.6, - "implementation_feasibility": 0.52, - "novelty_upside": 0.9, - "pore_preservation": 0.75 - }, - "name": "PMMMSi MPC-silane crosslinked brush", - "risks": [ - "Evidence is on cellulose acetate hollow-fiber membranes, not low-MWCO regenerated cellulose.", - "Polymer synthesis and thermal/process steps increase implementation burden.", - "Crosslinked brush can reduce permeability or shift effective MWCO." - ], - "route_class": "crosslinked_mpc_silane", - "status": "screen" - }, - { - "advantages": [ - "Direct cellulose-membrane grafting evidence.", - "Strong sulfobetaine hydration layer can reduce protein and cell adhesion.", - "Useful benchmark if MPC routes fail antifouling." - ], - "chemistry": "Surface-initiated RAFT grafting of polysulfobetaine brushes from cellulose membranes.", - "composite_score": 0.678, - "evidence_refs": [ - "psbma_cellulose_si_raft_2013", - "zwitterionic_membrane_antifouling_2016" - ], - "gate_failures": [ - "pore_preservation", - "implementation_feasibility", - "extractables_safety" - ], - "id": "psbma_si_raft_cellulose_brush", - "intended_role": "outsourced or later-stage high-antifouling route", - "metrics": { - "antifouling_evidence": 0.84, - "cellulose_relevance": 0.88, - "coating_durability": 0.78, - "extractables_safety": 0.48, - "implementation_feasibility": 0.4, - "novelty_upside": 0.7, - "pore_preservation": 0.6 - }, - "name": "PSBMA SI-RAFT cellulose brush", - "risks": [ - "Controlled polymerization is more complex than first-pass coupon coating.", - "Initiator and chain-transfer residues add extractables risk.", - "Brush growth may narrow pores and alter MWCO unless tightly controlled." - ], - "route_class": "cellulose_grafted_sulfobetaine", - "status": "screen" - }, - { - "advantages": [ - "Lowest extractables and process risk.", - "Preserves nominal MWCO best.", - "Tests whether zwitterionic coating is actually necessary." - ], - "chemistry": "No active antifouling coating; use low-binding regenerated cellulose and guard prefilter only.", - "composite_score": 0.787, - "evidence_refs": [ - "low_binding_rc_membrane_vendor", - "rc_3p5k_repligen_vendor_spec" - ], - "gate_failures": [ - "antifouling_evidence" - ], - "id": "unmodified_rc_surface_control", - "intended_role": "mandatory control and potential simplification path", - "metrics": { - "antifouling_evidence": 0.5, - "cellulose_relevance": 0.9, - "coating_durability": 0.8, - "extractables_safety": 0.82, - "implementation_feasibility": 0.95, - "novelty_upside": 0.25, - "pore_preservation": 0.98 - }, - "name": "Unmodified regenerated-cellulose surface control", - "risks": [ - "May foul under protein-rich conditioned medium.", - "Less novel and less protective against long-duration adsorption.", - "Could underperform once exposed to debris and secretome-rich medium." - ], - "route_class": "no_coating_control", - "status": "control" - } -] \ No newline at end of file diff --git a/data/zrc_nd_coating_routes.json b/data/zrc_nd_coating_routes.json deleted file mode 100644 index e3c7c79..0000000 --- a/data/zrc_nd_coating_routes.json +++ /dev/null @@ -1,158 +0,0 @@ -[ - { - "id": "pda_polympc_polyprev_surface_only", - "name": "PDA/polyMPC surface-only controlled deposition", - "route_class": "surface_only_pda_polympc", - "chemistry": "Thin PDA primer plus polyMPC antifouling layer, deposited with pore-protection/backflow or equivalent surface-only control.", - "intended_role": "first coating route for ZRC-ND-3.5M Guard coupon testing", - "target_surfaces": ["regenerated_cellulose_membrane_coupon", "coc_cop_or_peek_housing_coupon"], - "advantages": [ - "Directly addresses the low-MWCO pore-clogging risk by prioritizing surface-only deposition.", - "Uses MPC-like zwitterionic chemistry already aligned with the ZRC-ND lead.", - "Can be screened on coupons against an unmodified RC control before cartridge commitment." - ], - "risks": [ - "PDA/polyMPC extractables and color/adsorption effects must be checked.", - "Evidence is from ultrafiltration membranes, not 3.5 kDa regenerated cellulose.", - "Requires process control to keep coating out of pores." - ], - "metrics": { - "pore_preservation": 0.88, - "antifouling_evidence": 0.82, - "cellulose_relevance": 0.55, - "implementation_feasibility": 0.70, - "extractables_safety": 0.62, - "coating_durability": 0.60, - "novelty_upside": 0.75 - }, - "evidence_refs": [ - "polympc_polyprev_retained_pore_2019", - "pda_click_pmpc_membrane_2025", - "zwitterionic_membrane_antifouling_2016" - ] - }, - { - "id": "pmmmsi_mpc_silane_crosslinked_brush", - "name": "PMMMSi MPC-silane crosslinked brush", - "route_class": "crosslinked_mpc_silane", - "chemistry": "Crosslinked MPC-silane copolymer brush inspired by poly(MPC-silane) modification of cellulose-family hollow-fiber membranes.", - "intended_role": "advanced durability backup if PDA/polyMPC passes retention but fails stability", - "target_surfaces": ["cellulose_family_membrane_coupon", "hollow_fiber_or_flat_coupon"], - "advantages": [ - "Recent cellulose-family membrane evidence supports combining MPC-like chemistry with membrane transport.", - "Crosslinked brush architecture may improve durability relative to adsorbed coatings.", - "High novelty for a neural-medium side-stream cartridge." - ], - "risks": [ - "Evidence is on cellulose acetate hollow-fiber membranes, not low-MWCO regenerated cellulose.", - "Polymer synthesis and thermal/process steps increase implementation burden.", - "Crosslinked brush can reduce permeability or shift effective MWCO." - ], - "metrics": { - "pore_preservation": 0.75, - "antifouling_evidence": 0.86, - "cellulose_relevance": 0.70, - "implementation_feasibility": 0.52, - "extractables_safety": 0.60, - "coating_durability": 0.82, - "novelty_upside": 0.90 - }, - "evidence_refs": [ - "zwitterionic_cellulose_acetate_hfm_2026", - "zwitterionic_membrane_antifouling_2016" - ] - }, - { - "id": "psbma_si_raft_cellulose_brush", - "name": "PSBMA SI-RAFT cellulose brush", - "route_class": "cellulose_grafted_sulfobetaine", - "chemistry": "Surface-initiated RAFT grafting of polysulfobetaine brushes from cellulose membranes.", - "intended_role": "outsourced or later-stage high-antifouling route", - "target_surfaces": ["cellulose_membrane_coupon"], - "advantages": [ - "Direct cellulose-membrane grafting evidence.", - "Strong sulfobetaine hydration layer can reduce protein and cell adhesion.", - "Useful benchmark if MPC routes fail antifouling." - ], - "risks": [ - "Controlled polymerization is more complex than first-pass coupon coating.", - "Initiator and chain-transfer residues add extractables risk.", - "Brush growth may narrow pores and alter MWCO unless tightly controlled." - ], - "metrics": { - "pore_preservation": 0.60, - "antifouling_evidence": 0.84, - "cellulose_relevance": 0.88, - "implementation_feasibility": 0.40, - "extractables_safety": 0.48, - "coating_durability": 0.78, - "novelty_upside": 0.70 - }, - "evidence_refs": [ - "psbma_cellulose_si_raft_2013", - "zwitterionic_membrane_antifouling_2016" - ] - }, - { - "id": "pda_click_pmpc_grafting_to", - "name": "PDA-click PMPC grafting-to", - "route_class": "pda_click_grafting_to", - "chemistry": "PDA primer followed by click-mediated PMPC immobilization with controlled polymer density.", - "intended_role": "density-controlled backup route for coupon testing", - "target_surfaces": ["membrane_coupon", "housing_coupon"], - "advantages": [ - "Separates surface primer from polymer immobilization and can tune brush density.", - "Recent membrane evidence includes dynamic fouling evaluation.", - "Thermal annealing may improve PDA stability." - ], - "risks": [ - "Click chemistry and PDA annealing add process complexity.", - "Substrate transfer to 3.5 kDa RC is unproven.", - "Pore access must be restricted during coating." - ], - "metrics": { - "pore_preservation": 0.72, - "antifouling_evidence": 0.80, - "cellulose_relevance": 0.45, - "implementation_feasibility": 0.55, - "extractables_safety": 0.58, - "coating_durability": 0.78, - "novelty_upside": 0.82 - }, - "evidence_refs": [ - "pda_click_pmpc_membrane_2025", - "zwitterionic_membrane_antifouling_2016" - ] - }, - { - "id": "unmodified_rc_surface_control", - "name": "Unmodified regenerated-cellulose surface control", - "route_class": "no_coating_control", - "chemistry": "No active antifouling coating; use low-binding regenerated cellulose and guard prefilter only.", - "intended_role": "mandatory control and potential simplification path", - "target_surfaces": ["regenerated_cellulose_membrane_coupon"], - "advantages": [ - "Lowest extractables and process risk.", - "Preserves nominal MWCO best.", - "Tests whether zwitterionic coating is actually necessary." - ], - "risks": [ - "May foul under protein-rich conditioned medium.", - "Less novel and less protective against long-duration adsorption.", - "Could underperform once exposed to debris and secretome-rich medium." - ], - "metrics": { - "pore_preservation": 0.98, - "antifouling_evidence": 0.50, - "cellulose_relevance": 0.90, - "implementation_feasibility": 0.95, - "extractables_safety": 0.82, - "coating_durability": 0.80, - "novelty_upside": 0.25 - }, - "evidence_refs": [ - "low_binding_rc_membrane_vendor", - "rc_3p5k_repligen_vendor_spec" - ] - } -] diff --git a/data/zrc_nd_execution_queue.csv b/data/zrc_nd_execution_queue.csv deleted file mode 100644 index ec57009..0000000 --- a/data/zrc_nd_execution_queue.csv +++ /dev/null @@ -1,133 +0,0 @@ -queue_order,run_id,phase,timepoint,replicate,article_id,variant_id,gate_role,readout_groups,must_have_fields,matched_control_key -1,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,baseline_snapshot,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|0 h|1 -2,ZRCND-A-baseline_rc_3p5m_guard-R1-1h,A,1 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|1 h|1 -3,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|24 h|1 -4,ZRCND-A-baseline_rc_3p5m_guard-R1-4h,A,4 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|4 h|1 -5,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,baseline_snapshot,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|0 h|1 -6,ZRCND-A-challenge_zrc_nd_10m_guard-R1-1h,A,1 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|1 h|1 -7,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|24 h|1 -8,ZRCND-A-challenge_zrc_nd_10m_guard-R1-4h,A,4 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|4 h|1 -9,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,baseline_snapshot,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|0 h|1 -10,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-1h,A,1 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|1 h|1 -11,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|24 h|1 -12,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-4h,A,4 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|4 h|1 -13,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,,matched_control,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate,A|0 h|1 -14,ZRCND-A-no_module_static_control-R1-1h,A,1 h,1,no_module_static_control,,matched_control,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate,A|1 h|1 -15,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,,matched_control,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate,A|24 h|1 -16,ZRCND-A-no_module_static_control-R1-4h,A,4 h,1,no_module_static_control,,matched_control,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate,A|4 h|1 -17,ZRCND-A-baseline_rc_3p5m_guard-R2-0h,A,0 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,baseline_snapshot,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|0 h|2 -18,ZRCND-A-baseline_rc_3p5m_guard-R2-1h,A,1 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|1 h|2 -19,ZRCND-A-baseline_rc_3p5m_guard-R2-24h,A,24 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|24 h|2 -20,ZRCND-A-baseline_rc_3p5m_guard-R2-4h,A,4 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|4 h|2 -21,ZRCND-A-challenge_zrc_nd_10m_guard-R2-0h,A,0 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,baseline_snapshot,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|0 h|2 -22,ZRCND-A-challenge_zrc_nd_10m_guard-R2-1h,A,1 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|1 h|2 -23,ZRCND-A-challenge_zrc_nd_10m_guard-R2-24h,A,24 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|24 h|2 -24,ZRCND-A-challenge_zrc_nd_10m_guard-R2-4h,A,4 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|4 h|2 -25,ZRCND-A-lead_zrc_nd_3p5m_guard-R2-0h,A,0 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,baseline_snapshot,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|0 h|2 -26,ZRCND-A-lead_zrc_nd_3p5m_guard-R2-1h,A,1 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|1 h|2 -27,ZRCND-A-lead_zrc_nd_3p5m_guard-R2-24h,A,24 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|24 h|2 -28,ZRCND-A-lead_zrc_nd_3p5m_guard-R2-4h,A,4 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|4 h|2 -29,ZRCND-A-no_module_static_control-R2-0h,A,0 h,2,no_module_static_control,,matched_control,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate,A|0 h|2 -30,ZRCND-A-no_module_static_control-R2-1h,A,1 h,2,no_module_static_control,,matched_control,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate,A|1 h|2 -31,ZRCND-A-no_module_static_control-R2-24h,A,24 h,2,no_module_static_control,,matched_control,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate,A|24 h|2 -32,ZRCND-A-no_module_static_control-R2-4h,A,4 h,2,no_module_static_control,,matched_control,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate,A|4 h|2 -33,ZRCND-A-baseline_rc_3p5m_guard-R3-0h,A,0 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,baseline_snapshot,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|0 h|3 -34,ZRCND-A-baseline_rc_3p5m_guard-R3-1h,A,1 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|1 h|3 -35,ZRCND-A-baseline_rc_3p5m_guard-R3-24h,A,24 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|24 h|3 -36,ZRCND-A-baseline_rc_3p5m_guard-R3-4h,A,4 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|4 h|3 -37,ZRCND-A-challenge_zrc_nd_10m_guard-R3-0h,A,0 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,baseline_snapshot,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|0 h|3 -38,ZRCND-A-challenge_zrc_nd_10m_guard-R3-1h,A,1 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|1 h|3 -39,ZRCND-A-challenge_zrc_nd_10m_guard-R3-24h,A,24 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|24 h|3 -40,ZRCND-A-challenge_zrc_nd_10m_guard-R3-4h,A,4 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|4 h|3 -41,ZRCND-A-lead_zrc_nd_3p5m_guard-R3-0h,A,0 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,baseline_snapshot,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|0 h|3 -42,ZRCND-A-lead_zrc_nd_3p5m_guard-R3-1h,A,1 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|1 h|3 -43,ZRCND-A-lead_zrc_nd_3p5m_guard-R3-24h,A,24 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|24 h|3 -44,ZRCND-A-lead_zrc_nd_3p5m_guard-R3-4h,A,4 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate,A|4 h|3 -45,ZRCND-A-no_module_static_control-R3-0h,A,0 h,3,no_module_static_control,,matched_control,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate,A|0 h|3 -46,ZRCND-A-no_module_static_control-R3-1h,A,1 h,3,no_module_static_control,,matched_control,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate,A|1 h|3 -47,ZRCND-A-no_module_static_control-R3-24h,A,24 h,3,no_module_static_control,,matched_control,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate,A|24 h|3 -48,ZRCND-A-no_module_static_control-R3-4h,A,4 h,3,no_module_static_control,,matched_control,medium_integrity,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate,A|4 h|3 -49,ZRCND-B-baseline_rc_3p5m_guard-R1-0h,B,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|0 h|1 -50,ZRCND-B-baseline_rc_3p5m_guard-R1-1h,B,1 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|1 h|1 -51,ZRCND-B-baseline_rc_3p5m_guard-R1-24h,B,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|24 h|1 -52,ZRCND-B-baseline_rc_3p5m_guard-R1-4h,B,4 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|4 h|1 -53,ZRCND-B-challenge_zrc_nd_10m_guard-R1-0h,B,0 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|0 h|1 -54,ZRCND-B-challenge_zrc_nd_10m_guard-R1-1h,B,1 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|1 h|1 -55,ZRCND-B-challenge_zrc_nd_10m_guard-R1-24h,B,24 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|24 h|1 -56,ZRCND-B-challenge_zrc_nd_10m_guard-R1-4h,B,4 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|4 h|1 -57,ZRCND-B-lead_zrc_nd_3p5m_guard-R1-0h,B,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|0 h|1 -58,ZRCND-B-lead_zrc_nd_3p5m_guard-R1-1h,B,1 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|1 h|1 -59,ZRCND-B-lead_zrc_nd_3p5m_guard-R1-24h,B,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|24 h|1 -60,ZRCND-B-lead_zrc_nd_3p5m_guard-R1-4h,B,4 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|4 h|1 -61,ZRCND-B-no_module_static_control-R1-0h,B,0 h,1,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|0 h|1 -62,ZRCND-B-no_module_static_control-R1-1h,B,1 h,1,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|1 h|1 -63,ZRCND-B-no_module_static_control-R1-24h,B,24 h,1,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|24 h|1 -64,ZRCND-B-no_module_static_control-R1-4h,B,4 h,1,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|4 h|1 -65,ZRCND-B-baseline_rc_3p5m_guard-R2-0h,B,0 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|0 h|2 -66,ZRCND-B-baseline_rc_3p5m_guard-R2-1h,B,1 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|1 h|2 -67,ZRCND-B-baseline_rc_3p5m_guard-R2-24h,B,24 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|24 h|2 -68,ZRCND-B-baseline_rc_3p5m_guard-R2-4h,B,4 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|4 h|2 -69,ZRCND-B-challenge_zrc_nd_10m_guard-R2-0h,B,0 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|0 h|2 -70,ZRCND-B-challenge_zrc_nd_10m_guard-R2-1h,B,1 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|1 h|2 -71,ZRCND-B-challenge_zrc_nd_10m_guard-R2-24h,B,24 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|24 h|2 -72,ZRCND-B-challenge_zrc_nd_10m_guard-R2-4h,B,4 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|4 h|2 -73,ZRCND-B-lead_zrc_nd_3p5m_guard-R2-0h,B,0 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|0 h|2 -74,ZRCND-B-lead_zrc_nd_3p5m_guard-R2-1h,B,1 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|1 h|2 -75,ZRCND-B-lead_zrc_nd_3p5m_guard-R2-24h,B,24 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|24 h|2 -76,ZRCND-B-lead_zrc_nd_3p5m_guard-R2-4h,B,4 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|4 h|2 -77,ZRCND-B-no_module_static_control-R2-0h,B,0 h,2,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|0 h|2 -78,ZRCND-B-no_module_static_control-R2-1h,B,1 h,2,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|1 h|2 -79,ZRCND-B-no_module_static_control-R2-24h,B,24 h,2,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|24 h|2 -80,ZRCND-B-no_module_static_control-R2-4h,B,4 h,2,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|4 h|2 -81,ZRCND-B-baseline_rc_3p5m_guard-R3-0h,B,0 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|0 h|3 -82,ZRCND-B-baseline_rc_3p5m_guard-R3-1h,B,1 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|1 h|3 -83,ZRCND-B-baseline_rc_3p5m_guard-R3-24h,B,24 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|24 h|3 -84,ZRCND-B-baseline_rc_3p5m_guard-R3-4h,B,4 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|4 h|3 -85,ZRCND-B-challenge_zrc_nd_10m_guard-R3-0h,B,0 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|0 h|3 -86,ZRCND-B-challenge_zrc_nd_10m_guard-R3-1h,B,1 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|1 h|3 -87,ZRCND-B-challenge_zrc_nd_10m_guard-R3-24h,B,24 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|24 h|3 -88,ZRCND-B-challenge_zrc_nd_10m_guard-R3-4h,B,4 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|4 h|3 -89,ZRCND-B-lead_zrc_nd_3p5m_guard-R3-0h,B,0 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|0 h|3 -90,ZRCND-B-lead_zrc_nd_3p5m_guard-R3-1h,B,1 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|1 h|3 -91,ZRCND-B-lead_zrc_nd_3p5m_guard-R3-24h,B,24 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|24 h|3 -92,ZRCND-B-lead_zrc_nd_3p5m_guard-R3-4h,B,4 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|4 h|3 -93,ZRCND-B-no_module_static_control-R3-0h,B,0 h,3,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|0 h|3 -94,ZRCND-B-no_module_static_control-R3-1h,B,1 h,3,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|1 h|3 -95,ZRCND-B-no_module_static_control-R3-24h,B,24 h,3,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|24 h|3 -96,ZRCND-B-no_module_static_control-R3-4h,B,4 h,3,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,B|4 h|3 -97,ZRCND-C-baseline_rc_3p5m_guard-R1-0h,C,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|0 h|1 -98,ZRCND-C-baseline_rc_3p5m_guard-R1-24h,C,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|24 h|1 -99,ZRCND-C-baseline_rc_3p5m_guard-R1-4h,C,4 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|4 h|1 -100,ZRCND-C-bulk_exchange_reference-R1-0h,C,0 h,1,bulk_exchange_reference,,process_reference,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|0 h|1 -101,ZRCND-C-bulk_exchange_reference-R1-24h,C,24 h,1,bulk_exchange_reference,,process_reference,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|24 h|1 -102,ZRCND-C-bulk_exchange_reference-R1-4h,C,4 h,1,bulk_exchange_reference,,process_reference,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|4 h|1 -103,ZRCND-C-lead_zrc_nd_3p5m_guard-R1-0h,C,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|0 h|1 -104,ZRCND-C-lead_zrc_nd_3p5m_guard-R1-24h,C,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|24 h|1 -105,ZRCND-C-lead_zrc_nd_3p5m_guard-R1-4h,C,4 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|4 h|1 -106,ZRCND-C-no_module_static_control-R1-0h,C,0 h,1,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|0 h|1 -107,ZRCND-C-no_module_static_control-R1-24h,C,24 h,1,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|24 h|1 -108,ZRCND-C-no_module_static_control-R1-4h,C,4 h,1,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|4 h|1 -109,ZRCND-C-baseline_rc_3p5m_guard-R2-0h,C,0 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|0 h|2 -110,ZRCND-C-baseline_rc_3p5m_guard-R2-24h,C,24 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|24 h|2 -111,ZRCND-C-baseline_rc_3p5m_guard-R2-4h,C,4 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|4 h|2 -112,ZRCND-C-bulk_exchange_reference-R2-0h,C,0 h,2,bulk_exchange_reference,,process_reference,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|0 h|2 -113,ZRCND-C-bulk_exchange_reference-R2-24h,C,24 h,2,bulk_exchange_reference,,process_reference,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|24 h|2 -114,ZRCND-C-bulk_exchange_reference-R2-4h,C,4 h,2,bulk_exchange_reference,,process_reference,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|4 h|2 -115,ZRCND-C-lead_zrc_nd_3p5m_guard-R2-0h,C,0 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|0 h|2 -116,ZRCND-C-lead_zrc_nd_3p5m_guard-R2-24h,C,24 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|24 h|2 -117,ZRCND-C-lead_zrc_nd_3p5m_guard-R2-4h,C,4 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|4 h|2 -118,ZRCND-C-no_module_static_control-R2-0h,C,0 h,2,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|0 h|2 -119,ZRCND-C-no_module_static_control-R2-24h,C,24 h,2,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|24 h|2 -120,ZRCND-C-no_module_static_control-R2-4h,C,4 h,2,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|4 h|2 -121,ZRCND-C-baseline_rc_3p5m_guard-R3-0h,C,0 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|0 h|3 -122,ZRCND-C-baseline_rc_3p5m_guard-R3-24h,C,24 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|24 h|3 -123,ZRCND-C-baseline_rc_3p5m_guard-R3-4h,C,4 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|4 h|3 -124,ZRCND-C-bulk_exchange_reference-R3-0h,C,0 h,3,bulk_exchange_reference,,process_reference,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|0 h|3 -125,ZRCND-C-bulk_exchange_reference-R3-24h,C,24 h,3,bulk_exchange_reference,,process_reference,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|24 h|3 -126,ZRCND-C-bulk_exchange_reference-R3-4h,C,4 h,3,bulk_exchange_reference,,process_reference,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|4 h|3 -127,ZRCND-C-lead_zrc_nd_3p5m_guard-R3-0h,C,0 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,baseline_snapshot,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|0 h|3 -128,ZRCND-C-lead_zrc_nd_3p5m_guard-R3-24h,C,24 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|24 h|3 -129,ZRCND-C-lead_zrc_nd_3p5m_guard-R3-4h,C,4 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;housing_material;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;membrane_area_cm2;membrane_lot;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|4 h|3 -130,ZRCND-C-no_module_static_control-R3-0h,C,0 h,3,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|0 h|3 -131,ZRCND-C-no_module_static_control-R3-24h,C,24 h,3,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|24 h|3 -132,ZRCND-C-no_module_static_control-R3-4h,C,4 h,3,no_module_static_control,,matched_control,medium_integrity;waste_clearance;factor_retention;module_performance,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;bubble_events;conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;flow_resistance_final;flow_resistance_initial;initial_volume_ml;lactate_final_mM;lactate_initial_mM;medium_lot;medium_name;ngf_final_pg_ml;ngf_initial_pg_ml;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial;visible_precipitate,C|4 h|3 diff --git a/data/zrc_nd_measurement_merge.json b/data/zrc_nd_measurement_merge.json deleted file mode 100644 index 5cad80d..0000000 --- a/data/zrc_nd_measurement_merge.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "base": "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_validation_runs_template.csv", - "measurement_file_exists": false, - "measurement_rows": 0, - "measurements": "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_phase_a_vendor_return_inbox/completed_phase_a_measurements.csv", - "output": "/Users/azur/Documents/Codex/2026-05-23/applications-mentioned-by-the-user-appshot/data/zrc_nd_validation_runs_active.csv", - "stats": { - "inserted": 0, - "skipped": 0, - "total": 0, - "updated": 0 - }, - "status": "awaiting_measurement_file" -} \ No newline at end of file diff --git a/data/zrc_nd_next_measurements.csv b/data/zrc_nd_next_measurements.csv deleted file mode 100644 index 1e25fd2..0000000 --- a/data/zrc_nd_next_measurements.csv +++ /dev/null @@ -1,9 +0,0 @@ -priority,run_id,phase,timepoint,replicate,article_id,variant_id,gate_role,readout_groups,recommendation_reason,must_have_fields -1,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,baseline_snapshot,medium_integrity,phase_a_sentinel_no_measured_rows,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate -2,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,gate_evaluable,medium_integrity,phase_a_sentinel_no_measured_rows,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate -3,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,baseline_snapshot,medium_integrity,phase_a_sentinel_no_measured_rows,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate -4,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,gate_evaluable,medium_integrity,phase_a_sentinel_no_measured_rows,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate -5,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,baseline_snapshot,medium_integrity,phase_a_sentinel_no_measured_rows,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate -6,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,gate_evaluable,medium_integrity,phase_a_sentinel_no_measured_rows,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate -7,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,,matched_control,medium_integrity,phase_a_sentinel_no_measured_rows,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate -8,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,,matched_control,medium_integrity,phase_a_sentinel_no_measured_rows,conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate diff --git a/data/zrc_nd_next_measurements.json b/data/zrc_nd_next_measurements.json deleted file mode 100644 index ed021c8..0000000 --- a/data/zrc_nd_next_measurements.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "min_passed_lead_replicates_per_phase": 3, - "mode": "adaptive", - "passed_lead_replicates_by_phase": {}, - "reason": "phase_a_sentinel_no_measured_rows", - "recommended_rows": [ - { - "article_id": "baseline_rc_3p5m_guard", - "gate_role": "baseline_snapshot", - "must_have_fields": "conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate", - "phase": "A", - "priority": "1", - "readout_groups": "medium_integrity", - "recommendation_reason": "phase_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "timepoint": "0 h", - "variant_id": "zrc_nd_3p5k_unmodified_guard" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "gate_role": "gate_evaluable", - "must_have_fields": "conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate", - "phase": "A", - "priority": "2", - "readout_groups": "medium_integrity", - "recommendation_reason": "phase_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "timepoint": "24 h", - "variant_id": "zrc_nd_3p5k_unmodified_guard" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "gate_role": "baseline_snapshot", - "must_have_fields": "conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate", - "phase": "A", - "priority": "3", - "readout_groups": "medium_integrity", - "recommendation_reason": "phase_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "timepoint": "0 h", - "variant_id": "zrc_nd_10k_mpc_guard" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "gate_role": "gate_evaluable", - "must_have_fields": "conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate", - "phase": "A", - "priority": "4", - "readout_groups": "medium_integrity", - "recommendation_reason": "phase_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "timepoint": "24 h", - "variant_id": "zrc_nd_10k_mpc_guard" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "gate_role": "baseline_snapshot", - "must_have_fields": "conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate", - "phase": "A", - "priority": "5", - "readout_groups": "medium_integrity", - "recommendation_reason": "phase_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "timepoint": "0 h", - "variant_id": "zrc_nd_3p5k_mpc_guard" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "gate_role": "gate_evaluable", - "must_have_fields": "conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;prefilter_lot;temperature_c;visible_precipitate", - "phase": "A", - "priority": "6", - "readout_groups": "medium_integrity", - "recommendation_reason": "phase_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "timepoint": "24 h", - "variant_id": "zrc_nd_3p5k_mpc_guard" - }, - { - "article_id": "no_module_static_control", - "gate_role": "matched_control", - "must_have_fields": "conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate", - "phase": "A", - "priority": "7", - "readout_groups": "medium_integrity", - "recommendation_reason": "phase_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "timepoint": "0 h", - "variant_id": "" - }, - { - "article_id": "no_module_static_control", - "gate_role": "matched_control", - "must_have_fields": "conductivity_final_mS_cm;conductivity_initial_mS_cm;date;exposure_time_h;initial_volume_ml;medium_lot;medium_name;operator_or_agent;osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg;pH_final;pH_initial;temperature_c;visible_precipitate", - "phase": "A", - "priority": "8", - "readout_groups": "medium_integrity", - "recommendation_reason": "phase_a_sentinel_no_measured_rows", - "replicate": "1", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "timepoint": "24 h", - "variant_id": "" - } - ], - "remediation_actions": [], - "results_status": "no_data", - "sentinel_next_action": "Generate and fill the Phase A sentinel packet.", - "sentinel_status": "no_sentinel_rows", - "status": "needs_phase_a_sentinel" -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_chain_of_custody.csv b/data/zrc_nd_phase_a_chain_of_custody.csv deleted file mode 100644 index 1d70b47..0000000 --- a/data/zrc_nd_phase_a_chain_of_custody.csv +++ /dev/null @@ -1,17 +0,0 @@ -chain_id,sample_id,run_id,article_id,phase,timepoint,sample_event,replicate,planned_container_id,prepared_by,prepared_at,module_or_tube_id,membrane_lot,prefilter_lot,housing_material,medium_name,medium_lot,initial_volume_ml,exposure_started_at,exposure_ended_at,temperature_c,released_by,released_at,carrier_or_transfer_method,received_by,received_at,condition_on_receipt,storage_location,instrument_export_returned,deviation_notes,transfer_status -ZRC-ND-PHASE-A-COC-001,ZRCND-A-baseline_rc_3p5m_guard-R1-0h-initial,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,baseline_rc_3p5m_guard,A,0 h,initial,1,ZRC-A-01-BASELINE-RC-3P5M-GUA-0-H-INITIAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-002,ZRCND-A-baseline_rc_3p5m_guard-R1-0h-final,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,baseline_rc_3p5m_guard,A,0 h,final,1,ZRC-A-02-BASELINE-RC-3P5M-GUA-0-H-FINAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-003,ZRCND-A-baseline_rc_3p5m_guard-R1-24h-initial,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,baseline_rc_3p5m_guard,A,24 h,initial,1,ZRC-A-03-BASELINE-RC-3P5M-GUA-24-H-INITIAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-004,ZRCND-A-baseline_rc_3p5m_guard-R1-24h-final,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,baseline_rc_3p5m_guard,A,24 h,final,1,ZRC-A-04-BASELINE-RC-3P5M-GUA-24-H-FINAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-005,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,challenge_zrc_nd_10m_guard,A,0 h,initial,1,ZRC-A-05-CHALLENGE-ZRC-ND-10M-0-H-INITIAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-006,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,challenge_zrc_nd_10m_guard,A,0 h,final,1,ZRC-A-06-CHALLENGE-ZRC-ND-10M-0-H-FINAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-007,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,challenge_zrc_nd_10m_guard,A,24 h,initial,1,ZRC-A-07-CHALLENGE-ZRC-ND-10M-24-H-INITIAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-008,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,challenge_zrc_nd_10m_guard,A,24 h,final,1,ZRC-A-08-CHALLENGE-ZRC-ND-10M-24-H-FINAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-009,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,lead_zrc_nd_3p5m_guard,A,0 h,initial,1,ZRC-A-09-LEAD-ZRC-ND-3P5M-GUA-0-H-INITIAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-010,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,lead_zrc_nd_3p5m_guard,A,0 h,final,1,ZRC-A-10-LEAD-ZRC-ND-3P5M-GUA-0-H-FINAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-011,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,lead_zrc_nd_3p5m_guard,A,24 h,initial,1,ZRC-A-11-LEAD-ZRC-ND-3P5M-GUA-24-H-INITIAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-012,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,lead_zrc_nd_3p5m_guard,A,24 h,final,1,ZRC-A-12-LEAD-ZRC-ND-3P5M-GUA-24-H-FINAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-013,ZRCND-A-no_module_static_control-R1-0h-initial,ZRCND-A-no_module_static_control-R1-0h,no_module_static_control,A,0 h,initial,1,ZRC-A-13-NO-MODULE-STATIC-CON-0-H-INITIAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-014,ZRCND-A-no_module_static_control-R1-0h-final,ZRCND-A-no_module_static_control-R1-0h,no_module_static_control,A,0 h,final,1,ZRC-A-14-NO-MODULE-STATIC-CON-0-H-FINAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-015,ZRCND-A-no_module_static_control-R1-24h-initial,ZRCND-A-no_module_static_control-R1-24h,no_module_static_control,A,24 h,initial,1,ZRC-A-15-NO-MODULE-STATIC-CON-24-H-INITIAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer -ZRC-ND-PHASE-A-COC-016,ZRCND-A-no_module_static_control-R1-24h-final,ZRCND-A-no_module_static_control-R1-24h,no_module_static_control,A,24 h,final,1,ZRC-A-16-NO-MODULE-STATIC-CON-24-H-FINAL,,,,,,,,,,,,,,,,,,,,,,pending_real_transfer diff --git a/data/zrc_nd_phase_a_chain_of_custody.json b/data/zrc_nd_phase_a_chain_of_custody.json deleted file mode 100644 index 6663afc..0000000 --- a/data/zrc_nd_phase_a_chain_of_custody.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "active_candidate": "limina_zrc_nd_v0_1", - "article_ids": [ - "baseline_rc_3p5m_guard", - "challenge_zrc_nd_10m_guard", - "lead_zrc_nd_3p5m_guard", - "no_module_static_control" - ], - "blank_fields_to_complete": [ - "prepared_by", - "prepared_at", - "module_or_tube_id", - "membrane_lot", - "prefilter_lot", - "housing_material", - "medium_name", - "medium_lot", - "initial_volume_ml", - "exposure_started_at", - "exposure_ended_at", - "temperature_c", - "released_by", - "released_at", - "carrier_or_transfer_method", - "received_by", - "received_at", - "condition_on_receipt", - "storage_location", - "instrument_export_returned", - "deviation_notes" - ], - "chain_of_custody_row_count": 16, - "non_evidence_boundary": "Labels and blank custody rows are logistics artifacts only. ZRC-ND Phase A remains unmeasured until real medium-integrity values and provenance are returned.", - "outputs": { - "chain_of_custody_csv": "data/zrc_nd_phase_a_chain_of_custody.csv", - "json": "data/zrc_nd_phase_a_chain_of_custody.json", - "report": "reports/zrc_nd_phase_a_chain_of_custody.md", - "sample_labels_csv": "data/zrc_nd_phase_a_sample_labels.csv" - }, - "pending_transfer_rows": 16, - "purpose": "Sample labels and blank chain-of-custody rows for the real ZRC-ND Phase A measurement handoff.", - "rejection_rules": [ - "Do not treat a label row, planned container ID, or blank custody row as measured evidence.", - "Do not pool initial and final events before pH, osmolality, or conductivity entry.", - "Do not replace missing transfer fields with pending, TBD, unknown, synthetic, or fixture markers.", - "Do not accept returned Phase A rows unless instrument exports and deviation notes can be reconciled to run_id." - ], - "sample_label_count": 16, - "sample_manifest_rows": 16, - "service_request_status": "ready_to_request_real_phase_a_measurements", - "status": "ready_for_phase_a_sample_handoff", - "unique_run_count": 8 -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_delivery_package_manifest.json b/data/zrc_nd_phase_a_delivery_package_manifest.json deleted file mode 100644 index f837f1b..0000000 --- a/data/zrc_nd_phase_a_delivery_package_manifest.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "active_candidate": "limina_zrc_nd_v0_1", - "expected_return_files": [ - { - "acceptance": "Same schema as the package template, with all requested real values and provenance fields filled.", - "id": "completed_phase_a_csv", - "path": "data/zrc_nd_phase_a_sentinel_template.csv" - }, - { - "acceptance": "Original pH, osmolality, conductivity, and inspection files reconciled to run_id or sample_id.", - "id": "instrument_exports", - "path": "external_lab_exports/zrc_nd_phase_a/" - }, - { - "acceptance": "Prepared/released/received fields, actual lot IDs, module/tube IDs, condition on receipt, and deviations filled.", - "id": "completed_chain_of_custody", - "path": "data/zrc_nd_phase_a_chain_of_custody.csv" - }, - { - "acceptance": "Lists every deviation from membrane, module, guard, medium, timing, temperature, rinse, or instrument assumptions.", - "id": "deviation_log", - "path": "reports/zrc_nd_phase_a_deviation_log.md" - } - ], - "missing_required_file_ids": [], - "non_claim_boundary": "This manifest only packages the Phase A measurement request. ZRC-ND suitability still requires real Phase A/B/C rows, biological follow-up, readiness audit pass, and final claim audit.", - "package_files": [ - { - "bytes": 5958, - "exists": true, - "id": "service_request", - "path": "reports/zrc_nd_phase_a_service_request.md", - "required": true, - "role": "Primary Phase A lab/cooperator request: matrix, deliverables, acceptance gate, and rejection rules.", - "sha256": "b238fae53a65e6d622ffc7f374844e734db75af1e991a0ff9004c980a889ae36" - }, - { - "bytes": 2577, - "exists": true, - "id": "phase_a_template", - "path": "data/zrc_nd_phase_a_sentinel_template.csv", - "required": true, - "role": "The 8-row Phase A CSV to fill with real medium-integrity measurements.", - "sha256": "e818351e23fb1ddafdd308567b26c4e51460197a84e563e81e21697f476081dc" - }, - { - "bytes": 2121, - "exists": true, - "id": "sentinel_packet", - "path": "reports/zrc_nd_phase_a_sentinel_packet.md", - "required": true, - "role": "Human-readable Phase A sentinel packet and gate description.", - "sha256": "3909825a725dda647e267f3ec7001b5dcf0cf1575aaebdf02a043120d6c837c4" - }, - { - "bytes": 3819, - "exists": true, - "id": "sample_manifest", - "path": "data/zrc_nd_phase_a_sentinel_sample_manifest.csv", - "required": true, - "role": "Sample-level manifest tying run_id to sample_event, article, timepoint, and readouts.", - "sha256": "9c6b4f82658ea78b1e5986d0291c4bb37d6f8197919eb31bef452d644717c23a" - }, - { - "bytes": 7214, - "exists": true, - "id": "sample_labels", - "path": "data/zrc_nd_phase_a_sample_labels.csv", - "required": true, - "role": "Printable/transferable labels with sample IDs, planned container IDs, article IDs, and handling notes.", - "sha256": "916a6fbd8f037631907db75127ca970f9afa75307d37b42d23a9ed09993e7269" - }, - { - "bytes": 4185, - "exists": true, - "id": "chain_of_custody_csv", - "path": "data/zrc_nd_phase_a_chain_of_custody.csv", - "required": true, - "role": "Blank chain-of-custody transfer rows to complete during preparation, release, receipt, and return.", - "sha256": "d78e28317e5a2573a97e63b5923f5e06139537eceb8defeac569ae4947bb4adb" - }, - { - "bytes": 3921, - "exists": true, - "id": "chain_of_custody_report", - "path": "reports/zrc_nd_phase_a_chain_of_custody.md", - "required": true, - "role": "Human-readable sample handoff instructions, blank fields, and rejection rules.", - "sha256": "956241196106ba96d35ebbaa0f69cbf6f39c9f5b1924712813f7f5ab73ef2bd8" - }, - { - "bytes": 2320, - "exists": true, - "id": "next_measurements", - "path": "reports/zrc_nd_next_measurements.md", - "required": true, - "role": "Current adaptive selector output showing why Phase A is the next ZRC-ND batch.", - "sha256": "401abb7ac6fc1049ee22eddd8df8d96ae79e051d9db310086f0d463749c150b8" - }, - { - "bytes": 16446, - "exists": true, - "id": "validation_package", - "path": "data/zrc_nd_3p5k_guard_validation_package.json", - "required": true, - "role": "Machine-readable validation package defining articles, assays, fields, and gates.", - "sha256": "24d8c12bf6184352f9f8f34f2acb1300c5614bdfa76fdaebb76870c9a16f66e2" - }, - { - "bytes": 910, - "exists": true, - "id": "run_plan", - "path": "reports/zrc_nd_run_plan.md", - "required": true, - "role": "Full non-cell run plan context; Phase A is the current first sentinel subset.", - "sha256": "97fae50d5aef7e2d50baf8ff13d9c202b8cc5e2e0e21f449c1402f16e688b1db" - } - ], - "post_return_verification": [ - "python3 scripts/merge_zrc_nd_measurements.py", - "python3 scripts/interpret_zrc_nd_sentinel.py", - "python3 scripts/evaluate_zrc_nd_validation_runs.py --runs data/zrc_nd_validation_runs_active.csv", - "python3 scripts/suggest_zrc_nd_next_measurements.py --runs data/zrc_nd_validation_runs_active.csv", - "python3 scripts/audit_zrc_nd_readiness.py", - "python3 scripts/run_limina_iteration.py" - ], - "purpose": "Manifest for the real-measurement package needed to unblock the ZRC-ND external-material Phase A sentinel.", - "status": "ready_to_send" -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_execution_authorization_log.csv b/data/zrc_nd_phase_a_execution_authorization_log.csv deleted file mode 100644 index 9bd69ce..0000000 --- a/data/zrc_nd_phase_a_execution_authorization_log.csv +++ /dev/null @@ -1 +0,0 @@ -candidate_id,vendor_name,authorization_status,authorized_at,authorized_by,authorization_basis,provider_acceptance_reference,sds_review_reference,custody_release_reference,scope_review_reference,sample_count_authorized,shipment_or_execution_window,authorization_source_file,authorization_source_sha256,computed_authorization_source_sha256,notes diff --git a/data/zrc_nd_phase_a_execution_authorization_log.json b/data/zrc_nd_phase_a_execution_authorization_log.json deleted file mode 100644 index faf1a0b..0000000 --- a/data/zrc_nd_phase_a_execution_authorization_log.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "authorization_log_csv": "data/zrc_nd_phase_a_execution_authorization_log.csv", - "authorized_rows": 0, - "error_count": 0, - "errors": [], - "field_contract": { - "authorization_status_values": [ - "approved", - "authorized", - "hold", - "not_authorized", - "pending_authorization", - "release_authorized", - "revoked" - ], - "hash_rule": "If authorization_source_sha256 is supplied, it must match the current SHA-256 of authorization_source_file.", - "required_when_authorized": [ - "authorized_at", - "authorized_by", - "authorization_basis", - "provider_acceptance_reference", - "custody_release_reference", - "scope_review_reference", - "sample_count_authorized", - "shipment_or_execution_window", - "authorization_source_file" - ] - }, - "label": "ZRC-ND Phase A", - "non_evidence_boundary": "Execution authorization is a logistics control. It does not count as material evidence and cannot advance suitability gates without returned real measurements and source files.", - "pending_rows": 0, - "profile": "zrc_phase_a", - "purpose": "Validate human execution authorization without treating authorization as measured material evidence.", - "quote_selection": "data/zrc_nd_phase_a_quote_selection.json", - "row_count": 0, - "selected_provider_count": 0, - "source_backed_selected_provider_count": 0, - "status": "zrc_nd_phase_a_execution_authorization_waiting_for_selected_provider", - "unknown_prior_candidate_ids": [], - "valid_authorization_rows": 0, - "valid_authorization_summaries": [], - "valid_authorized_candidate_ids": [] -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_execution_release_audit.json b/data/zrc_nd_phase_a_execution_release_audit.json deleted file mode 100644 index 2fea499..0000000 --- a/data/zrc_nd_phase_a_execution_release_audit.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "authorization_blocker_count": 0, - "authorization_blockers": [], - "authorization_checks": [ - { - "blocking": true, - "code": "execution_authorization_log_has_no_errors", - "detail": "errors=0; status=zrc_nd_phase_a_execution_authorization_waiting_for_selected_provider", - "passed": true - }, - { - "blocking": false, - "code": "selected_provider_has_valid_execution_authorization", - "detail": "waiting for a source-backed selected provider before authorization matching is meaningful", - "passed": false - } - ], - "blocker_count": 1, - "blockers": [ - { - "blocking": true, - "code": "source_backed_provider_selected", - "detail": "selected=0; source_backed_selected=0; selected_ids=-", - "passed": false - } - ], - "checklist": [ - { - "blocking": true, - "code": "delivery_package_ready", - "detail": "status=ready_to_send; missing_required_files=0", - "passed": true - }, - { - "blocking": true, - "code": "quote_selection_has_no_reply_log_errors", - "detail": "reply_log_errors=0; status=pending_outreach", - "passed": true - }, - { - "blocking": true, - "code": "rfq_send_log_has_no_errors", - "detail": "errors=0; status=zrc_nd_phase_a_rfq_send_log_waiting_for_sent_entries", - "passed": true - }, - { - "blocking": true, - "code": "rfq_reply_log_has_no_errors", - "detail": "errors=0; status=zrc_nd_phase_a_rfq_reply_log_waiting_for_reply_files", - "passed": true - }, - { - "blocking": true, - "code": "source_backed_provider_selected", - "detail": "selected=0; source_backed_selected=0; selected_ids=-", - "passed": false - }, - { - "blocking": false, - "code": "selected_provider_has_verified_send_log", - "detail": "waiting for a source-backed selected provider before send-log matching is meaningful", - "passed": false - }, - { - "blocking": false, - "code": "selected_provider_has_source_backed_reply_file", - "detail": "waiting for a source-backed selected provider before reply-file matching is meaningful", - "passed": false - }, - { - "blocking": true, - "code": "chain_of_custody_template_ready", - "detail": "status=ready_for_phase_a_sample_handoff; labels=16; custody_rows=16", - "passed": true - }, - { - "blocking": false, - "code": "vendor_return_files_not_required_for_execution_release", - "detail": "status=awaiting_vendor_return_files; returned measurement files are checked after execution, not before authorization", - "passed": true - } - ], - "gate_label": "ZRC-ND Phase A", - "inputs": { - "chain_of_custody": "data/zrc_nd_phase_a_chain_of_custody.json", - "delivery_package": "data/zrc_nd_phase_a_delivery_package_manifest.json", - "execution_authorization_log": "data/zrc_nd_phase_a_execution_authorization_log.json", - "quote_selection": "data/zrc_nd_phase_a_quote_selection.json", - "rfq_reply_log": "data/zrc_nd_phase_a_rfq_reply_log.json", - "rfq_send_log": "data/zrc_nd_phase_a_rfq_send_log.json", - "sample_submission": "", - "vendor_return": "data/zrc_nd_phase_a_vendor_return_intake.json" - }, - "label": "ZRC-ND Phase A", - "manual_authorization_required": true, - "next_action": "Send RFQs, preserve original replies, fill the reply log, and select a source-backed provider.", - "non_evidence_boundary": "Execution release status is logistics control only. It is not measured material evidence, does not release samples by itself, and cannot advance suitability gates without returned real measurement rows and source files.", - "physical_shipment_allowed": false, - "profile": "zrc_phase_a", - "purpose": "Audit sourcing and package readiness before any sample shipment or outsourced execution authorization.", - "ready_for_execution_authorization": false, - "released_for_execution": false, - "selected_candidate_ids": [], - "selected_decision": "selected_for_phase_a", - "selected_provider_count": 0, - "source_backed_selected_candidate_ids": [], - "source_backed_selected_provider_count": 0, - "status": "zrc_nd_phase_a_execution_release_blocked_no_source_backed_provider_selection", - "valid_authorized_candidate_ids": [], - "valid_reply_candidate_ids": [], - "valid_sent_candidate_ids": [] -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_local_capture_template.csv b/data/zrc_nd_phase_a_local_capture_template.csv deleted file mode 100644 index d29f813..0000000 --- a/data/zrc_nd_phase_a_local_capture_template.csv +++ /dev/null @@ -1,9 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,membrane_lot,mwco_kda,membrane_area_cm2,surface_modification,prefilter_lot,housing_material,medium_name,medium_lot,initial_volume_ml,flow_rate_ul_min,exposure_time_h,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,lactate_initial_mM,lactate_final_mM,ammonia_initial_uM,ammonia_final_uM,bdnf_initial_pg_ml,bdnf_final_pg_ml,ngf_initial_pg_ml,ngf_final_pg_ml,albumin_initial,albumin_final,transferrin_initial,transferrin_final,total_protein_initial,total_protein_final,flow_resistance_initial,flow_resistance_final,bubble_events,visible_precipitate,gate_results,source_file,notes,measured_at,instrument_id -ZRCND-A-baseline_rc_3p5m_guard-R1-0h,,,A,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-baseline_rc_3p5m_guard-R1-24h,,,A,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,,,A,0 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,,,A,24 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,,,A,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,,,A,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R1-0h,,,A,0 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R1-24h,,,A,24 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/data/zrc_nd_phase_a_osmolality_outsource_template.csv b/data/zrc_nd_phase_a_osmolality_outsource_template.csv deleted file mode 100644 index d29f813..0000000 --- a/data/zrc_nd_phase_a_osmolality_outsource_template.csv +++ /dev/null @@ -1,9 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,membrane_lot,mwco_kda,membrane_area_cm2,surface_modification,prefilter_lot,housing_material,medium_name,medium_lot,initial_volume_ml,flow_rate_ul_min,exposure_time_h,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,lactate_initial_mM,lactate_final_mM,ammonia_initial_uM,ammonia_final_uM,bdnf_initial_pg_ml,bdnf_final_pg_ml,ngf_initial_pg_ml,ngf_final_pg_ml,albumin_initial,albumin_final,transferrin_initial,transferrin_final,total_protein_initial,total_protein_final,flow_resistance_initial,flow_resistance_final,bubble_events,visible_precipitate,gate_results,source_file,notes,measured_at,instrument_id -ZRCND-A-baseline_rc_3p5m_guard-R1-0h,,,A,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-baseline_rc_3p5m_guard-R1-24h,,,A,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,,,A,0 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,,,A,24 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,,,A,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,,,A,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R1-0h,,,A,0 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R1-24h,,,A,24 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/data/zrc_nd_phase_a_quote_selection.json b/data/zrc_nd_phase_a_quote_selection.json deleted file mode 100644 index ecf400b..0000000 --- a/data/zrc_nd_phase_a_quote_selection.json +++ /dev/null @@ -1,364 +0,0 @@ -{ - "active_candidate": "limina_zrc_nd_v0_1", - "hard_required_fields": [ - "run_id_level_raw_data", - "csv_schema_acceptance", - "sample_handling_fit", - "source_file_provenance", - "non_glp_scope_control" - ], - "non_evidence_boundary": "Quote replies and vendor selection can authorize measurement execution only; they do not count as Phase A data or material suitability evidence.", - "purpose": "Score RFQ replies for ZRC-ND Phase A execution selection without treating quotes as material evidence.", - "reply_count": 0, - "reply_log_errors": 0, - "reply_log_status": "zrc_nd_phase_a_rfq_reply_log_waiting_for_reply_files", - "reply_log_valid_rows": 0, - "row_count": 4, - "scored_rows": [ - { - "candidate_id": "pacific_biolabs_physicochemical", - "contact_date": "", - "field_scores": [ - { - "field": "run_id_level_raw_data", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 5 - }, - { - "field": "phase_a_media_panel_coverage", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 5 - }, - { - "field": "csv_schema_acceptance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "sample_handling_fit", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 3 - }, - { - "field": "source_file_provenance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 3 - }, - { - "field": "turnaround_and_cost", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - }, - { - "field": "non_glp_scope_control", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - } - ], - "hard_failures": [], - "missing_review_fields": [ - "can_cover_full_phase_a", - "needs_split_scope", - "run_id_level_raw_data", - "phase_a_media_panel_coverage", - "csv_schema_acceptance", - "sample_handling_fit", - "source_file_provenance", - "non_glp_scope_control" - ], - "notes": "", - "possible_score": 24.0, - "quoted_cost": "", - "reply_date": "", - "score": 0.0, - "score_fraction": 0.0, - "selection_decision": "pending_outreach", - "source_backed_reply": false, - "source_backing_status": "not_applicable", - "tracker_decision": "pending_outreach", - "turnaround_days": "", - "unknown_required_fields": [ - "run_id_level_raw_data", - "csv_schema_acceptance", - "sample_handling_fit", - "source_file_provenance", - "non_glp_scope_control" - ], - "vendor_name": "Pacific BioLabs Physicochemical Properties Testing" - }, - { - "candidate_id": "sigmaaldrich_media_testing", - "contact_date": "", - "field_scores": [ - { - "field": "run_id_level_raw_data", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 5 - }, - { - "field": "phase_a_media_panel_coverage", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 5 - }, - { - "field": "csv_schema_acceptance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "sample_handling_fit", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 3 - }, - { - "field": "source_file_provenance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 3 - }, - { - "field": "turnaround_and_cost", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - }, - { - "field": "non_glp_scope_control", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - } - ], - "hard_failures": [], - "missing_review_fields": [ - "can_cover_full_phase_a", - "needs_split_scope", - "run_id_level_raw_data", - "phase_a_media_panel_coverage", - "csv_schema_acceptance", - "sample_handling_fit", - "source_file_provenance", - "non_glp_scope_control" - ], - "notes": "", - "possible_score": 24.0, - "quoted_cost": "", - "reply_date": "", - "score": 0.0, - "score_fraction": 0.0, - "selection_decision": "pending_outreach", - "source_backed_reply": false, - "source_backing_status": "not_applicable", - "tracker_decision": "pending_outreach", - "turnaround_days": "", - "unknown_required_fields": [ - "run_id_level_raw_data", - "csv_schema_acceptance", - "sample_handling_fit", - "source_file_provenance", - "non_glp_scope_control" - ], - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - }, - { - "candidate_id": "the_osmolality_lab", - "contact_date": "", - "field_scores": [ - { - "field": "run_id_level_raw_data", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 5 - }, - { - "field": "phase_a_media_panel_coverage", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 5 - }, - { - "field": "csv_schema_acceptance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "sample_handling_fit", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 3 - }, - { - "field": "source_file_provenance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 3 - }, - { - "field": "turnaround_and_cost", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - }, - { - "field": "non_glp_scope_control", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - } - ], - "hard_failures": [], - "missing_review_fields": [ - "can_cover_full_phase_a", - "needs_split_scope", - "run_id_level_raw_data", - "phase_a_media_panel_coverage", - "csv_schema_acceptance", - "sample_handling_fit", - "source_file_provenance", - "non_glp_scope_control" - ], - "notes": "", - "possible_score": 24.0, - "quoted_cost": "", - "reply_date": "", - "score": 0.0, - "score_fraction": 0.0, - "selection_decision": "pending_outreach", - "source_backed_reply": false, - "source_backing_status": "not_applicable", - "tracker_decision": "pending_outreach", - "turnaround_days": "", - "unknown_required_fields": [ - "run_id_level_raw_data", - "csv_schema_acceptance", - "sample_handling_fit", - "source_file_provenance", - "non_glp_scope_control" - ], - "vendor_name": "The Osmolality Lab" - }, - { - "candidate_id": "jordi_labs_el_polymer", - "contact_date": "", - "field_scores": [ - { - "field": "run_id_level_raw_data", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 5 - }, - { - "field": "phase_a_media_panel_coverage", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 5 - }, - { - "field": "csv_schema_acceptance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 4 - }, - { - "field": "sample_handling_fit", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 3 - }, - { - "field": "source_file_provenance", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 3 - }, - { - "field": "turnaround_and_cost", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - }, - { - "field": "non_glp_scope_control", - "score": 0.0, - "value": "", - "verdict": "unknown", - "weight": 2 - } - ], - "hard_failures": [], - "missing_review_fields": [ - "can_cover_full_phase_a", - "needs_split_scope", - "run_id_level_raw_data", - "phase_a_media_panel_coverage", - "csv_schema_acceptance", - "sample_handling_fit", - "source_file_provenance", - "non_glp_scope_control" - ], - "notes": "", - "possible_score": 24.0, - "quoted_cost": "", - "reply_date": "", - "score": 0.0, - "score_fraction": 0.0, - "selection_decision": "pending_outreach", - "source_backed_reply": false, - "source_backing_status": "not_applicable", - "tracker_decision": "pending_outreach", - "turnaround_days": "", - "unknown_required_fields": [ - "run_id_level_raw_data", - "csv_schema_acceptance", - "sample_handling_fit", - "source_file_provenance", - "non_glp_scope_control" - ], - "vendor_name": "Jordi Labs Analytical Testing" - } - ], - "selected_count": 0, - "sent_count": 0, - "shortlist_count": 0, - "source_backed_reply_count": 0, - "status": "pending_outreach" -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_quote_tracker.csv b/data/zrc_nd_phase_a_quote_tracker.csv deleted file mode 100644 index 45a8848..0000000 --- a/data/zrc_nd_phase_a_quote_tracker.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,contact_date,reply_date,can_cover_full_phase_a,needs_split_scope,run_id_level_raw_data,phase_a_media_panel_coverage,csv_schema_acceptance,sample_handling_fit,source_file_provenance,non_glp_scope_control,turnaround_days,quoted_cost,decision,notes -pacific_biolabs_physicochemical,Pacific BioLabs Physicochemical Properties Testing,,,,,,,,,,,,,pending_outreach, -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,,,,,,,,,,,,,pending_outreach, -the_osmolality_lab,The Osmolality Lab,,,,,,,,,,,,,pending_outreach, -jordi_labs_el_polymer,Jordi Labs Analytical Testing,,,,,,,,,,,,,pending_outreach, diff --git a/data/zrc_nd_phase_a_quote_tracker.json b/data/zrc_nd_phase_a_quote_tracker.json deleted file mode 100644 index f6efa30..0000000 --- a/data/zrc_nd_phase_a_quote_tracker.json +++ /dev/null @@ -1,150 +0,0 @@ -{ - "active_candidate": "limina_zrc_nd_v0_1", - "decision_rules": [ - "Reject any response that cannot preserve run_id-level raw data.", - "Prefer one provider only if it covers pH, osmolality, conductivity, and appearance without losing source-file provenance.", - "Use split scope if pH/osmolality and conductivity must be produced by different providers, but keep the same run_id labels.", - "Do not proceed without CSV schema acceptance or an explicit mapping back to the LIMINA Phase A template.", - "Do not treat quote responses or supplier guidance as material evidence; only returned measured rows can advance gates.", - "Rerunning this tracker preserves existing contact dates, replies, decisions, and notes by candidate_id." - ], - "disqualifiers": [ - "Only returns pooled averages, certificates, or narrative feasibility opinions.", - "Will not preserve run_id, sample_event, and target-field mapping.", - "Cannot return raw exports, instrument reports, or traceable source files.", - "Requires changing article identity, timepoints, membrane material, or control rows without a deviation log.", - "Treats quote, supplier support, or vendor capability claims as final material suitability evidence." - ], - "fields": [ - "candidate_id", - "vendor_name", - "contact_date", - "reply_date", - "can_cover_full_phase_a", - "needs_split_scope", - "run_id_level_raw_data", - "phase_a_media_panel_coverage", - "csv_schema_acceptance", - "sample_handling_fit", - "source_file_provenance", - "non_glp_scope_control", - "turnaround_days", - "quoted_cost", - "decision", - "notes" - ], - "purpose": "Track RFQ replies and decide which vendor/cooperator can generate claimable ZRC-ND Phase A measurement rows.", - "row_count": 4, - "rows": [ - { - "can_cover_full_phase_a": "", - "candidate_id": "pacific_biolabs_physicochemical", - "contact_date": "", - "csv_schema_acceptance": "", - "decision": "pending_outreach", - "needs_split_scope": "", - "non_glp_scope_control": "", - "notes": "", - "phase_a_media_panel_coverage": "", - "quoted_cost": "", - "reply_date": "", - "run_id_level_raw_data": "", - "sample_handling_fit": "", - "source_file_provenance": "", - "turnaround_days": "", - "vendor_name": "Pacific BioLabs Physicochemical Properties Testing" - }, - { - "can_cover_full_phase_a": "", - "candidate_id": "sigmaaldrich_media_testing", - "contact_date": "", - "csv_schema_acceptance": "", - "decision": "pending_outreach", - "needs_split_scope": "", - "non_glp_scope_control": "", - "notes": "", - "phase_a_media_panel_coverage": "", - "quoted_cost": "", - "reply_date": "", - "run_id_level_raw_data": "", - "sample_handling_fit": "", - "source_file_provenance": "", - "turnaround_days": "", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - }, - { - "can_cover_full_phase_a": "", - "candidate_id": "the_osmolality_lab", - "contact_date": "", - "csv_schema_acceptance": "", - "decision": "pending_outreach", - "needs_split_scope": "", - "non_glp_scope_control": "", - "notes": "", - "phase_a_media_panel_coverage": "", - "quoted_cost": "", - "reply_date": "", - "run_id_level_raw_data": "", - "sample_handling_fit": "", - "source_file_provenance": "", - "turnaround_days": "", - "vendor_name": "The Osmolality Lab" - }, - { - "can_cover_full_phase_a": "", - "candidate_id": "jordi_labs_el_polymer", - "contact_date": "", - "csv_schema_acceptance": "", - "decision": "pending_outreach", - "needs_split_scope": "", - "non_glp_scope_control": "", - "notes": "", - "phase_a_media_panel_coverage": "", - "quoted_cost": "", - "reply_date": "", - "run_id_level_raw_data": "", - "sample_handling_fit": "", - "source_file_provenance": "", - "turnaround_days": "", - "vendor_name": "Jordi Labs Analytical Testing" - } - ], - "scoring_rubric": [ - { - "criterion": "run_id_level_raw_data", - "pass_condition": "Vendor accepts one result per run_id/sample_event/test field and does not require pooled reporting.", - "weight": 5 - }, - { - "criterion": "phase_a_media_panel_coverage", - "pass_condition": "Vendor can report pH, osmolality, conductivity, and appearance/turbidity/visible precipitate, or clearly defines a split path for the missing field.", - "weight": 5 - }, - { - "criterion": "csv_schema_acceptance", - "pass_condition": "Vendor can fill or accept the ZRC-ND Phase A CSV without changing column names.", - "weight": 4 - }, - { - "criterion": "sample_handling_fit", - "pass_condition": "Vendor can handle nonclinical neural-medium aliquots exposed to regenerated-cellulose/module witness articles.", - "weight": 3 - }, - { - "criterion": "source_file_provenance", - "pass_condition": "Vendor can return raw exports, instrument reports, or stable filenames that reconcile to run_id/sample_id.", - "weight": 3 - }, - { - "criterion": "turnaround_and_cost", - "pass_condition": "Vendor can provide practical R&D quote, sample requirements, and turnaround for the 8-run Phase A package.", - "weight": 2 - }, - { - "criterion": "non_glp_scope_control", - "pass_condition": "Vendor can keep the first pass exploratory and avoid forcing a full GLP/E&L program before Phase A.", - "weight": 2 - } - ], - "status": "pending_outreach" -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_raw_csv_extracted_values.csv b/data/zrc_nd_phase_a_raw_csv_extracted_values.csv deleted file mode 100644 index 6d9cefc..0000000 --- a/data/zrc_nd_phase_a_raw_csv_extracted_values.csv +++ /dev/null @@ -1 +0,0 @@ -profile,run_id,phase,timepoint,replicate,article_id,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes,planned_value,current_value,source_class,instrument_required,recommended_source_file,source_file_exists,review_status,missing_items,capture_instruction diff --git a/data/zrc_nd_phase_a_raw_csv_value_extraction.json b/data/zrc_nd_phase_a_raw_csv_value_extraction.json deleted file mode 100644 index 65b6ec8..0000000 --- a/data/zrc_nd_phase_a_raw_csv_value_extraction.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "boundary": "This extractor reads only existing raw CSV/TSV files in allowed source-file roots. It writes a non-evidence source-value sidecar for the wide importer; missing files produce no synthetic rows.", - "generated_artifacts": { - "json": "data/zrc_nd_phase_a_raw_csv_value_extraction.json", - "report": "reports/zrc_nd_phase_a_raw_csv_value_extraction.md", - "values_out": "data/zrc_nd_phase_a_raw_csv_extracted_values.csv" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/zrc_nd_phase_a_source_values.csv" - }, - "issues": [], - "profile": "zrc_phase_a", - "source_files": [], - "status": "zrc_nd_phase_a_raw_csv_value_extraction_no_raw_csv", - "summary": { - "ambiguous_rows": 0, - "error_count": 0, - "extracted_rows": 0, - "plan_rows": 304, - "raw_csv_found": 0, - "raw_csv_missing": 280, - "raw_csv_source_files": 0, - "raw_csv_unsupported": 24, - "warning_count": 0 - } -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_rfq_dispatch_archive/zrc_nd_phase_a_rfq_dispatch_archive.zip b/data/zrc_nd_phase_a_rfq_dispatch_archive/zrc_nd_phase_a_rfq_dispatch_archive.zip deleted file mode 100644 index a9af73b..0000000 Binary files a/data/zrc_nd_phase_a_rfq_dispatch_archive/zrc_nd_phase_a_rfq_dispatch_archive.zip and /dev/null differ diff --git a/data/zrc_nd_phase_a_rfq_dispatch_archive_manifest.csv b/data/zrc_nd_phase_a_rfq_dispatch_archive_manifest.csv deleted file mode 100644 index a3553e2..0000000 --- a/data/zrc_nd_phase_a_rfq_dispatch_archive_manifest.csv +++ /dev/null @@ -1,25 +0,0 @@ -role,candidate_id,vendor_name,source_path,archive_path,source_exists,source_bytes,source_sha256,expected_sha256,sha256_match,required,errors -dispatch_manifest_report,,,reports/zrc_nd_phase_a_rfq_dispatch_manifest.md,00_manifest/zrc_nd_phase_a_rfq_dispatch_manifest.md,true,4159,5c3ef5448f4e0a8519e5be27e5f4cfe1d729bc2f721c692dcd3279f36bb18ef5,,true,true, -dispatch_manifest_csv,,,data/zrc_nd_phase_a_rfq_dispatch_manifest.csv,00_manifest/zrc_nd_phase_a_rfq_dispatch_manifest.csv,true,6981,c2bdd39b88113ffa578a4dfdbb3344620e24fb80f3fb56152690eb0644d18193,,true,true, -rfq_packet_report,,,reports/zrc_nd_phase_a_rfq_packet.md,00_manifest/zrc_nd_phase_a_rfq_packet.md,true,12838,9fa4d19c68cecb0b01c00c7e9425d8ff85cf5990467da6c844ec8bb3a640a847,,true,true, -rfq_outbox_report,,,reports/zrc_nd_phase_a_rfq_outbox.md,00_manifest/zrc_nd_phase_a_rfq_outbox.md,true,2345,aae8515a23bc6b838e547409f17d7355ee9e7e9c5714147cbd8ee2b693e43624,,true,true, -vendor_contact_plan,,,reports/zrc_nd_phase_a_vendor_contact_plan.md,00_manifest/zrc_nd_phase_a_vendor_contact_plan.md,true,6694,3a3de74fcd3ca3de37d42df6f3016428534d42e9fa845e7c0938a0c74330d0af,,true,true, -service_request,,,reports/zrc_nd_phase_a_service_request.md,00_manifest/zrc_nd_phase_a_service_request.md,true,5958,b238fae53a65e6d622ffc7f374844e734db75af1e991a0ff9004c980a889ae36,,true,true, -chain_of_custody,,,reports/zrc_nd_phase_a_chain_of_custody.md,00_manifest/zrc_nd_phase_a_chain_of_custody.md,true,3921,956241196106ba96d35ebbaa0f69cbf6f39c9f5b1924712813f7f5ab73ef2bd8,,true,true, -delivery_package,,,reports/zrc_nd_phase_a_delivery_package_manifest.md,00_manifest/zrc_nd_phase_a_delivery_package_manifest.md,true,3771,93cb34a0899c24453d78301c4eed590dbe2da9aa10e1e99b4229d5129d5024fd,,true,true, -confirmation_entry_sheet,,,reports/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.md,00_manifest/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.md,true,1873,50455443fcdc146348c089bfc2a6320880a7316ee61c4c3521f7696cae8df50e,,true,true, -confirmation_entry_apply,,,reports/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.md,00_manifest/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.md,true,621,aed0071923ddaa3adaa80618d5233313ed001ccea63d3971df3f997a3c36e306,,true,true, -send_log,,,reports/zrc_nd_phase_a_rfq_send_log.md,00_manifest/zrc_nd_phase_a_rfq_send_log.md,true,1167,05d71d28167e87e76715b768d6bc3aba832e4ea1939eb03817d57714445b2f5c,,true,true, -reply_log,,,reports/zrc_nd_phase_a_rfq_reply_log.md,00_manifest/zrc_nd_phase_a_rfq_reply_log.md,true,1397,1954527ace5f89ef46661d73d5945a6a39ab3a8eec32f902b321fbb91bb6d336,,true,true, -vendor_email_text,pacific_biolabs_physicochemical,Pacific BioLabs Physicochemical Properties Testing,data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt,vendors/1_pacific_biolabs_physicochemical/email/pacific_biolabs_physicochemical_rfq_email.txt,true,2598,f6c44fc452cd075d79d4f0096c4d5f32d7d786e8ad1e44fdd63c1c73dfb50950,f6c44fc452cd075d79d4f0096c4d5f32d7d786e8ad1e44fdd63c1c73dfb50950,true,true, -vendor_bundle,pacific_biolabs_physicochemical,Pacific BioLabs Physicochemical Properties Testing,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip,vendors/1_pacific_biolabs_physicochemical/bundle/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip,true,17424,b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d,b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d,true,true, -send_confirmation_template,pacific_biolabs_physicochemical,Pacific BioLabs Physicochemical Properties Testing,data/rfq_send_confirmation_templates/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation_template.md,vendors/1_pacific_biolabs_physicochemical/confirmation/pacific_biolabs_physicochemical_send_confirmation_template.md,true,1262,7995970b14301a06b4e187c0832b5d88406d5193e5ca81391e07aed625347f35,,true,true, -vendor_email_text,sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt,vendors/2_sigmaaldrich_media_testing/email/sigmaaldrich_media_testing_rfq_email.txt,true,2616,becdb378e4e71b2acc3b69f19d3f3b5f313bc221343f0d5f87197f1a93b87ef0,becdb378e4e71b2acc3b69f19d3f3b5f313bc221343f0d5f87197f1a93b87ef0,true,true, -vendor_bundle,sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip,vendors/2_sigmaaldrich_media_testing/bundle/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip,true,17423,020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2,020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2,true,true, -send_confirmation_template,sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,data/rfq_send_confirmation_templates/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation_template.md,vendors/2_sigmaaldrich_media_testing/confirmation/sigmaaldrich_media_testing_send_confirmation_template.md,true,1264,0839123c84e76ecc45e709b38dfdb2af1cb1845fcd93bf3d0bb7e8e940d3aef7,,true,true, -vendor_email_text,the_osmolality_lab,The Osmolality Lab,data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt,vendors/3_the_osmolality_lab/email/the_osmolality_lab_rfq_email.txt,true,2449,5b1dcbd4a3ed6c9acde102ef228f0e1da90c535e85beb26fb098bcc35a53e6fd,5b1dcbd4a3ed6c9acde102ef228f0e1da90c535e85beb26fb098bcc35a53e6fd,true,true, -vendor_bundle,the_osmolality_lab,The Osmolality Lab,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip,vendors/3_the_osmolality_lab/bundle/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip,true,17359,29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f,29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f,true,true, -send_confirmation_template,the_osmolality_lab,The Osmolality Lab,data/rfq_send_confirmation_templates/zrc_phase_a/the_osmolality_lab_send_confirmation_template.md,vendors/3_the_osmolality_lab/confirmation/the_osmolality_lab_send_confirmation_template.md,true,1166,db0ac04fdb920a4e5f63529a5c1836e6827b1cbe044c7b44efc09cbd77f6494b,,true,true, -vendor_email_text,jordi_labs_el_polymer,Jordi Labs Analytical Testing,data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt,vendors/4_jordi_labs_el_polymer/email/jordi_labs_el_polymer_rfq_email.txt,true,2489,f7e712f84bf28c998a2a2342a1ade7909d95a0d362b8940df7ef6f9db2d85e98,f7e712f84bf28c998a2a2342a1ade7909d95a0d362b8940df7ef6f9db2d85e98,true,true, -vendor_bundle,jordi_labs_el_polymer,Jordi Labs Analytical Testing,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip,vendors/4_jordi_labs_el_polymer/bundle/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip,true,17391,9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3,9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3,true,true, -send_confirmation_template,jordi_labs_el_polymer,Jordi Labs Analytical Testing,data/rfq_send_confirmation_templates/zrc_phase_a/jordi_labs_el_polymer_send_confirmation_template.md,vendors/4_jordi_labs_el_polymer/confirmation/jordi_labs_el_polymer_send_confirmation_template.md,true,1188,cd10fdbd7cd9b1abce439f0c84c9f6405be2de19c4f4c14887cbd72883db0552,,true,true, diff --git a/data/zrc_nd_phase_a_rfq_dispatch_archive_manifest.json b/data/zrc_nd_phase_a_rfq_dispatch_archive_manifest.json deleted file mode 100644 index 133646a..0000000 --- a/data/zrc_nd_phase_a_rfq_dispatch_archive_manifest.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "boundary": "The ZRC-ND Phase A RFQ dispatch archive is a convenience package for manual outreach only. It is not a send confirmation, vendor reply, measurement result, or material suitability claim.", - "generated_artifacts": { - "archive": "data/zrc_nd_phase_a_rfq_dispatch_archive/zrc_nd_phase_a_rfq_dispatch_archive.zip", - "csv": "data/zrc_nd_phase_a_rfq_dispatch_archive_manifest.csv", - "json": "data/zrc_nd_phase_a_rfq_dispatch_archive_manifest.json", - "report": "reports/zrc_nd_phase_a_rfq_dispatch_archive_manifest.md" - }, - "inputs": { - "dispatch_manifest": "data/zrc_nd_phase_a_rfq_dispatch_manifest.json" - }, - "purpose": "Single archive for manually sending first-wave ZRC-ND Phase A RFQ text files and bundles.", - "rows": [ - { - "archive_path": "00_manifest/zrc_nd_phase_a_rfq_dispatch_manifest.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "dispatch_manifest_report", - "sha256_match": "true", - "source_bytes": 4159, - "source_exists": "true", - "source_path": "reports/zrc_nd_phase_a_rfq_dispatch_manifest.md", - "source_sha256": "5c3ef5448f4e0a8519e5be27e5f4cfe1d729bc2f721c692dcd3279f36bb18ef5", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/zrc_nd_phase_a_rfq_dispatch_manifest.csv", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "dispatch_manifest_csv", - "sha256_match": "true", - "source_bytes": 6981, - "source_exists": "true", - "source_path": "data/zrc_nd_phase_a_rfq_dispatch_manifest.csv", - "source_sha256": "c2bdd39b88113ffa578a4dfdbb3344620e24fb80f3fb56152690eb0644d18193", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/zrc_nd_phase_a_rfq_packet.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "rfq_packet_report", - "sha256_match": "true", - "source_bytes": 12838, - "source_exists": "true", - "source_path": "reports/zrc_nd_phase_a_rfq_packet.md", - "source_sha256": "9fa4d19c68cecb0b01c00c7e9425d8ff85cf5990467da6c844ec8bb3a640a847", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/zrc_nd_phase_a_rfq_outbox.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "rfq_outbox_report", - "sha256_match": "true", - "source_bytes": 2345, - "source_exists": "true", - "source_path": "reports/zrc_nd_phase_a_rfq_outbox.md", - "source_sha256": "aae8515a23bc6b838e547409f17d7355ee9e7e9c5714147cbd8ee2b693e43624", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/zrc_nd_phase_a_vendor_contact_plan.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "vendor_contact_plan", - "sha256_match": "true", - "source_bytes": 6694, - "source_exists": "true", - "source_path": "reports/zrc_nd_phase_a_vendor_contact_plan.md", - "source_sha256": "3a3de74fcd3ca3de37d42df6f3016428534d42e9fa845e7c0938a0c74330d0af", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/zrc_nd_phase_a_service_request.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "service_request", - "sha256_match": "true", - "source_bytes": 5958, - "source_exists": "true", - "source_path": "reports/zrc_nd_phase_a_service_request.md", - "source_sha256": "b238fae53a65e6d622ffc7f374844e734db75af1e991a0ff9004c980a889ae36", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/zrc_nd_phase_a_chain_of_custody.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "chain_of_custody", - "sha256_match": "true", - "source_bytes": 3921, - "source_exists": "true", - "source_path": "reports/zrc_nd_phase_a_chain_of_custody.md", - "source_sha256": "956241196106ba96d35ebbaa0f69cbf6f39c9f5b1924712813f7f5ab73ef2bd8", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/zrc_nd_phase_a_delivery_package_manifest.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "delivery_package", - "sha256_match": "true", - "source_bytes": 3771, - "source_exists": "true", - "source_path": "reports/zrc_nd_phase_a_delivery_package_manifest.md", - "source_sha256": "93cb34a0899c24453d78301c4eed590dbe2da9aa10e1e99b4229d5129d5024fd", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "confirmation_entry_sheet", - "sha256_match": "true", - "source_bytes": 1873, - "source_exists": "true", - "source_path": "reports/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.md", - "source_sha256": "50455443fcdc146348c089bfc2a6320880a7316ee61c4c3521f7696cae8df50e", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "confirmation_entry_apply", - "sha256_match": "true", - "source_bytes": 621, - "source_exists": "true", - "source_path": "reports/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.md", - "source_sha256": "aed0071923ddaa3adaa80618d5233313ed001ccea63d3971df3f997a3c36e306", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/zrc_nd_phase_a_rfq_send_log.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "send_log", - "sha256_match": "true", - "source_bytes": 1167, - "source_exists": "true", - "source_path": "reports/zrc_nd_phase_a_rfq_send_log.md", - "source_sha256": "05d71d28167e87e76715b768d6bc3aba832e4ea1939eb03817d57714445b2f5c", - "vendor_name": "" - }, - { - "archive_path": "00_manifest/zrc_nd_phase_a_rfq_reply_log.md", - "candidate_id": "", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "reply_log", - "sha256_match": "true", - "source_bytes": 1397, - "source_exists": "true", - "source_path": "reports/zrc_nd_phase_a_rfq_reply_log.md", - "source_sha256": "1954527ace5f89ef46661d73d5945a6a39ab3a8eec32f902b321fbb91bb6d336", - "vendor_name": "" - }, - { - "archive_path": "vendors/1_pacific_biolabs_physicochemical/email/pacific_biolabs_physicochemical_rfq_email.txt", - "candidate_id": "pacific_biolabs_physicochemical", - "errors": "", - "expected_sha256": "f6c44fc452cd075d79d4f0096c4d5f32d7d786e8ad1e44fdd63c1c73dfb50950", - "required": "true", - "role": "vendor_email_text", - "sha256_match": "true", - "source_bytes": 2598, - "source_exists": "true", - "source_path": "data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt", - "source_sha256": "f6c44fc452cd075d79d4f0096c4d5f32d7d786e8ad1e44fdd63c1c73dfb50950", - "vendor_name": "Pacific BioLabs Physicochemical Properties Testing" - }, - { - "archive_path": "vendors/1_pacific_biolabs_physicochemical/bundle/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "pacific_biolabs_physicochemical", - "errors": "", - "expected_sha256": "b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d", - "required": "true", - "role": "vendor_bundle", - "sha256_match": "true", - "source_bytes": 17424, - "source_exists": "true", - "source_path": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip", - "source_sha256": "b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d", - "vendor_name": "Pacific BioLabs Physicochemical Properties Testing" - }, - { - "archive_path": "vendors/1_pacific_biolabs_physicochemical/confirmation/pacific_biolabs_physicochemical_send_confirmation_template.md", - "candidate_id": "pacific_biolabs_physicochemical", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "send_confirmation_template", - "sha256_match": "true", - "source_bytes": 1262, - "source_exists": "true", - "source_path": "data/rfq_send_confirmation_templates/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation_template.md", - "source_sha256": "7995970b14301a06b4e187c0832b5d88406d5193e5ca81391e07aed625347f35", - "vendor_name": "Pacific BioLabs Physicochemical Properties Testing" - }, - { - "archive_path": "vendors/2_sigmaaldrich_media_testing/email/sigmaaldrich_media_testing_rfq_email.txt", - "candidate_id": "sigmaaldrich_media_testing", - "errors": "", - "expected_sha256": "becdb378e4e71b2acc3b69f19d3f3b5f313bc221343f0d5f87197f1a93b87ef0", - "required": "true", - "role": "vendor_email_text", - "sha256_match": "true", - "source_bytes": 2616, - "source_exists": "true", - "source_path": "data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt", - "source_sha256": "becdb378e4e71b2acc3b69f19d3f3b5f313bc221343f0d5f87197f1a93b87ef0", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - }, - { - "archive_path": "vendors/2_sigmaaldrich_media_testing/bundle/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "sigmaaldrich_media_testing", - "errors": "", - "expected_sha256": "020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2", - "required": "true", - "role": "vendor_bundle", - "sha256_match": "true", - "source_bytes": 17423, - "source_exists": "true", - "source_path": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip", - "source_sha256": "020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - }, - { - "archive_path": "vendors/2_sigmaaldrich_media_testing/confirmation/sigmaaldrich_media_testing_send_confirmation_template.md", - "candidate_id": "sigmaaldrich_media_testing", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "send_confirmation_template", - "sha256_match": "true", - "source_bytes": 1264, - "source_exists": "true", - "source_path": "data/rfq_send_confirmation_templates/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation_template.md", - "source_sha256": "0839123c84e76ecc45e709b38dfdb2af1cb1845fcd93bf3d0bb7e8e940d3aef7", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - }, - { - "archive_path": "vendors/3_the_osmolality_lab/email/the_osmolality_lab_rfq_email.txt", - "candidate_id": "the_osmolality_lab", - "errors": "", - "expected_sha256": "5b1dcbd4a3ed6c9acde102ef228f0e1da90c535e85beb26fb098bcc35a53e6fd", - "required": "true", - "role": "vendor_email_text", - "sha256_match": "true", - "source_bytes": 2449, - "source_exists": "true", - "source_path": "data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt", - "source_sha256": "5b1dcbd4a3ed6c9acde102ef228f0e1da90c535e85beb26fb098bcc35a53e6fd", - "vendor_name": "The Osmolality Lab" - }, - { - "archive_path": "vendors/3_the_osmolality_lab/bundle/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "the_osmolality_lab", - "errors": "", - "expected_sha256": "29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f", - "required": "true", - "role": "vendor_bundle", - "sha256_match": "true", - "source_bytes": 17359, - "source_exists": "true", - "source_path": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip", - "source_sha256": "29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f", - "vendor_name": "The Osmolality Lab" - }, - { - "archive_path": "vendors/3_the_osmolality_lab/confirmation/the_osmolality_lab_send_confirmation_template.md", - "candidate_id": "the_osmolality_lab", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "send_confirmation_template", - "sha256_match": "true", - "source_bytes": 1166, - "source_exists": "true", - "source_path": "data/rfq_send_confirmation_templates/zrc_phase_a/the_osmolality_lab_send_confirmation_template.md", - "source_sha256": "db0ac04fdb920a4e5f63529a5c1836e6827b1cbe044c7b44efc09cbd77f6494b", - "vendor_name": "The Osmolality Lab" - }, - { - "archive_path": "vendors/4_jordi_labs_el_polymer/email/jordi_labs_el_polymer_rfq_email.txt", - "candidate_id": "jordi_labs_el_polymer", - "errors": "", - "expected_sha256": "f7e712f84bf28c998a2a2342a1ade7909d95a0d362b8940df7ef6f9db2d85e98", - "required": "true", - "role": "vendor_email_text", - "sha256_match": "true", - "source_bytes": 2489, - "source_exists": "true", - "source_path": "data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt", - "source_sha256": "f7e712f84bf28c998a2a2342a1ade7909d95a0d362b8940df7ef6f9db2d85e98", - "vendor_name": "Jordi Labs Analytical Testing" - }, - { - "archive_path": "vendors/4_jordi_labs_el_polymer/bundle/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "jordi_labs_el_polymer", - "errors": "", - "expected_sha256": "9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3", - "required": "true", - "role": "vendor_bundle", - "sha256_match": "true", - "source_bytes": 17391, - "source_exists": "true", - "source_path": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip", - "source_sha256": "9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3", - "vendor_name": "Jordi Labs Analytical Testing" - }, - { - "archive_path": "vendors/4_jordi_labs_el_polymer/confirmation/jordi_labs_el_polymer_send_confirmation_template.md", - "candidate_id": "jordi_labs_el_polymer", - "errors": "", - "expected_sha256": "", - "required": "true", - "role": "send_confirmation_template", - "sha256_match": "true", - "source_bytes": 1188, - "source_exists": "true", - "source_path": "data/rfq_send_confirmation_templates/zrc_phase_a/jordi_labs_el_polymer_send_confirmation_template.md", - "source_sha256": "cd10fdbd7cd9b1abce439f0c84c9f6405be2de19c4f4c14887cbd72883db0552", - "vendor_name": "Jordi Labs Analytical Testing" - } - ], - "status": "zrc_phase_a_rfq_dispatch_archive_ready", - "summary": { - "archive_bytes": 95273, - "archive_sha256": "2a2ca661089a7d5ae0a91205968a383b98d7fbd90cea45c46fd4f6c8eab917d7", - "hash_mismatch_files": 0, - "included_files": 24, - "manifest_rows": 24, - "missing_files": 0, - "vendor_rows": 4 - } -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_rfq_dispatch_manifest.csv b/data/zrc_nd_phase_a_rfq_dispatch_manifest.csv deleted file mode 100644 index f6d0e3f..0000000 --- a/data/zrc_nd_phase_a_rfq_dispatch_manifest.csv +++ /dev/null @@ -1,5 +0,0 @@ -dispatch_order,candidate_id,vendor_name,dispatch_status,contact_plan_status,outbox_send_status,send_log_status,primary_send_method,recipient_or_form,contact_url,quote_url,email_file,email_exists,email_sha256,bundle_zip,bundle_exists,bundle_sha256_expected,bundle_sha256_actual,bundle_sha256_match,attachment_count,confirmation_source_file_to_save,confirmation_template,confirmation_template_exists,sent_bundle_sha256_to_record,manual_dispatch_step,non_evidence_boundary -1,pacific_biolabs_physicochemical,Pacific BioLabs Physicochemical Properties Testing,ready_for_manual_dispatch,ready_to_send,ready_to_send,pending_send,contact_form_or_quote_phone,https://pacificbiolabs.com/contact/,https://pacificbiolabs.com/contact/,https://pacificbiolabs.com/contact/,data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt,true,f6c44fc452cd075d79d4f0096c4d5f32d7d786e8ad1e44fdd63c1c73dfb50950,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip,true,b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d,b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d,true,10,data/rfq_send_confirmation_files/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation.txt,data/rfq_send_confirmation_templates/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation_template.md,true,b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d,"Open data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt, send or paste through https://pacificbiolabs.com/contact/, attach/upload data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip with SHA-256 b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation.txt.","This ZRC-ND Phase A dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim." -2,sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,ready_for_manual_dispatch,ready_to_send,ready_to_send,pending_send,service_page_or_technical_service,PSTechService@milliporesigma.com,https://www.sigmaaldrich.com/US/en/collections/offices,https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services,data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt,true,becdb378e4e71b2acc3b69f19d3f3b5f313bc221343f0d5f87197f1a93b87ef0,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip,true,020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2,020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2,true,10,data/rfq_send_confirmation_files/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation.txt,data/rfq_send_confirmation_templates/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation_template.md,true,020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2,"Open data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt, send or paste through PSTechService@milliporesigma.com, attach/upload data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip with SHA-256 020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation.txt.","This ZRC-ND Phase A dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim." -3,the_osmolality_lab,The Osmolality Lab,ready_for_manual_dispatch,ready_to_send,ready_to_send,pending_send,email_or_contact_form,info@osmolab.com,https://theosmolalitylab.com/contact-us/,https://theosmolalitylab.com/contact-us/,data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt,true,5b1dcbd4a3ed6c9acde102ef228f0e1da90c535e85beb26fb098bcc35a53e6fd,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip,true,29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f,29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f,true,10,data/rfq_send_confirmation_files/zrc_phase_a/the_osmolality_lab_send_confirmation.txt,data/rfq_send_confirmation_templates/zrc_phase_a/the_osmolality_lab_send_confirmation_template.md,true,29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f,"Open data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt, send or paste through info@osmolab.com, attach/upload data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip with SHA-256 29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/zrc_phase_a/the_osmolality_lab_send_confirmation.txt.","This ZRC-ND Phase A dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim." -4,jordi_labs_el_polymer,Jordi Labs Analytical Testing,ready_for_manual_dispatch,ready_to_send,ready_to_send,pending_send,contact_form_or_email,info@jordilabs.com,https://jordilabs.com/contact/,https://jordilabs.com/contact/,data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt,true,f7e712f84bf28c998a2a2342a1ade7909d95a0d362b8940df7ef6f9db2d85e98,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip,true,9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3,9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3,true,10,data/rfq_send_confirmation_files/zrc_phase_a/jordi_labs_el_polymer_send_confirmation.txt,data/rfq_send_confirmation_templates/zrc_phase_a/jordi_labs_el_polymer_send_confirmation_template.md,true,9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3,"Open data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt, send or paste through info@jordilabs.com, attach/upload data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip with SHA-256 9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/zrc_phase_a/jordi_labs_el_polymer_send_confirmation.txt.","This ZRC-ND Phase A dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim." diff --git a/data/zrc_nd_phase_a_rfq_dispatch_manifest.json b/data/zrc_nd_phase_a_rfq_dispatch_manifest.json deleted file mode 100644 index f45a230..0000000 --- a/data/zrc_nd_phase_a_rfq_dispatch_manifest.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "boundary": "This ZRC-ND Phase A dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim.", - "generated_artifacts": { - "csv": "data/zrc_nd_phase_a_rfq_dispatch_manifest.csv", - "json": "data/zrc_nd_phase_a_rfq_dispatch_manifest.json", - "report": "reports/zrc_nd_phase_a_rfq_dispatch_manifest.md", - "template_dir": "data/rfq_send_confirmation_templates/zrc_phase_a" - }, - "inputs": { - "contact_plan": "data/zrc_nd_phase_a_vendor_contact_plan.json", - "outbox": "data/zrc_nd_phase_a_rfq_outbox_manifest.json", - "send_log": "data/zrc_nd_phase_a_rfq_send_log.csv" - }, - "purpose": "Pre-send manifest binding every ZRC-ND Phase A RFQ text file to its exact bundle, contact path, and confirmation-save path.", - "rows": [ - { - "attachment_count": "10", - "bundle_exists": "true", - "bundle_sha256_actual": "b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d", - "bundle_sha256_expected": "b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d", - "bundle_sha256_match": "true", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "pacific_biolabs_physicochemical", - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation_template.md", - "confirmation_template_exists": "true", - "contact_plan_status": "ready_to_send", - "contact_url": "https://pacificbiolabs.com/contact/", - "dispatch_order": 1, - "dispatch_status": "ready_for_manual_dispatch", - "email_exists": "true", - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt", - "email_sha256": "f6c44fc452cd075d79d4f0096c4d5f32d7d786e8ad1e44fdd63c1c73dfb50950", - "manual_dispatch_step": "Open data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt, send or paste through https://pacificbiolabs.com/contact/, attach/upload data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip with SHA-256 b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation.txt.", - "non_evidence_boundary": "This ZRC-ND Phase A dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim.", - "outbox_send_status": "ready_to_send", - "primary_send_method": "contact_form_or_quote_phone", - "quote_url": "https://pacificbiolabs.com/contact/", - "recipient_or_form": "https://pacificbiolabs.com/contact/", - "send_log_status": "pending_send", - "sent_bundle_sha256_to_record": "b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d", - "vendor_name": "Pacific BioLabs Physicochemical Properties Testing" - }, - { - "attachment_count": "10", - "bundle_exists": "true", - "bundle_sha256_actual": "020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2", - "bundle_sha256_expected": "020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2", - "bundle_sha256_match": "true", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "sigmaaldrich_media_testing", - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation_template.md", - "confirmation_template_exists": "true", - "contact_plan_status": "ready_to_send", - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "dispatch_order": 2, - "dispatch_status": "ready_for_manual_dispatch", - "email_exists": "true", - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt", - "email_sha256": "becdb378e4e71b2acc3b69f19d3f3b5f313bc221343f0d5f87197f1a93b87ef0", - "manual_dispatch_step": "Open data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt, send or paste through PSTechService@milliporesigma.com, attach/upload data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip with SHA-256 020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation.txt.", - "non_evidence_boundary": "This ZRC-ND Phase A dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim.", - "outbox_send_status": "ready_to_send", - "primary_send_method": "service_page_or_technical_service", - "quote_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "recipient_or_form": "PSTechService@milliporesigma.com", - "send_log_status": "pending_send", - "sent_bundle_sha256_to_record": "020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - }, - { - "attachment_count": "10", - "bundle_exists": "true", - "bundle_sha256_actual": "29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f", - "bundle_sha256_expected": "29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f", - "bundle_sha256_match": "true", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "the_osmolality_lab", - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/zrc_phase_a/the_osmolality_lab_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/zrc_phase_a/the_osmolality_lab_send_confirmation_template.md", - "confirmation_template_exists": "true", - "contact_plan_status": "ready_to_send", - "contact_url": "https://theosmolalitylab.com/contact-us/", - "dispatch_order": 3, - "dispatch_status": "ready_for_manual_dispatch", - "email_exists": "true", - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt", - "email_sha256": "5b1dcbd4a3ed6c9acde102ef228f0e1da90c535e85beb26fb098bcc35a53e6fd", - "manual_dispatch_step": "Open data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt, send or paste through info@osmolab.com, attach/upload data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip with SHA-256 29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/zrc_phase_a/the_osmolality_lab_send_confirmation.txt.", - "non_evidence_boundary": "This ZRC-ND Phase A dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim.", - "outbox_send_status": "ready_to_send", - "primary_send_method": "email_or_contact_form", - "quote_url": "https://theosmolalitylab.com/contact-us/", - "recipient_or_form": "info@osmolab.com", - "send_log_status": "pending_send", - "sent_bundle_sha256_to_record": "29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f", - "vendor_name": "The Osmolality Lab" - }, - { - "attachment_count": "10", - "bundle_exists": "true", - "bundle_sha256_actual": "9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3", - "bundle_sha256_expected": "9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3", - "bundle_sha256_match": "true", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "jordi_labs_el_polymer", - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/zrc_phase_a/jordi_labs_el_polymer_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/zrc_phase_a/jordi_labs_el_polymer_send_confirmation_template.md", - "confirmation_template_exists": "true", - "contact_plan_status": "ready_to_send", - "contact_url": "https://jordilabs.com/contact/", - "dispatch_order": 4, - "dispatch_status": "ready_for_manual_dispatch", - "email_exists": "true", - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt", - "email_sha256": "f7e712f84bf28c998a2a2342a1ade7909d95a0d362b8940df7ef6f9db2d85e98", - "manual_dispatch_step": "Open data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt, send or paste through info@jordilabs.com, attach/upload data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip with SHA-256 9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/zrc_phase_a/jordi_labs_el_polymer_send_confirmation.txt.", - "non_evidence_boundary": "This ZRC-ND Phase A dispatch manifest only identifies files for manual RFQ outreach. It is not a send confirmation, quote reply, measurement result, or material suitability claim.", - "outbox_send_status": "ready_to_send", - "primary_send_method": "contact_form_or_email", - "quote_url": "https://jordilabs.com/contact/", - "recipient_or_form": "info@jordilabs.com", - "send_log_status": "pending_send", - "sent_bundle_sha256_to_record": "9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3", - "vendor_name": "Jordi Labs Analytical Testing" - } - ], - "status": "zrc_phase_a_rfq_dispatch_manifest_ready", - "summary": { - "blocked_rows": 0, - "bundle_sha256_match_rows": 4, - "confirmation_template_rows": 4, - "dispatch_rows": 4, - "email_file_present_rows": 4, - "ready_for_manual_dispatch_rows": 4 - } -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_rfq_outbox/attachment_manifest.csv b/data/zrc_nd_phase_a_rfq_outbox/attachment_manifest.csv deleted file mode 100644 index baede5b..0000000 --- a/data/zrc_nd_phase_a_rfq_outbox/attachment_manifest.csv +++ /dev/null @@ -1,11 +0,0 @@ -path,exists,bytes,sha256,role -reports/zrc_nd_phase_a_service_request.md,true,5958,b238fae53a65e6d622ffc7f374844e734db75af1e991a0ff9004c980a889ae36,"Primary Phase A lab/cooperator request: matrix, deliverables, acceptance gate, and rejection rules." -data/zrc_nd_phase_a_sentinel_template.csv,true,2577,e818351e23fb1ddafdd308567b26c4e51460197a84e563e81e21697f476081dc,The 8-row Phase A CSV to fill with real medium-integrity measurements. -reports/zrc_nd_phase_a_sentinel_packet.md,true,2121,3909825a725dda647e267f3ec7001b5dcf0cf1575aaebdf02a043120d6c837c4,Human-readable Phase A sentinel packet and gate description. -data/zrc_nd_phase_a_sentinel_sample_manifest.csv,true,3819,9c6b4f82658ea78b1e5986d0291c4bb37d6f8197919eb31bef452d644717c23a,"Sample-level manifest tying run_id to sample_event, article, timepoint, and readouts." -data/zrc_nd_phase_a_sample_labels.csv,true,7214,916a6fbd8f037631907db75127ca970f9afa75307d37b42d23a9ed09993e7269,"Printable/transferable labels with sample IDs, planned container IDs, article IDs, and handling notes." -data/zrc_nd_phase_a_chain_of_custody.csv,true,4185,d78e28317e5a2573a97e63b5923f5e06139537eceb8defeac569ae4947bb4adb,"Blank chain-of-custody transfer rows to complete during preparation, release, receipt, and return." -reports/zrc_nd_phase_a_chain_of_custody.md,true,3921,956241196106ba96d35ebbaa0f69cbf6f39c9f5b1924712813f7f5ab73ef2bd8,"Human-readable sample handoff instructions, blank fields, and rejection rules." -reports/zrc_nd_next_measurements.md,true,2320,401abb7ac6fc1049ee22eddd8df8d96ae79e051d9db310086f0d463749c150b8,Current adaptive selector output showing why Phase A is the next ZRC-ND batch. -data/zrc_nd_3p5k_guard_validation_package.json,true,16446,24d8c12bf6184352f9f8f34f2acb1300c5614bdfa76fdaebb76870c9a16f66e2,"Machine-readable validation package defining articles, assays, fields, and gates." -reports/zrc_nd_run_plan.md,true,910,97fae50d5aef7e2d50baf8ff13d9c202b8cc5e2e0e21f449c1402f16e688b1db,Full non-cell run plan context; Phase A is the current first sentinel subset. diff --git a/data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt b/data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt deleted file mode 100644 index 484757e..0000000 --- a/data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt +++ /dev/null @@ -1,46 +0,0 @@ -To: Jordi Labs Analytical Testing team -Source URL: https://jordilabs.com/lab-testing/ -Contact URL: https://jordilabs.com/contact/ -Subject: RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (Jordi Labs Analytical Testing) - -Hello Jordi Labs Analytical Testing team, - -I am requesting a feasibility review and non-GLP R&D quote for a small acellular medium-integrity measurement package. - -Study summary: -- Active material route: limina_zrc_nd_v0_1 -- Lead variant: zrc_nd_3p5k_mpc_guard -- Runs: 8 -- Sample events: 16 -- Articles: unmodified 3.5 kDa RC baseline, MPC-like 3.5 kDa lead, 10 kDa challenge, and no-module static control -- Timepoints: 0 h and 24 h -- Required outputs: pH, osmolality, conductivity, appearance/turbidity/visible precipitate, raw exports or instrument reports, and chain-of-custody by run_id - -Important constraint: we need one result per provided run_id/sample_event/test field. Pooled averages or narrative certificates alone will not satisfy the study. - -Could you please confirm: -- Can they run a minimal aqueous neural-medium material-blank screen before a full E&L program? -- Can they preserve run_id-level aliquot identity and source-file provenance? -- Can they add basic pH/osmolality/conductivity, or should they only be used after Phase A shows extractables or particulate concerns? -- Whether you can fill or accept the provided Phase A CSV schema without changing column names -- Minimum aliquot volume, sample container, and sample count requirements -- Expected turnaround time, quote range, sample acceptance constraints, and whether SDS/lot documentation is required before shipping - -Attached/package files to review: -- reports/zrc_nd_phase_a_service_request.md -- data/zrc_nd_phase_a_sentinel_template.csv -- reports/zrc_nd_phase_a_sentinel_packet.md -- data/zrc_nd_phase_a_sentinel_sample_manifest.csv -- data/zrc_nd_phase_a_sample_labels.csv -- data/zrc_nd_phase_a_chain_of_custody.csv -- reports/zrc_nd_phase_a_chain_of_custody.md -- reports/zrc_nd_next_measurements.md -- data/zrc_nd_3p5k_guard_validation_package.json -- reports/zrc_nd_run_plan.md - -This is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal Phase A gate. - -Thank you. - -Boundary: -RFQ emails, vendor capability replies, supplier guidance, and quote packages are sourcing artifacts only. They do not count as material evidence until real returned measurements pass LIMINA QC. diff --git a/data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt b/data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt deleted file mode 100644 index b5c55a1..0000000 --- a/data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt +++ /dev/null @@ -1,46 +0,0 @@ -To: Pacific BioLabs Physicochemical Properties Testing team -Source URL: https://pacificbiolabs.com/physicochemical-properties -Contact URL: https://pacificbiolabs.com/contact/ -Subject: RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (Pacific BioLabs Physicochemical Properties Testing) - -Hello Pacific BioLabs Physicochemical Properties Testing team, - -I am requesting a feasibility review and non-GLP R&D quote for a small acellular medium-integrity measurement package. - -Study summary: -- Active material route: limina_zrc_nd_v0_1 -- Lead variant: zrc_nd_3p5k_mpc_guard -- Runs: 8 -- Sample events: 16 -- Articles: unmodified 3.5 kDa RC baseline, MPC-like 3.5 kDa lead, 10 kDa challenge, and no-module static control -- Timepoints: 0 h and 24 h -- Required outputs: pH, osmolality, conductivity, appearance/turbidity/visible precipitate, raw exports or instrument reports, and chain-of-custody by run_id - -Important constraint: we need one result per provided run_id/sample_event/test field. Pooled averages or narrative certificates alone will not satisfy the study. - -Could you please confirm: -- Can conductivity be added to the pH/osmolality/appearance panel or routed to another internal analytical service? -- Can they accept nonclinical neural-medium aliquots exposed to regenerated-cellulose membrane/module articles? -- Can they preserve one report row per LIMINA run_id and return raw values in the provided CSV schema? -- Whether you can fill or accept the provided Phase A CSV schema without changing column names -- Minimum aliquot volume, sample container, and sample count requirements -- Expected turnaround time, quote range, sample acceptance constraints, and whether SDS/lot documentation is required before shipping - -Attached/package files to review: -- reports/zrc_nd_phase_a_service_request.md -- data/zrc_nd_phase_a_sentinel_template.csv -- reports/zrc_nd_phase_a_sentinel_packet.md -- data/zrc_nd_phase_a_sentinel_sample_manifest.csv -- data/zrc_nd_phase_a_sample_labels.csv -- data/zrc_nd_phase_a_chain_of_custody.csv -- reports/zrc_nd_phase_a_chain_of_custody.md -- reports/zrc_nd_next_measurements.md -- data/zrc_nd_3p5k_guard_validation_package.json -- reports/zrc_nd_run_plan.md - -This is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal Phase A gate. - -Thank you. - -Boundary: -RFQ emails, vendor capability replies, supplier guidance, and quote packages are sourcing artifacts only. They do not count as material evidence until real returned measurements pass LIMINA QC. diff --git a/data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt b/data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt deleted file mode 100644 index 9c06e59..0000000 --- a/data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt +++ /dev/null @@ -1,46 +0,0 @@ -To: MilliporeSigma Cell Culture Media Stability and Testing Services team -Source URL: https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services -Contact URL: https://www.sigmaaldrich.com/US/en/collections/offices -Subject: RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (MilliporeSigma Cell Culture Media Stability and Testing Services) - -Hello MilliporeSigma Cell Culture Media Stability and Testing Services team, - -I am requesting a feasibility review and non-GLP R&D quote for a small acellular medium-integrity measurement package. - -Study summary: -- Active material route: limina_zrc_nd_v0_1 -- Lead variant: zrc_nd_3p5k_mpc_guard -- Runs: 8 -- Sample events: 16 -- Articles: unmodified 3.5 kDa RC baseline, MPC-like 3.5 kDa lead, 10 kDa challenge, and no-module static control -- Timepoints: 0 h and 24 h -- Required outputs: pH, osmolality, conductivity, appearance/turbidity/visible precipitate, raw exports or instrument reports, and chain-of-custody by run_id - -Important constraint: we need one result per provided run_id/sample_event/test field. Pooled averages or narrative certificates alone will not satisfy the study. - -Could you please confirm: -- Can conductivity be added for the Phase A material-blank gate? -- Can they test customer-prepared medium aliquots exposed to dialysis membrane/module witness articles? -- Can they return one row per run_id instead of product-lot summaries? -- Whether you can fill or accept the provided Phase A CSV schema without changing column names -- Minimum aliquot volume, sample container, and sample count requirements -- Expected turnaround time, quote range, sample acceptance constraints, and whether SDS/lot documentation is required before shipping - -Attached/package files to review: -- reports/zrc_nd_phase_a_service_request.md -- data/zrc_nd_phase_a_sentinel_template.csv -- reports/zrc_nd_phase_a_sentinel_packet.md -- data/zrc_nd_phase_a_sentinel_sample_manifest.csv -- data/zrc_nd_phase_a_sample_labels.csv -- data/zrc_nd_phase_a_chain_of_custody.csv -- reports/zrc_nd_phase_a_chain_of_custody.md -- reports/zrc_nd_next_measurements.md -- data/zrc_nd_3p5k_guard_validation_package.json -- reports/zrc_nd_run_plan.md - -This is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal Phase A gate. - -Thank you. - -Boundary: -RFQ emails, vendor capability replies, supplier guidance, and quote packages are sourcing artifacts only. They do not count as material evidence until real returned measurements pass LIMINA QC. diff --git a/data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt b/data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt deleted file mode 100644 index 654aaf5..0000000 --- a/data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt +++ /dev/null @@ -1,46 +0,0 @@ -To: The Osmolality Lab team -Source URL: https://theosmolalitylab.com/services/ -Contact URL: https://theosmolalitylab.com/contact-us/ -Subject: RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (The Osmolality Lab) - -Hello The Osmolality Lab team, - -I am requesting a feasibility review and non-GLP R&D quote for a small acellular medium-integrity measurement package. - -Study summary: -- Active material route: limina_zrc_nd_v0_1 -- Lead variant: zrc_nd_3p5k_mpc_guard -- Runs: 8 -- Sample events: 16 -- Articles: unmodified 3.5 kDa RC baseline, MPC-like 3.5 kDa lead, 10 kDa challenge, and no-module static control -- Timepoints: 0 h and 24 h -- Required outputs: pH, osmolality, conductivity, appearance/turbidity/visible precipitate, raw exports or instrument reports, and chain-of-custody by run_id - -Important constraint: we need one result per provided run_id/sample_event/test field. Pooled averages or narrative certificates alone will not satisfy the study. - -Could you please confirm: -- Can they accept acellular neural-medium aliquots that are non-biohazard and non-radioactive? -- Can they run all 8 Phase A rows as individual run_id samples with pre/post mapping? -- Can they support conductivity directly, or should conductivity be measured by another lab or internally? -- Whether you can fill or accept the provided Phase A CSV schema without changing column names -- Minimum aliquot volume, sample container, and sample count requirements -- Expected turnaround time, quote range, sample acceptance constraints, and whether SDS/lot documentation is required before shipping - -Attached/package files to review: -- reports/zrc_nd_phase_a_service_request.md -- data/zrc_nd_phase_a_sentinel_template.csv -- reports/zrc_nd_phase_a_sentinel_packet.md -- data/zrc_nd_phase_a_sentinel_sample_manifest.csv -- data/zrc_nd_phase_a_sample_labels.csv -- data/zrc_nd_phase_a_chain_of_custody.csv -- reports/zrc_nd_phase_a_chain_of_custody.md -- reports/zrc_nd_next_measurements.md -- data/zrc_nd_3p5k_guard_validation_package.json -- reports/zrc_nd_run_plan.md - -This is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal Phase A gate. - -Thank you. - -Boundary: -RFQ emails, vendor capability replies, supplier guidance, and quote packages are sourcing artifacts only. They do not count as material evidence until real returned measurements pass LIMINA QC. diff --git a/data/zrc_nd_phase_a_rfq_outbox/rfq_outbox.csv b/data/zrc_nd_phase_a_rfq_outbox/rfq_outbox.csv deleted file mode 100644 index c1e409b..0000000 --- a/data/zrc_nd_phase_a_rfq_outbox/rfq_outbox.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,source_url,contact_url,subject,email_file,bundle_zip,bundle_bytes,bundle_sha256,attachment_count,send_status -pacific_biolabs_physicochemical,Pacific BioLabs Physicochemical Properties Testing,https://pacificbiolabs.com/physicochemical-properties,https://pacificbiolabs.com/contact/,RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (Pacific BioLabs Physicochemical Properties Testing),data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip,17424,b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d,10,ready_to_send -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services,https://www.sigmaaldrich.com/US/en/collections/offices,RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (MilliporeSigma Cell Culture Media Stability and Testing Services),data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip,17423,020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2,10,ready_to_send -the_osmolality_lab,The Osmolality Lab,https://theosmolalitylab.com/services/,https://theosmolalitylab.com/contact-us/,RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (The Osmolality Lab),data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip,17359,29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f,10,ready_to_send -jordi_labs_el_polymer,Jordi Labs Analytical Testing,https://jordilabs.com/lab-testing/,https://jordilabs.com/contact/,RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (Jordi Labs Analytical Testing),data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip,17391,9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3,10,ready_to_send diff --git a/data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip b/data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip deleted file mode 100644 index 63ccb34..0000000 Binary files a/data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip and /dev/null differ diff --git a/data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip b/data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip deleted file mode 100644 index e031c9c..0000000 Binary files a/data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip and /dev/null differ diff --git a/data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip b/data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip deleted file mode 100644 index 8071fae..0000000 Binary files a/data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip and /dev/null differ diff --git a/data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip b/data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip deleted file mode 100644 index 42dac42..0000000 Binary files a/data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip and /dev/null differ diff --git a/data/zrc_nd_phase_a_rfq_outbox_manifest.json b/data/zrc_nd_phase_a_rfq_outbox_manifest.json deleted file mode 100644 index c7dc89e..0000000 --- a/data/zrc_nd_phase_a_rfq_outbox_manifest.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "active_candidate": "limina_zrc_nd_v0_1", - "attachment_count": 10, - "attachment_manifest": "data/zrc_nd_phase_a_rfq_outbox/attachment_manifest.csv", - "delivery_missing_required_file_ids": [], - "missing_attachment_paths": [], - "non_evidence_boundary": "RFQ emails, vendor capability replies, supplier guidance, and quote packages are sourcing artifacts only. They do not count as material evidence until real returned measurements pass LIMINA QC.", - "outbox_csv": "data/zrc_nd_phase_a_rfq_outbox/rfq_outbox.csv", - "outbox_dir": "data/zrc_nd_phase_a_rfq_outbox", - "purpose": "Vendor-specific RFQ emails and zip bundles for sending the real ZRC-ND Phase A measurement request.", - "quote_request_count": 4, - "ready_to_send_count": 4, - "rows": [ - { - "attachment_count": 10, - "bundle_bytes": 17424, - "bundle_sha256": "b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "pacific_biolabs_physicochemical", - "contact_url": "https://pacificbiolabs.com/contact/", - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt", - "send_status": "ready_to_send", - "source_url": "https://pacificbiolabs.com/physicochemical-properties", - "subject": "RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (Pacific BioLabs Physicochemical Properties Testing)", - "vendor_name": "Pacific BioLabs Physicochemical Properties Testing" - }, - { - "attachment_count": 10, - "bundle_bytes": 17423, - "bundle_sha256": "020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "sigmaaldrich_media_testing", - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt", - "send_status": "ready_to_send", - "source_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "subject": "RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (MilliporeSigma Cell Culture Media Stability and Testing Services)", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - }, - { - "attachment_count": 10, - "bundle_bytes": 17359, - "bundle_sha256": "29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "the_osmolality_lab", - "contact_url": "https://theosmolalitylab.com/contact-us/", - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt", - "send_status": "ready_to_send", - "source_url": "https://theosmolalitylab.com/services/", - "subject": "RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (The Osmolality Lab)", - "vendor_name": "The Osmolality Lab" - }, - { - "attachment_count": 10, - "bundle_bytes": 17391, - "bundle_sha256": "9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "jordi_labs_el_polymer", - "contact_url": "https://jordilabs.com/contact/", - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt", - "send_status": "ready_to_send", - "source_url": "https://jordilabs.com/lab-testing/", - "subject": "RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (Jordi Labs Analytical Testing)", - "vendor_name": "Jordi Labs Analytical Testing" - } - ], - "send_steps": [ - "Open the vendor-specific email text file.", - "Attach the matching vendor zip bundle when emailing or upload the bundle through the vendor form if available.", - "Send through the user's email account or official vendor contact form.", - "Record contact_date in data/zrc_nd_phase_a_quote_tracker.csv.", - "Paste any reply into the quote tracker before selecting an execution path." - ], - "status": "ready_to_send_outbox" -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_rfq_packet.json b/data/zrc_nd_phase_a_rfq_packet.json deleted file mode 100644 index 7eda73b..0000000 --- a/data/zrc_nd_phase_a_rfq_packet.json +++ /dev/null @@ -1,141 +0,0 @@ -{ - "active_candidate": "limina_zrc_nd_v0_1", - "attachment_paths": [ - "reports/zrc_nd_phase_a_service_request.md", - "data/zrc_nd_phase_a_sentinel_template.csv", - "reports/zrc_nd_phase_a_sentinel_packet.md", - "data/zrc_nd_phase_a_sentinel_sample_manifest.csv", - "data/zrc_nd_phase_a_sample_labels.csv", - "data/zrc_nd_phase_a_chain_of_custody.csv", - "reports/zrc_nd_phase_a_chain_of_custody.md", - "reports/zrc_nd_next_measurements.md", - "data/zrc_nd_3p5k_guard_validation_package.json", - "reports/zrc_nd_run_plan.md" - ], - "disqualifiers": [ - "Only returns pooled averages, certificates, or narrative feasibility opinions.", - "Will not preserve run_id, sample_event, and target-field mapping.", - "Cannot return raw exports, instrument reports, or traceable source files.", - "Requires changing article identity, timepoints, membrane material, or control rows without a deviation log.", - "Treats quote, supplier support, or vendor capability claims as final material suitability evidence." - ], - "non_claim_boundary": "Vendor capability claims and supplier guidance do not count as material evidence. Only returned real run-level measurements that pass LIMINA QC and claim audit can advance the material.", - "purpose": "Per-candidate RFQ material for obtaining real ZRC-ND Phase A measurements.", - "quote_requests": [ - { - "candidate_id": "pacific_biolabs_physicochemical", - "contact_url": "https://pacificbiolabs.com/contact/", - "email_body": "Hello Pacific BioLabs Physicochemical Properties Testing team,\n\nI am requesting a feasibility review and non-GLP R&D quote for a small acellular medium-integrity measurement package.\n\nStudy summary:\n- Active material route: limina_zrc_nd_v0_1\n- Lead variant: zrc_nd_3p5k_mpc_guard\n- Runs: 8\n- Sample events: 16\n- Articles: unmodified 3.5 kDa RC baseline, MPC-like 3.5 kDa lead, 10 kDa challenge, and no-module static control\n- Timepoints: 0 h and 24 h\n- Required outputs: pH, osmolality, conductivity, appearance/turbidity/visible precipitate, raw exports or instrument reports, and chain-of-custody by run_id\n\nImportant constraint: we need one result per provided run_id/sample_event/test field. Pooled averages or narrative certificates alone will not satisfy the study.\n\nCould you please confirm:\n- Can conductivity be added to the pH/osmolality/appearance panel or routed to another internal analytical service?\n- Can they accept nonclinical neural-medium aliquots exposed to regenerated-cellulose membrane/module articles?\n- Can they preserve one report row per LIMINA run_id and return raw values in the provided CSV schema?\n- Whether you can fill or accept the provided Phase A CSV schema without changing column names\n- Minimum aliquot volume, sample container, and sample count requirements\n- Expected turnaround time, quote range, sample acceptance constraints, and whether SDS/lot documentation is required before shipping\n\nAttached/package files to review:\n- reports/zrc_nd_phase_a_service_request.md\n- data/zrc_nd_phase_a_sentinel_template.csv\n- reports/zrc_nd_phase_a_sentinel_packet.md\n- data/zrc_nd_phase_a_sentinel_sample_manifest.csv\n- data/zrc_nd_phase_a_sample_labels.csv\n- data/zrc_nd_phase_a_chain_of_custody.csv\n- reports/zrc_nd_phase_a_chain_of_custody.md\n- reports/zrc_nd_next_measurements.md\n- data/zrc_nd_3p5k_guard_validation_package.json\n- reports/zrc_nd_run_plan.md\n\nThis is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal Phase A gate.\n\nThank you.", - "name": "Pacific BioLabs Physicochemical Properties Testing", - "scope_instruction": "Ask whether they can execute the full Phase A pH/osmolality/conductivity/appearance package or identify a split path for missing fields.", - "service_type": "physicochemical_testing", - "source_url": "https://pacificbiolabs.com/physicochemical-properties", - "subject": "RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (Pacific BioLabs Physicochemical Properties Testing)", - "unknowns_to_resolve": [ - "Can conductivity be added to the pH/osmolality/appearance panel or routed to another internal analytical service?", - "Can they accept nonclinical neural-medium aliquots exposed to regenerated-cellulose membrane/module articles?", - "Can they preserve one report row per LIMINA run_id and return raw values in the provided CSV schema?" - ] - }, - { - "candidate_id": "sigmaaldrich_media_testing", - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "email_body": "Hello MilliporeSigma Cell Culture Media Stability and Testing Services team,\n\nI am requesting a feasibility review and non-GLP R&D quote for a small acellular medium-integrity measurement package.\n\nStudy summary:\n- Active material route: limina_zrc_nd_v0_1\n- Lead variant: zrc_nd_3p5k_mpc_guard\n- Runs: 8\n- Sample events: 16\n- Articles: unmodified 3.5 kDa RC baseline, MPC-like 3.5 kDa lead, 10 kDa challenge, and no-module static control\n- Timepoints: 0 h and 24 h\n- Required outputs: pH, osmolality, conductivity, appearance/turbidity/visible precipitate, raw exports or instrument reports, and chain-of-custody by run_id\n\nImportant constraint: we need one result per provided run_id/sample_event/test field. Pooled averages or narrative certificates alone will not satisfy the study.\n\nCould you please confirm:\n- Can conductivity be added for the Phase A material-blank gate?\n- Can they test customer-prepared medium aliquots exposed to dialysis membrane/module witness articles?\n- Can they return one row per run_id instead of product-lot summaries?\n- Whether you can fill or accept the provided Phase A CSV schema without changing column names\n- Minimum aliquot volume, sample container, and sample count requirements\n- Expected turnaround time, quote range, sample acceptance constraints, and whether SDS/lot documentation is required before shipping\n\nAttached/package files to review:\n- reports/zrc_nd_phase_a_service_request.md\n- data/zrc_nd_phase_a_sentinel_template.csv\n- reports/zrc_nd_phase_a_sentinel_packet.md\n- data/zrc_nd_phase_a_sentinel_sample_manifest.csv\n- data/zrc_nd_phase_a_sample_labels.csv\n- data/zrc_nd_phase_a_chain_of_custody.csv\n- reports/zrc_nd_phase_a_chain_of_custody.md\n- reports/zrc_nd_next_measurements.md\n- data/zrc_nd_3p5k_guard_validation_package.json\n- reports/zrc_nd_run_plan.md\n\nThis is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal Phase A gate.\n\nThank you.", - "name": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "scope_instruction": "Ask whether they can execute the full Phase A pH/osmolality/conductivity/appearance package or identify a split path for missing fields.", - "service_type": "cell_culture_media_testing", - "source_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "subject": "RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (MilliporeSigma Cell Culture Media Stability and Testing Services)", - "unknowns_to_resolve": [ - "Can conductivity be added for the Phase A material-blank gate?", - "Can they test customer-prepared medium aliquots exposed to dialysis membrane/module witness articles?", - "Can they return one row per run_id instead of product-lot summaries?" - ] - }, - { - "candidate_id": "the_osmolality_lab", - "contact_url": "https://theosmolalitylab.com/contact-us/", - "email_body": "Hello The Osmolality Lab team,\n\nI am requesting a feasibility review and non-GLP R&D quote for a small acellular medium-integrity measurement package.\n\nStudy summary:\n- Active material route: limina_zrc_nd_v0_1\n- Lead variant: zrc_nd_3p5k_mpc_guard\n- Runs: 8\n- Sample events: 16\n- Articles: unmodified 3.5 kDa RC baseline, MPC-like 3.5 kDa lead, 10 kDa challenge, and no-module static control\n- Timepoints: 0 h and 24 h\n- Required outputs: pH, osmolality, conductivity, appearance/turbidity/visible precipitate, raw exports or instrument reports, and chain-of-custody by run_id\n\nImportant constraint: we need one result per provided run_id/sample_event/test field. Pooled averages or narrative certificates alone will not satisfy the study.\n\nCould you please confirm:\n- Can they accept acellular neural-medium aliquots that are non-biohazard and non-radioactive?\n- Can they run all 8 Phase A rows as individual run_id samples with pre/post mapping?\n- Can they support conductivity directly, or should conductivity be measured by another lab or internally?\n- Whether you can fill or accept the provided Phase A CSV schema without changing column names\n- Minimum aliquot volume, sample container, and sample count requirements\n- Expected turnaround time, quote range, sample acceptance constraints, and whether SDS/lot documentation is required before shipping\n\nAttached/package files to review:\n- reports/zrc_nd_phase_a_service_request.md\n- data/zrc_nd_phase_a_sentinel_template.csv\n- reports/zrc_nd_phase_a_sentinel_packet.md\n- data/zrc_nd_phase_a_sentinel_sample_manifest.csv\n- data/zrc_nd_phase_a_sample_labels.csv\n- data/zrc_nd_phase_a_chain_of_custody.csv\n- reports/zrc_nd_phase_a_chain_of_custody.md\n- reports/zrc_nd_next_measurements.md\n- data/zrc_nd_3p5k_guard_validation_package.json\n- reports/zrc_nd_run_plan.md\n\nThis is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal Phase A gate.\n\nThank you.", - "name": "The Osmolality Lab", - "scope_instruction": "Use as focused pH/osmolality provider and ask whether conductivity is supported or must be split.", - "service_type": "osmolality_and_ph_testing", - "source_url": "https://theosmolalitylab.com/services/", - "subject": "RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (The Osmolality Lab)", - "unknowns_to_resolve": [ - "Can they accept acellular neural-medium aliquots that are non-biohazard and non-radioactive?", - "Can they run all 8 Phase A rows as individual run_id samples with pre/post mapping?", - "Can they support conductivity directly, or should conductivity be measured by another lab or internally?" - ] - }, - { - "candidate_id": "jordi_labs_el_polymer", - "contact_url": "https://jordilabs.com/contact/", - "email_body": "Hello Jordi Labs Analytical Testing team,\n\nI am requesting a feasibility review and non-GLP R&D quote for a small acellular medium-integrity measurement package.\n\nStudy summary:\n- Active material route: limina_zrc_nd_v0_1\n- Lead variant: zrc_nd_3p5k_mpc_guard\n- Runs: 8\n- Sample events: 16\n- Articles: unmodified 3.5 kDa RC baseline, MPC-like 3.5 kDa lead, 10 kDa challenge, and no-module static control\n- Timepoints: 0 h and 24 h\n- Required outputs: pH, osmolality, conductivity, appearance/turbidity/visible precipitate, raw exports or instrument reports, and chain-of-custody by run_id\n\nImportant constraint: we need one result per provided run_id/sample_event/test field. Pooled averages or narrative certificates alone will not satisfy the study.\n\nCould you please confirm:\n- Can they run a minimal aqueous neural-medium material-blank screen before a full E&L program?\n- Can they preserve run_id-level aliquot identity and source-file provenance?\n- Can they add basic pH/osmolality/conductivity, or should they only be used after Phase A shows extractables or particulate concerns?\n- Whether you can fill or accept the provided Phase A CSV schema without changing column names\n- Minimum aliquot volume, sample container, and sample count requirements\n- Expected turnaround time, quote range, sample acceptance constraints, and whether SDS/lot documentation is required before shipping\n\nAttached/package files to review:\n- reports/zrc_nd_phase_a_service_request.md\n- data/zrc_nd_phase_a_sentinel_template.csv\n- reports/zrc_nd_phase_a_sentinel_packet.md\n- data/zrc_nd_phase_a_sentinel_sample_manifest.csv\n- data/zrc_nd_phase_a_sample_labels.csv\n- data/zrc_nd_phase_a_chain_of_custody.csv\n- reports/zrc_nd_phase_a_chain_of_custody.md\n- reports/zrc_nd_next_measurements.md\n- data/zrc_nd_3p5k_guard_validation_package.json\n- reports/zrc_nd_run_plan.md\n\nThis is exploratory R&D screening. We are not requesting a material suitability claim from the vendor; we only need traceable raw measurements to feed our internal Phase A gate.\n\nThank you.", - "name": "Jordi Labs Analytical Testing", - "scope_instruction": "Use for custom chemistry or E&L escalation if Phase A shows drift, particulates, or extractables concern.", - "service_type": "polymer_and_extractables_testing", - "source_url": "https://jordilabs.com/lab-testing/", - "subject": "RFQ: non-GLP acellular ZRC-ND Phase A medium-integrity measurements (Jordi Labs Analytical Testing)", - "unknowns_to_resolve": [ - "Can they run a minimal aqueous neural-medium material-blank screen before a full E&L program?", - "Can they preserve run_id-level aliquot identity and source-file provenance?", - "Can they add basic pH/osmolality/conductivity, or should they only be used after Phase A shows extractables or particulate concerns?" - ] - } - ], - "scorecard_columns": [ - "candidate_id", - "contact_date", - "reply_date", - "can_cover_full_phase_a", - "needs_split_scope", - "run_id_level_raw_data", - "phase_a_media_panel_coverage", - "csv_schema_acceptance", - "sample_handling_fit", - "source_file_provenance", - "non_glp_scope_control", - "turnaround_days", - "quoted_cost", - "decision", - "notes" - ], - "scoring_rubric": [ - { - "criterion": "run_id_level_raw_data", - "pass_condition": "Vendor accepts one result per run_id/sample_event/test field and does not require pooled reporting.", - "weight": 5 - }, - { - "criterion": "phase_a_media_panel_coverage", - "pass_condition": "Vendor can report pH, osmolality, conductivity, and appearance/turbidity/visible precipitate, or clearly defines a split path for the missing field.", - "weight": 5 - }, - { - "criterion": "csv_schema_acceptance", - "pass_condition": "Vendor can fill or accept the ZRC-ND Phase A CSV without changing column names.", - "weight": 4 - }, - { - "criterion": "sample_handling_fit", - "pass_condition": "Vendor can handle nonclinical neural-medium aliquots exposed to regenerated-cellulose/module witness articles.", - "weight": 3 - }, - { - "criterion": "source_file_provenance", - "pass_condition": "Vendor can return raw exports, instrument reports, or stable filenames that reconcile to run_id/sample_id.", - "weight": 3 - }, - { - "criterion": "turnaround_and_cost", - "pass_condition": "Vendor can provide practical R&D quote, sample requirements, and turnaround for the 8-run Phase A package.", - "weight": 2 - }, - { - "criterion": "non_glp_scope_control", - "pass_condition": "Vendor can keep the first pass exploratory and avoid forcing a full GLP/E&L program before Phase A.", - "weight": 2 - } - ], - "status": "ready_to_send_rfq" -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_rfq_reply_action_pack.json b/data/zrc_nd_phase_a_rfq_reply_action_pack.json deleted file mode 100644 index dacb271..0000000 --- a/data/zrc_nd_phase_a_rfq_reply_action_pack.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "boundary": "This reply action pack is sourcing logistics only. Vendor replies and quotes can authorize execution, but only returned measurement files can become ZRC-ND material evidence.", - "generated_artifacts": { - "csv": "data/zrc_nd_phase_a_rfq_reply_action_queue.csv", - "json": "data/zrc_nd_phase_a_rfq_reply_action_pack.json", - "report": "reports/zrc_nd_phase_a_rfq_reply_action_pack.md", - "template_dir": "data/rfq_reply_review_templates/zrc_phase_a" - }, - "inputs": { - "reply_log": "data/zrc_nd_phase_a_rfq_reply_log.csv", - "send_log": "data/zrc_nd_phase_a_rfq_send_log.csv", - "tracker": "data/zrc_nd_phase_a_quote_tracker.csv" - }, - "purpose": "Action queue for preserving source-backed ZRC-ND Phase A vendor replies and turning them into execution-selection inputs.", - "status": "zrc_phase_a_rfq_reply_action_pack_waiting_for_send", - "summary": { - "action_rows": 4, - "awaiting_reply_rows": 0, - "ready_for_reply_log_apply_rows": 0, - "received_needs_review_fields_rows": 0, - "received_needs_source_file_rows": 0, - "status_counts": { - "waiting_for_rfq_send": 4 - }, - "waiting_for_send_rows": 4 - } -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_rfq_reply_action_queue.csv b/data/zrc_nd_phase_a_rfq_reply_action_queue.csv deleted file mode 100644 index bb0141f..0000000 --- a/data/zrc_nd_phase_a_rfq_reply_action_queue.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,reply_action_status,send_status,sent_at,tracker_contact_date,reply_status,reply_at,reply_source_file_to_save,reply_template,required_review_fields,hard_required_fields,missing_review_fields,selection_decision,quoted_cost,turnaround_days,next_action -pacific_biolabs_physicochemical,Pacific BioLabs Physicochemical Properties Testing,waiting_for_rfq_send,pending_send,,,not_sent_yet,,data/rfq_reply_files/zrc_phase_a/pacific_biolabs_physicochemical_reply.txt,data/rfq_reply_review_templates/zrc_phase_a/pacific_biolabs_physicochemical_reply_review_template.md,can_cover_full_phase_a;needs_split_scope;run_id_level_raw_data;phase_a_media_panel_coverage;csv_schema_acceptance;sample_handling_fit;source_file_provenance;non_glp_scope_control,run_id_level_raw_data;csv_schema_acceptance;sample_handling_fit;source_file_provenance;non_glp_scope_control,can_cover_full_phase_a;needs_split_scope;run_id_level_raw_data;phase_a_media_panel_coverage;csv_schema_acceptance;sample_handling_fit;source_file_provenance;non_glp_scope_control,pending_outreach,,,"Send the ZRC-ND Phase A RFQ first, then save a real send confirmation and apply the send log." -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,waiting_for_rfq_send,pending_send,,,not_sent_yet,,data/rfq_reply_files/zrc_phase_a/sigmaaldrich_media_testing_reply.txt,data/rfq_reply_review_templates/zrc_phase_a/sigmaaldrich_media_testing_reply_review_template.md,can_cover_full_phase_a;needs_split_scope;run_id_level_raw_data;phase_a_media_panel_coverage;csv_schema_acceptance;sample_handling_fit;source_file_provenance;non_glp_scope_control,run_id_level_raw_data;csv_schema_acceptance;sample_handling_fit;source_file_provenance;non_glp_scope_control,can_cover_full_phase_a;needs_split_scope;run_id_level_raw_data;phase_a_media_panel_coverage;csv_schema_acceptance;sample_handling_fit;source_file_provenance;non_glp_scope_control,pending_outreach,,,"Send the ZRC-ND Phase A RFQ first, then save a real send confirmation and apply the send log." -the_osmolality_lab,The Osmolality Lab,waiting_for_rfq_send,pending_send,,,not_sent_yet,,data/rfq_reply_files/zrc_phase_a/the_osmolality_lab_reply.txt,data/rfq_reply_review_templates/zrc_phase_a/the_osmolality_lab_reply_review_template.md,can_cover_full_phase_a;needs_split_scope;run_id_level_raw_data;phase_a_media_panel_coverage;csv_schema_acceptance;sample_handling_fit;source_file_provenance;non_glp_scope_control,run_id_level_raw_data;csv_schema_acceptance;sample_handling_fit;source_file_provenance;non_glp_scope_control,can_cover_full_phase_a;needs_split_scope;run_id_level_raw_data;phase_a_media_panel_coverage;csv_schema_acceptance;sample_handling_fit;source_file_provenance;non_glp_scope_control,pending_outreach,,,"Send the ZRC-ND Phase A RFQ first, then save a real send confirmation and apply the send log." -jordi_labs_el_polymer,Jordi Labs Analytical Testing,waiting_for_rfq_send,pending_send,,,not_sent_yet,,data/rfq_reply_files/zrc_phase_a/jordi_labs_el_polymer_reply.txt,data/rfq_reply_review_templates/zrc_phase_a/jordi_labs_el_polymer_reply_review_template.md,can_cover_full_phase_a;needs_split_scope;run_id_level_raw_data;phase_a_media_panel_coverage;csv_schema_acceptance;sample_handling_fit;source_file_provenance;non_glp_scope_control,run_id_level_raw_data;csv_schema_acceptance;sample_handling_fit;source_file_provenance;non_glp_scope_control,can_cover_full_phase_a;needs_split_scope;run_id_level_raw_data;phase_a_media_panel_coverage;csv_schema_acceptance;sample_handling_fit;source_file_provenance;non_glp_scope_control,pending_outreach,,,"Send the ZRC-ND Phase A RFQ first, then save a real send confirmation and apply the send log." diff --git a/data/zrc_nd_phase_a_rfq_reply_intake.csv b/data/zrc_nd_phase_a_rfq_reply_intake.csv deleted file mode 100644 index 385c2be..0000000 --- a/data/zrc_nd_phase_a_rfq_reply_intake.csv +++ /dev/null @@ -1 +0,0 @@ -candidate_id,vendor_name,reply_file,reply_sha256,detected_by,file_type,from_address,to_address,subject,reply_at,message_id_or_reference,send_verified,intake_status,applied_to_reply_log,boundary diff --git a/data/zrc_nd_phase_a_rfq_reply_intake.json b/data/zrc_nd_phase_a_rfq_reply_intake.json deleted file mode 100644 index a82bdd5..0000000 --- a/data/zrc_nd_phase_a_rfq_reply_intake.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "applied_rows": 0, - "boundary": "RFQ replies and quotes document sourcing and execution selection only. They are not material measurement evidence and cannot advance suitability gates without returned measured rows.", - "intake_csv": "data/zrc_nd_phase_a_rfq_reply_intake.csv", - "label": "ZRC-ND Phase A", - "needs_manual_review_rows": 0, - "needs_verified_send_rows": 0, - "profile": "zrc_phase_a", - "purpose": "Scan original RFQ reply files and conservatively register sent EML replies for human review without scoring or selecting providers.", - "ready_to_register_rows": 0, - "reply_file_dir": "data/rfq_reply_files/zrc_phase_a", - "reply_log_csv": "data/zrc_nd_phase_a_rfq_reply_log.csv", - "row_count": 0, - "rows": [], - "status": "zrc_nd_phase_a_rfq_reply_intake_waiting_for_reply_files", - "tracker_field_count": 16, - "unmatched_rows": 0 -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_rfq_reply_log.csv b/data/zrc_nd_phase_a_rfq_reply_log.csv deleted file mode 100644 index 29450d6..0000000 --- a/data/zrc_nd_phase_a_rfq_reply_log.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,reply_status,reply_at,responder_name,quote_id_or_reference,reply_source_file,reply_source_sha256,computed_reply_source_sha256,can_cover_full_phase_a,needs_split_scope,run_id_level_raw_data,phase_a_media_panel_coverage,csv_schema_acceptance,sample_handling_fit,source_file_provenance,non_glp_scope_control,turnaround_days,quoted_cost,decision,notes,tracker_contact_date,tracker_reply_date,tracker_decision -pacific_biolabs_physicochemical,Pacific BioLabs Physicochemical Properties Testing,not_sent_yet,,,,data/rfq_reply_files/zrc_phase_a/pacific_biolabs_physicochemical_reply.txt,,,,,,,,,,,,,,,,,pending_outreach -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,not_sent_yet,,,,data/rfq_reply_files/zrc_phase_a/sigmaaldrich_media_testing_reply.txt,,,,,,,,,,,,,,,,,pending_outreach -the_osmolality_lab,The Osmolality Lab,not_sent_yet,,,,data/rfq_reply_files/zrc_phase_a/the_osmolality_lab_reply.txt,,,,,,,,,,,,,,,,,pending_outreach -jordi_labs_el_polymer,Jordi Labs Analytical Testing,not_sent_yet,,,,data/rfq_reply_files/zrc_phase_a/jordi_labs_el_polymer_reply.txt,,,,,,,,,,,,,,,,,pending_outreach diff --git a/data/zrc_nd_phase_a_rfq_reply_log.json b/data/zrc_nd_phase_a_rfq_reply_log.json deleted file mode 100644 index ff0d027..0000000 --- a/data/zrc_nd_phase_a_rfq_reply_log.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "applied_tracker_field_updates": 0, - "error_count": 0, - "errors": [], - "field_contract": { - "hash_rule": "If reply_source_sha256 is supplied, it must match the current SHA-256 of reply_source_file.", - "reply_status_values": [ - "awaiting_reply", - "cannot_quote", - "clarification_received", - "declined", - "needs_clarification", - "no_reply", - "not_sent_yet", - "out_of_scope", - "pending_reply", - "quote_received", - "received", - "reply_received" - ], - "required_when_declined": [ - "reply_at", - "responder_name", - "reply_source_file" - ], - "required_when_received": [ - "reply_at", - "responder_name", - "reply_source_file", - "can_cover_full_phase_a", - "needs_split_scope", - "run_id_level_raw_data", - "phase_a_media_panel_coverage", - "csv_schema_acceptance", - "sample_handling_fit", - "source_file_provenance", - "non_glp_scope_control" - ] - }, - "hard_required_fields": [ - "run_id_level_raw_data", - "csv_schema_acceptance", - "sample_handling_fit", - "source_file_provenance", - "non_glp_scope_control" - ], - "label": "ZRC-ND Phase A", - "non_evidence_boundary": "RFQ reply logs and quote trackers document sourcing and execution selection only. They are not material evidence and cannot advance suitability gates without returned measured rows.", - "pending_rows": 4, - "profile": "zrc_phase_a", - "purpose": "Track source-backed RFQ replies and safely apply parsed reply fields to the quote tracker.", - "received_rows": 0, - "reply_file_dir": "data/rfq_reply_files/zrc_phase_a", - "reply_file_readme": "data/rfq_reply_files/zrc_phase_a/README.md", - "reply_log_csv": "data/zrc_nd_phase_a_rfq_reply_log.csv", - "review_fields": [ - "can_cover_full_phase_a", - "needs_split_scope", - "run_id_level_raw_data", - "phase_a_media_panel_coverage", - "csv_schema_acceptance", - "sample_handling_fit", - "source_file_provenance", - "non_glp_scope_control" - ], - "row_count": 4, - "status": "zrc_nd_phase_a_rfq_reply_log_waiting_for_reply_files", - "tracker_csv": "data/zrc_nd_phase_a_quote_tracker.csv", - "valid_reply_candidate_ids": [], - "valid_reply_rows": 0, - "valid_reply_summaries": [], - "warning_count": 0, - "warnings": [] -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_rfq_send_cockpit.json b/data/zrc_nd_phase_a_rfq_send_cockpit.json deleted file mode 100644 index f57c8e6..0000000 --- a/data/zrc_nd_phase_a_rfq_send_cockpit.json +++ /dev/null @@ -1,181 +0,0 @@ -{ - "boundary": "This cockpit is logistics scaffolding only. It does not send email, create measurement evidence, select a provider, authorize execution, or advance material suitability gates.", - "generated_artifacts": { - "html": "reports/zrc_nd_phase_a_rfq_send_cockpit.html", - "json": "data/zrc_nd_phase_a_rfq_send_cockpit.json", - "report": "reports/zrc_nd_phase_a_rfq_send_cockpit.md" - }, - "inputs": { - "dispatch_archive": "data/zrc_nd_phase_a_rfq_dispatch_archive_manifest.json", - "dispatch_manifest": "data/zrc_nd_phase_a_rfq_dispatch_manifest.json", - "reply_action_pack": "data/zrc_nd_phase_a_rfq_reply_action_pack.json", - "reply_action_queue": "data/zrc_nd_phase_a_rfq_reply_action_queue.csv", - "reply_intake": "data/zrc_nd_phase_a_rfq_reply_intake.json", - "reply_log": "data/zrc_nd_phase_a_rfq_reply_log.csv", - "send_confirmation_entry_apply": "data/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.json", - "send_confirmation_entry_sheet": "data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.json", - "send_confirmation_intake": "data/zrc_nd_phase_a_rfq_send_confirmation_intake.json", - "send_log": "data/zrc_nd_phase_a_rfq_send_log.csv" - }, - "next_commands": [ - "python3 scripts/intake_limina_rfq_send_confirmations.py --profile zrc_phase_a", - "python3 scripts/render_zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.py", - "python3 scripts/apply_zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.py", - "python3 scripts/apply_limina_rfq_send_log.py --profile zrc_phase_a", - "python3 scripts/intake_limina_rfq_replies.py --profile zrc_phase_a", - "python3 scripts/apply_limina_rfq_reply_log.py --profile zrc_phase_a", - "python3 scripts/evaluate_zrc_nd_phase_a_quote_replies.py", - "python3 scripts/run_limina_iteration.py" - ], - "purpose": "Single local handoff surface for manually sending first-wave ZRC-ND Phase A RFQs and preserving source confirmations/replies.", - "rows": [ - { - "attachment_count": "10", - "bundle_exists": true, - "bundle_sha256": "b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d", - "bundle_sha256_match": "true", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "pacific_biolabs_physicochemical", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation_template.md", - "contact_url": "https://pacificbiolabs.com/contact/", - "dispatch_order": 1, - "dispatch_status": "ready_for_manual_dispatch", - "email_exists": true, - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt", - "manual_dispatch_step": "Open data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt, send or paste through https://pacificbiolabs.com/contact/, attach/upload data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip with SHA-256 b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation.txt.", - "next_action": "Open the email text, send or paste it through the listed recipient/form with the exact bundle, then save a real confirmation file.", - "primary_send_method": "contact_form_or_quote_phone", - "quote_url": "https://pacificbiolabs.com/contact/", - "recipient_or_form": "https://pacificbiolabs.com/contact/", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_log_status": "not_sent_yet", - "reply_source_file_to_save": "data/rfq_reply_files/zrc_phase_a/pacific_biolabs_physicochemical_reply.txt", - "reply_template": "data/rfq_reply_review_templates/zrc_phase_a/pacific_biolabs_physicochemical_reply_review_template.md", - "send_action_status": "ready_for_manual_dispatch", - "send_log_status": "pending_send", - "vendor_name": "Pacific BioLabs Physicochemical Properties Testing" - }, - { - "attachment_count": "10", - "bundle_exists": true, - "bundle_sha256": "020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2", - "bundle_sha256_match": "true", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "sigmaaldrich_media_testing", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation_template.md", - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "dispatch_order": 2, - "dispatch_status": "ready_for_manual_dispatch", - "email_exists": true, - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt", - "manual_dispatch_step": "Open data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt, send or paste through PSTechService@milliporesigma.com, attach/upload data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip with SHA-256 020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation.txt.", - "next_action": "Open the email text, send or paste it through the listed recipient/form with the exact bundle, then save a real confirmation file.", - "primary_send_method": "service_page_or_technical_service", - "quote_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "recipient_or_form": "PSTechService@milliporesigma.com", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_log_status": "not_sent_yet", - "reply_source_file_to_save": "data/rfq_reply_files/zrc_phase_a/sigmaaldrich_media_testing_reply.txt", - "reply_template": "data/rfq_reply_review_templates/zrc_phase_a/sigmaaldrich_media_testing_reply_review_template.md", - "send_action_status": "ready_for_manual_dispatch", - "send_log_status": "pending_send", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - }, - { - "attachment_count": "10", - "bundle_exists": true, - "bundle_sha256": "29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f", - "bundle_sha256_match": "true", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "the_osmolality_lab", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/zrc_phase_a/the_osmolality_lab_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/zrc_phase_a/the_osmolality_lab_send_confirmation_template.md", - "contact_url": "https://theosmolalitylab.com/contact-us/", - "dispatch_order": 3, - "dispatch_status": "ready_for_manual_dispatch", - "email_exists": true, - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt", - "manual_dispatch_step": "Open data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt, send or paste through info@osmolab.com, attach/upload data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip with SHA-256 29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/zrc_phase_a/the_osmolality_lab_send_confirmation.txt.", - "next_action": "Open the email text, send or paste it through the listed recipient/form with the exact bundle, then save a real confirmation file.", - "primary_send_method": "email_or_contact_form", - "quote_url": "https://theosmolalitylab.com/contact-us/", - "recipient_or_form": "info@osmolab.com", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_log_status": "not_sent_yet", - "reply_source_file_to_save": "data/rfq_reply_files/zrc_phase_a/the_osmolality_lab_reply.txt", - "reply_template": "data/rfq_reply_review_templates/zrc_phase_a/the_osmolality_lab_reply_review_template.md", - "send_action_status": "ready_for_manual_dispatch", - "send_log_status": "pending_send", - "vendor_name": "The Osmolality Lab" - }, - { - "attachment_count": "10", - "bundle_exists": true, - "bundle_sha256": "9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3", - "bundle_sha256_match": "true", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "jordi_labs_el_polymer", - "confirmation_file_exists": false, - "confirmation_source_file_to_save": "data/rfq_send_confirmation_files/zrc_phase_a/jordi_labs_el_polymer_send_confirmation.txt", - "confirmation_template": "data/rfq_send_confirmation_templates/zrc_phase_a/jordi_labs_el_polymer_send_confirmation_template.md", - "contact_url": "https://jordilabs.com/contact/", - "dispatch_order": 4, - "dispatch_status": "ready_for_manual_dispatch", - "email_exists": true, - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt", - "manual_dispatch_step": "Open data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt, send or paste through info@jordilabs.com, attach/upload data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip with SHA-256 9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3, then save the original sent-email export, form confirmation, PDF, or screenshot at data/rfq_send_confirmation_files/zrc_phase_a/jordi_labs_el_polymer_send_confirmation.txt.", - "next_action": "Open the email text, send or paste it through the listed recipient/form with the exact bundle, then save a real confirmation file.", - "primary_send_method": "contact_form_or_email", - "quote_url": "https://jordilabs.com/contact/", - "recipient_or_form": "info@jordilabs.com", - "reply_action_status": "waiting_for_rfq_send", - "reply_file_exists": false, - "reply_log_status": "not_sent_yet", - "reply_source_file_to_save": "data/rfq_reply_files/zrc_phase_a/jordi_labs_el_polymer_reply.txt", - "reply_template": "data/rfq_reply_review_templates/zrc_phase_a/jordi_labs_el_polymer_reply_review_template.md", - "send_action_status": "ready_for_manual_dispatch", - "send_log_status": "pending_send", - "vendor_name": "Jordi Labs Analytical Testing" - } - ], - "status": "zrc_phase_a_rfq_send_cockpit_ready_for_manual_send", - "summary": { - "confirmation_files_present": 0, - "dispatch_archive_path": "data/zrc_nd_phase_a_rfq_dispatch_archive/zrc_nd_phase_a_rfq_dispatch_archive.zip", - "dispatch_archive_sha256": "2a2ca661089a7d5ae0a91205968a383b98d7fbd90cea45c46fd4f6c8eab917d7", - "dispatch_archive_status": "zrc_phase_a_rfq_dispatch_archive_ready", - "dispatch_manifest_blocked_rows": 0, - "dispatch_manifest_ready_rows": 4, - "dispatch_manifest_status": "zrc_phase_a_rfq_dispatch_manifest_ready", - "missing_bundle_rows": 0, - "missing_email_rows": 0, - "ready_to_use_rows": 4, - "reply_action_awaiting_reply_rows": 0, - "reply_action_pack_status": "zrc_phase_a_rfq_reply_action_pack_waiting_for_send", - "reply_action_ready_apply_rows": 0, - "reply_action_waiting_for_send_rows": 4, - "reply_files_present": 0, - "reply_intake_files": 0, - "reply_intake_status": "zrc_nd_phase_a_rfq_reply_intake_waiting_for_reply_files", - "send_confirmation_entry_apply_applied_rows": 0, - "send_confirmation_entry_apply_blocked_rows": 0, - "send_confirmation_entry_apply_rows": 0, - "send_confirmation_entry_apply_status": "zrc_phase_a_rfq_send_confirmation_entry_apply_no_apply_rows", - "send_confirmation_entry_sheet_blocked_rows": 0, - "send_confirmation_entry_sheet_ready_rows": 0, - "send_confirmation_entry_sheet_rows": 4, - "send_confirmation_entry_sheet_status": "zrc_phase_a_rfq_send_confirmation_entry_sheet_waiting_for_confirmation_files", - "send_confirmation_intake_files": 0, - "send_confirmation_intake_status": "zrc_nd_phase_a_rfq_send_confirmation_intake_waiting_for_confirmation_files", - "sent_confirmation_verified_rows": 0, - "vendor_rows": 4 - } -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.json b/data/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.json deleted file mode 100644 index f77cf63..0000000 --- a/data/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "boundary": "Applying ZRC-ND Phase A RFQ send-confirmation entries updates outreach logistics only. It does not create measurement evidence or advance material suitability gates.", - "generated_artifacts": { - "json": "data/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.json", - "report": "reports/zrc_nd_phase_a_rfq_send_confirmation_entry_apply.md" - }, - "inputs": { - "send_log": "data/zrc_nd_phase_a_rfq_send_log.csv", - "sheet": "data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.csv" - }, - "purpose": "Apply reviewed non-EML ZRC-ND Phase A RFQ send confirmations into the send log without treating outreach as evidence.", - "rows": [], - "status": "zrc_phase_a_rfq_send_confirmation_entry_apply_no_apply_rows", - "summary": { - "applied_rows": 0, - "apply_rows": 0, - "blocked_rows": 0, - "error_count": 0, - "sheet_rows": 4 - } -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.csv b/data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.csv deleted file mode 100644 index 0749907..0000000 --- a/data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,entry_status,send_log_status,send_confirmation_source_file,source_file_exists,computed_send_confirmation_source_sha256,send_confirmation_source_sha256_to_apply,expected_bundle_sha256,sent_bundle_sha256_to_record,send_status_to_apply,sent_at,sent_by,send_method,recipient_or_form,message_id_or_confirmation,human_reviewed_by,apply,notes,boundary -pacific_biolabs_physicochemical,Pacific BioLabs Physicochemical Properties Testing,waiting_for_confirmation_file,pending_send,data/rfq_send_confirmation_files/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation.txt,false,,,b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d,b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d,sent,,,contact_form_or_quote_phone,https://pacificbiolabs.com/contact/,,,no,,"Manual ZRC-ND Phase A RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence." -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,waiting_for_confirmation_file,pending_send,data/rfq_send_confirmation_files/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation.txt,false,,,020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2,020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2,sent,,,service_page_or_technical_service,PSTechService@milliporesigma.com,,,no,,"Manual ZRC-ND Phase A RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence." -the_osmolality_lab,The Osmolality Lab,waiting_for_confirmation_file,pending_send,data/rfq_send_confirmation_files/zrc_phase_a/the_osmolality_lab_send_confirmation.txt,false,,,29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f,29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f,sent,,,email_or_contact_form,info@osmolab.com,,,no,,"Manual ZRC-ND Phase A RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence." -jordi_labs_el_polymer,Jordi Labs Analytical Testing,waiting_for_confirmation_file,pending_send,data/rfq_send_confirmation_files/zrc_phase_a/jordi_labs_el_polymer_send_confirmation.txt,false,,,9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3,9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3,sent,,,contact_form_or_email,info@jordilabs.com,,,no,,"Manual ZRC-ND Phase A RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence." diff --git a/data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.json b/data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.json deleted file mode 100644 index 28d7e28..0000000 --- a/data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.json +++ /dev/null @@ -1,113 +0,0 @@ -{ - "boundary": "Manual ZRC-ND Phase A RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence.", - "generated_artifacts": { - "csv": "data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.csv", - "json": "data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.json", - "report": "reports/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.md" - }, - "inputs": { - "dispatch_manifest": "data/zrc_nd_phase_a_rfq_dispatch_manifest.csv", - "existing_sheet": "data/zrc_nd_phase_a_rfq_send_confirmation_entry_sheet.csv", - "send_log": "data/zrc_nd_phase_a_rfq_send_log.csv" - }, - "purpose": "Guarded manual-entry sheet for non-EML ZRC-ND Phase A RFQ send confirmations such as web-form confirmations, PDFs, screenshots, or saved pages.", - "rows": [ - { - "apply": "no", - "boundary": "Manual ZRC-ND Phase A RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence.", - "candidate_id": "pacific_biolabs_physicochemical", - "computed_send_confirmation_source_sha256": "", - "entry_status": "waiting_for_confirmation_file", - "expected_bundle_sha256": "b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d", - "human_reviewed_by": "", - "message_id_or_confirmation": "", - "notes": "", - "recipient_or_form": "https://pacificbiolabs.com/contact/", - "send_confirmation_source_file": "data/rfq_send_confirmation_files/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation.txt", - "send_confirmation_source_sha256_to_apply": "", - "send_log_status": "pending_send", - "send_method": "contact_form_or_quote_phone", - "send_status_to_apply": "sent", - "sent_at": "", - "sent_bundle_sha256_to_record": "b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d", - "sent_by": "", - "source_file_exists": "false", - "vendor_name": "Pacific BioLabs Physicochemical Properties Testing" - }, - { - "apply": "no", - "boundary": "Manual ZRC-ND Phase A RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence.", - "candidate_id": "sigmaaldrich_media_testing", - "computed_send_confirmation_source_sha256": "", - "entry_status": "waiting_for_confirmation_file", - "expected_bundle_sha256": "020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2", - "human_reviewed_by": "", - "message_id_or_confirmation": "", - "notes": "", - "recipient_or_form": "PSTechService@milliporesigma.com", - "send_confirmation_source_file": "data/rfq_send_confirmation_files/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation.txt", - "send_confirmation_source_sha256_to_apply": "", - "send_log_status": "pending_send", - "send_method": "service_page_or_technical_service", - "send_status_to_apply": "sent", - "sent_at": "", - "sent_bundle_sha256_to_record": "020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2", - "sent_by": "", - "source_file_exists": "false", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services" - }, - { - "apply": "no", - "boundary": "Manual ZRC-ND Phase A RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence.", - "candidate_id": "the_osmolality_lab", - "computed_send_confirmation_source_sha256": "", - "entry_status": "waiting_for_confirmation_file", - "expected_bundle_sha256": "29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f", - "human_reviewed_by": "", - "message_id_or_confirmation": "", - "notes": "", - "recipient_or_form": "info@osmolab.com", - "send_confirmation_source_file": "data/rfq_send_confirmation_files/zrc_phase_a/the_osmolality_lab_send_confirmation.txt", - "send_confirmation_source_sha256_to_apply": "", - "send_log_status": "pending_send", - "send_method": "email_or_contact_form", - "send_status_to_apply": "sent", - "sent_at": "", - "sent_bundle_sha256_to_record": "29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f", - "sent_by": "", - "source_file_exists": "false", - "vendor_name": "The Osmolality Lab" - }, - { - "apply": "no", - "boundary": "Manual ZRC-ND Phase A RFQ send-confirmation entries document outreach logistics only. They are not quote replies, measurements, or material suitability evidence.", - "candidate_id": "jordi_labs_el_polymer", - "computed_send_confirmation_source_sha256": "", - "entry_status": "waiting_for_confirmation_file", - "expected_bundle_sha256": "9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3", - "human_reviewed_by": "", - "message_id_or_confirmation": "", - "notes": "", - "recipient_or_form": "info@jordilabs.com", - "send_confirmation_source_file": "data/rfq_send_confirmation_files/zrc_phase_a/jordi_labs_el_polymer_send_confirmation.txt", - "send_confirmation_source_sha256_to_apply": "", - "send_log_status": "pending_send", - "send_method": "contact_form_or_email", - "send_status_to_apply": "sent", - "sent_at": "", - "sent_bundle_sha256_to_record": "9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3", - "sent_by": "", - "source_file_exists": "false", - "vendor_name": "Jordi Labs Analytical Testing" - } - ], - "status": "zrc_phase_a_rfq_send_confirmation_entry_sheet_waiting_for_confirmation_files", - "summary": { - "already_sent_rows": 0, - "blocked_rows": 0, - "entry_rows": 4, - "ready_to_apply_rows": 0, - "source_file_present_rows": 0, - "waiting_for_confirmation_file_rows": 4 - } -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_rfq_send_confirmation_intake.csv b/data/zrc_nd_phase_a_rfq_send_confirmation_intake.csv deleted file mode 100644 index 0932995..0000000 --- a/data/zrc_nd_phase_a_rfq_send_confirmation_intake.csv +++ /dev/null @@ -1 +0,0 @@ -candidate_id,vendor_name,confirmation_file,confirmation_sha256,detected_by,file_type,from_address,to_address,subject,sent_at,message_id_or_confirmation,attachment_bundle_sha256,expected_bundle_sha256,bundle_hash_match,intake_status,applied_to_send_log,boundary diff --git a/data/zrc_nd_phase_a_rfq_send_confirmation_intake.json b/data/zrc_nd_phase_a_rfq_send_confirmation_intake.json deleted file mode 100644 index 9d83187..0000000 --- a/data/zrc_nd_phase_a_rfq_send_confirmation_intake.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "applied_rows": 0, - "boundary": "RFQ send confirmations only document outreach logistics. They are not material measurement evidence and cannot advance suitability gates without returned raw measurements.", - "bundle_hash_matched_rows": 0, - "intake_csv": "data/zrc_nd_phase_a_rfq_send_confirmation_intake.csv", - "label": "ZRC-ND Phase A", - "needs_review_rows": 0, - "profile": "zrc_phase_a", - "purpose": "Scan original RFQ send confirmations and conservatively auto-fill send-log rows only when a sent .eml proves the expected bundle attachment.", - "ready_to_apply_rows": 0, - "row_count": 0, - "rows": [], - "send_confirmation_dir": "data/rfq_send_confirmation_files/zrc_phase_a", - "send_log_csv": "data/zrc_nd_phase_a_rfq_send_log.csv", - "status": "zrc_nd_phase_a_rfq_send_confirmation_intake_waiting_for_confirmation_files", - "tracker_field_count": 16, - "unknown_existing_rows": [], - "unmatched_rows": 0 -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_rfq_send_log.csv b/data/zrc_nd_phase_a_rfq_send_log.csv deleted file mode 100644 index 4122266..0000000 --- a/data/zrc_nd_phase_a_rfq_send_log.csv +++ /dev/null @@ -1,5 +0,0 @@ -candidate_id,vendor_name,wave,send_status,sent_at,sent_by,send_method,recipient_or_form,message_id_or_confirmation,send_confirmation_source_file,send_confirmation_source_sha256,computed_send_confirmation_source_sha256,sent_bundle_sha256,email_file,bundle_zip,expected_bundle_sha256,attachment_count,tracker_contact_date,tracker_reply_date,tracker_decision,notes -pacific_biolabs_physicochemical,Pacific BioLabs Physicochemical Properties Testing,first_wave,pending_send,,,contact_form_or_quote_phone,https://pacificbiolabs.com/contact/,,data/rfq_send_confirmation_files/zrc_phase_a/pacific_biolabs_physicochemical_send_confirmation.txt,,,,data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip,b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d,10,,,pending_outreach, -sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,first_wave,pending_send,,,service_page_or_technical_service,PSTechService@milliporesigma.com,,data/rfq_send_confirmation_files/zrc_phase_a/sigmaaldrich_media_testing_send_confirmation.txt,,,,data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip,020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2,10,,,pending_outreach, -the_osmolality_lab,The Osmolality Lab,first_wave,pending_send,,,email_or_contact_form,info@osmolab.com,,data/rfq_send_confirmation_files/zrc_phase_a/the_osmolality_lab_send_confirmation.txt,,,,data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip,29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f,10,,,pending_outreach, -jordi_labs_el_polymer,Jordi Labs Analytical Testing,first_wave,pending_send,,,contact_form_or_email,info@jordilabs.com,,data/rfq_send_confirmation_files/zrc_phase_a/jordi_labs_el_polymer_send_confirmation.txt,,,,data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip,9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3,10,,,pending_outreach, diff --git a/data/zrc_nd_phase_a_rfq_send_log.json b/data/zrc_nd_phase_a_rfq_send_log.json deleted file mode 100644 index 850aa1f..0000000 --- a/data/zrc_nd_phase_a_rfq_send_log.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "applied_tracker_contact_dates": 0, - "error_count": 0, - "errors": [], - "field_contract": { - "confirmation_hash_rule": "If send_confirmation_source_sha256 is supplied, it must match the current SHA-256 of send_confirmation_source_file.", - "hash_rule": "If sent_bundle_sha256 is supplied, it must match expected_bundle_sha256 from the RFQ outbox manifest.", - "required_when_sent": [ - "sent_at", - "sent_by", - "send_method", - "recipient_or_form", - "message_id_or_confirmation", - "send_confirmation_source_file" - ], - "send_status_values": [ - "do_not_send", - "emailed", - "form_submitted", - "needs_attention", - "paused", - "pending_send", - "sent", - "submitted" - ] - }, - "label": "ZRC-ND Phase A", - "non_evidence_boundary": "RFQ send logs and quote trackers only document execution logistics. They are not material evidence and cannot advance suitability gates without returned measured rows.", - "pending_rows": 4, - "profile": "zrc_phase_a", - "purpose": "Track real RFQ send confirmations and safely apply verified send dates to the quote tracker.", - "row_count": 4, - "send_confirmation_dir": "data/rfq_send_confirmation_files/zrc_phase_a", - "send_confirmation_readme": "data/rfq_send_confirmation_files/zrc_phase_a/README.md", - "send_log_csv": "data/zrc_nd_phase_a_rfq_send_log.csv", - "sent_rows": 0, - "status": "zrc_nd_phase_a_rfq_send_log_waiting_for_sent_entries", - "tracker_csv": "data/zrc_nd_phase_a_quote_tracker.csv", - "unknown_existing_rows": [], - "valid_sent_candidate_ids": [], - "valid_sent_rows": 0, - "valid_sent_summaries": [], - "warning_count": 0, - "warnings": [] -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_sample_labels.csv b/data/zrc_nd_phase_a_sample_labels.csv deleted file mode 100644 index de42ec2..0000000 --- a/data/zrc_nd_phase_a_sample_labels.csv +++ /dev/null @@ -1,17 +0,0 @@ -sample_id,run_id,article_id,phase,timepoint,sample_event,replicate,planned_container_id,condition,storage_handling_notes,contents_note,required_readouts -ZRCND-A-baseline_rc_3p5m_guard-R1-0h-initial,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,baseline_rc_3p5m_guard,A,0 h,initial,1,ZRC-A-01-BASELINE-RC-3P5M-GUA-0-H-INITIAL,unmodified baseline,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-baseline_rc_3p5m_guard-R1-0h-final,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,baseline_rc_3p5m_guard,A,0 h,final,1,ZRC-A-02-BASELINE-RC-3P5M-GUA-0-H-FINAL,unmodified baseline,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-baseline_rc_3p5m_guard-R1-24h-initial,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,baseline_rc_3p5m_guard,A,24 h,initial,1,ZRC-A-03-BASELINE-RC-3P5M-GUA-24-H-INITIAL,unmodified baseline,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-baseline_rc_3p5m_guard-R1-24h-final,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,baseline_rc_3p5m_guard,A,24 h,final,1,ZRC-A-04-BASELINE-RC-3P5M-GUA-24-H-FINAL,unmodified baseline,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,challenge_zrc_nd_10m_guard,A,0 h,initial,1,ZRC-A-05-CHALLENGE-ZRC-ND-10M-0-H-INITIAL,high-clearance retention challenge,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,challenge_zrc_nd_10m_guard,A,0 h,final,1,ZRC-A-06-CHALLENGE-ZRC-ND-10M-0-H-FINAL,high-clearance retention challenge,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,challenge_zrc_nd_10m_guard,A,24 h,initial,1,ZRC-A-07-CHALLENGE-ZRC-ND-10M-24-H-INITIAL,high-clearance retention challenge,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,challenge_zrc_nd_10m_guard,A,24 h,final,1,ZRC-A-08-CHALLENGE-ZRC-ND-10M-24-H-FINAL,high-clearance retention challenge,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,lead_zrc_nd_3p5m_guard,A,0 h,initial,1,ZRC-A-09-LEAD-ZRC-ND-3P5M-GUA-0-H-INITIAL,lead candidate,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,lead_zrc_nd_3p5m_guard,A,0 h,final,1,ZRC-A-10-LEAD-ZRC-ND-3P5M-GUA-0-H-FINAL,lead candidate,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,lead_zrc_nd_3p5m_guard,A,24 h,initial,1,ZRC-A-11-LEAD-ZRC-ND-3P5M-GUA-24-H-INITIAL,lead candidate,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,lead_zrc_nd_3p5m_guard,A,24 h,final,1,ZRC-A-12-LEAD-ZRC-ND-3P5M-GUA-24-H-FINAL,lead candidate,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-no_module_static_control-R1-0h-initial,ZRCND-A-no_module_static_control-R1-0h,no_module_static_control,A,0 h,initial,1,ZRC-A-13-NO-MODULE-STATIC-CON-0-H-INITIAL,stability and background control,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-no_module_static_control-R1-0h-final,ZRCND-A-no_module_static_control-R1-0h,no_module_static_control,A,0 h,final,1,ZRC-A-14-NO-MODULE-STATIC-CON-0-H-FINAL,stability and background control,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-no_module_static_control-R1-24h-initial,ZRCND-A-no_module_static_control-R1-24h,no_module_static_control,A,24 h,initial,1,ZRC-A-15-NO-MODULE-STATIC-CON-24-H-INITIAL,stability and background control,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate -ZRCND-A-no_module_static_control-R1-24h-final,ZRCND-A-no_module_static_control-R1-24h,no_module_static_control,A,24 h,final,1,ZRC-A-16-NO-MODULE-STATIC-CON-24-H-FINAL,stability and background control,"Keep article, timepoint, and sample event separated; record actual module, tube, medium, exposure, and receipt fields before data entry.",nonclinical R&D acellular medium/module sample; no live cells,pH;osmolality;conductivity;visible_precipitate diff --git a/data/zrc_nd_phase_a_sentinel_sample_manifest.csv b/data/zrc_nd_phase_a_sentinel_sample_manifest.csv deleted file mode 100644 index 89353be..0000000 --- a/data/zrc_nd_phase_a_sentinel_sample_manifest.csv +++ /dev/null @@ -1,17 +0,0 @@ -sample_id,run_id,sample_event,phase,timepoint,replicate,article_id,readouts,handoff_notes -ZRCND-A-baseline_rc_3p5m_guard-R1-0h-initial,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,initial,A,0 h,1,baseline_rc_3p5m_guard,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-baseline_rc_3p5m_guard-R1-0h-final,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,final,A,0 h,1,baseline_rc_3p5m_guard,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-baseline_rc_3p5m_guard-R1-24h-initial,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,initial,A,24 h,1,baseline_rc_3p5m_guard,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-baseline_rc_3p5m_guard-R1-24h-final,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,final,A,24 h,1,baseline_rc_3p5m_guard,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,initial,A,0 h,1,challenge_zrc_nd_10m_guard,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,final,A,0 h,1,challenge_zrc_nd_10m_guard,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,initial,A,24 h,1,challenge_zrc_nd_10m_guard,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,final,A,24 h,1,challenge_zrc_nd_10m_guard,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,initial,A,0 h,1,lead_zrc_nd_3p5m_guard,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,final,A,0 h,1,lead_zrc_nd_3p5m_guard,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,initial,A,24 h,1,lead_zrc_nd_3p5m_guard,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,final,A,24 h,1,lead_zrc_nd_3p5m_guard,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-no_module_static_control-R1-0h-initial,ZRCND-A-no_module_static_control-R1-0h,initial,A,0 h,1,no_module_static_control,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-no_module_static_control-R1-0h-final,ZRCND-A-no_module_static_control-R1-0h,final,A,0 h,1,no_module_static_control,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-no_module_static_control-R1-24h-initial,ZRCND-A-no_module_static_control-R1-24h,initial,A,24 h,1,no_module_static_control,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity -ZRCND-A-no_module_static_control-R1-24h-final,ZRCND-A-no_module_static_control-R1-24h,final,A,24 h,1,no_module_static_control,pH;osmolality;conductivity;visible_precipitate,record local tube/well id before measuring medium integrity diff --git a/data/zrc_nd_phase_a_sentinel_template.csv b/data/zrc_nd_phase_a_sentinel_template.csv deleted file mode 100644 index b0cae0c..0000000 --- a/data/zrc_nd_phase_a_sentinel_template.csv +++ /dev/null @@ -1,9 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,membrane_lot,mwco_kda,membrane_area_cm2,surface_modification,prefilter_lot,housing_material,medium_name,medium_lot,initial_volume_ml,flow_rate_ul_min,exposure_time_h,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,lactate_initial_mM,lactate_final_mM,ammonia_initial_uM,ammonia_final_uM,bdnf_initial_pg_ml,bdnf_final_pg_ml,ngf_initial_pg_ml,ngf_final_pg_ml,albumin_initial,albumin_final,transferrin_initial,transferrin_final,total_protein_initial,total_protein_final,flow_resistance_initial,flow_resistance_final,bubble_events,visible_precipitate,gate_results,source_file,notes -ZRCND-A-baseline_rc_3p5m_guard-R1-0h,,limina,A,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,phase_a_sentinel_pending_real_measurement -ZRCND-A-baseline_rc_3p5m_guard-R1-24h,,limina,A,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,phase_a_sentinel_pending_real_measurement -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,,limina,A,0 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,phase_a_sentinel_pending_real_measurement -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,,limina,A,24 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,phase_a_sentinel_pending_real_measurement -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,,limina,A,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,phase_a_sentinel_pending_real_measurement -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,,limina,A,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,phase_a_sentinel_pending_real_measurement -ZRCND-A-no_module_static_control-R1-0h,,limina,A,0 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,phase_a_sentinel_pending_real_measurement -ZRCND-A-no_module_static_control-R1-24h,,limina,A,24 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,phase_a_sentinel_pending_real_measurement diff --git a/data/zrc_nd_phase_a_service_request.json b/data/zrc_nd_phase_a_service_request.json deleted file mode 100644 index 254087c..0000000 --- a/data/zrc_nd_phase_a_service_request.json +++ /dev/null @@ -1,194 +0,0 @@ -{ - "acceptance_gate": { - "criterion": "Material-driven pH drift must be <= 0.10 pH units versus matched no-module control; osmolality and conductivity drift must be <= 5 percent versus control; no visible precipitate or unresolved turbidity/extractables concern.", - "id": "zrc_nd_phase_a_blank_integrity_gate" - }, - "active_candidate": "limina_zrc_nd_v0_1", - "article_roles": [ - { - "article_id": "lead_zrc_nd_3p5m_guard", - "description": "3.5 kDa RC exchange element, MPC-like zwitterionic wetted-surface modification, low-binding PES/SFCA guard, COC/COP housing.", - "role": "lead candidate" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "description": "3.5 kDa RC exchange element with the same guard and housing but no zwitterionic modification.", - "role": "unmodified baseline" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "description": "10 kDa RC exchange element with the same zwitterionic/guard/housing concept.", - "role": "high-clearance retention challenge" - }, - { - "article_id": "no_module_static_control", - "description": "Matched medium held without cartridge exposure.", - "role": "stability and background control" - } - ], - "deliverables": [ - { - "acceptance": "All 8 run rows have real values for the required medium-integrity and provenance fields.", - "id": "completed_phase_a_template", - "name": "Completed ZRC-ND Phase A sentinel CSV", - "target_path": "data/zrc_nd_phase_a_sentinel_template.csv" - }, - { - "acceptance": "Every initial/final sample event maps to a run_id, sample_id, article_id, module/cup/tube ID, medium lot, and receipt condition.", - "id": "completed_chain_of_custody", - "name": "Sample/module chain of custody", - "target_path": "data/zrc_nd_phase_a_chain_of_custody.csv" - }, - { - "acceptance": "Raw pH, osmolality, conductivity, and visual-inspection files are preserved and named in the deviation or return log.", - "id": "instrument_export_bundle", - "name": "Instrument exports and inspection images", - "target_path": "external_lab_exports/zrc_nd_phase_a/" - }, - { - "acceptance": "Any substitution in membrane, housing, guard, medium, exposure time, temperature, rinse, or instrument calibration is listed explicitly.", - "id": "deviation_log", - "name": "Deviation log", - "target_path": "reports/zrc_nd_phase_a_deviation_log.md" - } - ], - "lead_variant_id": "zrc_nd_3p5k_mpc_guard", - "non_claim_boundary": "Phase A is a material-blank front-door gate for the external cartridge branch. It cannot prove CL1 suitability without later Phase B/C non-cell and biological rows.", - "post_delivery_commands": [ - "python3 scripts/merge_zrc_nd_measurements.py", - "python3 scripts/interpret_zrc_nd_sentinel.py", - "python3 scripts/evaluate_zrc_nd_validation_runs.py --runs data/zrc_nd_validation_runs_active.csv", - "python3 scripts/suggest_zrc_nd_next_measurements.py --runs data/zrc_nd_validation_runs_active.csv", - "python3 scripts/audit_zrc_nd_readiness.py", - "python3 scripts/audit_limina_suitability_claim.py" - ], - "purpose": "Turn the ZRC-ND external-material Phase A blocker into a compact service request for real acellular medium-integrity measurements.", - "rejection_rules": [ - "Do not enter pending, TBD, unknown, synthetic, fixture, or not_evidence markers as measured values.", - "Do not pool the baseline, lead, challenge, or no-module rows before data entry.", - "Do not advance Phase B/C or biological follow-up if the lead Phase A blank-integrity gate fails.", - "Do not treat Phase A as a suitability claim; it only authorizes or blocks later ZRC-ND validation rows." - ], - "requested_matrix": { - "articles": [ - "baseline_rc_3p5m_guard", - "challenge_zrc_nd_10m_guard", - "lead_zrc_nd_3p5m_guard", - "no_module_static_control" - ], - "replicates": [ - "1" - ], - "runs": 8, - "sample_event_types": [ - "final", - "initial" - ], - "sample_events": 16, - "timepoints": [ - "0 h", - "24 h" - ] - }, - "required_capabilities": [ - "Acellular 37 C or matched-temperature medium exposure of small membrane/module witness articles.", - "Matched no-module control handling for the same timepoints and medium lot.", - "pH measurement before and after each row.", - "Osmolality measurement before and after each row.", - "Conductivity measurement before and after each row.", - "Visual inspection for precipitate, turbidity, bubbles, color shift, or obvious extractables.", - "Lot-level provenance for membrane, guard, housing, rinse/preconditioning, and medium." - ], - "required_fields": [ - { - "description": "Measurement date for each Phase A sentinel row.", - "field": "date", - "rows": 8 - }, - { - "description": "Actual lot for every membrane or module-exposed article; leave blank only for no-module controls.", - "field": "membrane_lot", - "rows": 6 - }, - { - "description": "Exposed membrane area for baseline, lead, and 10 kDa challenge articles.", - "field": "membrane_area_cm2", - "rows": 6 - }, - { - "description": "Guard prefilter lot if present, or explicit none/not_applicable when omitted.", - "field": "prefilter_lot", - "rows": 6 - }, - { - "description": "Fresh complete neuronal medium or closest CL1-like medium proxy.", - "field": "medium_name", - "rows": 8 - }, - { - "description": "Actual medium lot shared with control rows where possible.", - "field": "medium_lot", - "rows": 8 - }, - { - "description": "Starting medium volume for normalization and drift interpretation.", - "field": "initial_volume_ml", - "rows": 8 - }, - { - "description": "Actual exposure duration; must match the run timepoint within deviation-log tolerance.", - "field": "exposure_time_h", - "rows": 8 - }, - { - "description": "Actual incubation or measurement temperature.", - "field": "temperature_c", - "rows": 8 - }, - { - "description": "Initial pH before exposure or matched start measurement.", - "field": "pH_initial", - "rows": 8 - }, - { - "description": "Final pH at the run timepoint.", - "field": "pH_final", - "rows": 8 - }, - { - "description": "Initial osmolality in matched medium.", - "field": "osmolality_initial_mOsm_kg", - "rows": 8 - }, - { - "description": "Final osmolality at the run timepoint.", - "field": "osmolality_final_mOsm_kg", - "rows": 8 - }, - { - "description": "Initial conductivity in matched medium.", - "field": "conductivity_initial_mS_cm", - "rows": 8 - }, - { - "description": "Final conductivity at the run timepoint.", - "field": "conductivity_final_mS_cm", - "rows": 8 - }, - { - "description": "yes/no visible precipitate, turbidity, bubble, or extractables concern.", - "field": "visible_precipitate", - "rows": 8 - } - ], - "sentinel_reason": "phase_a_sentinel_no_measured_rows", - "sentinel_selector_status": "needs_phase_a_sentinel", - "source_artifacts": { - "next_measurements": "reports/zrc_nd_next_measurements.md", - "phase_a_template": "data/zrc_nd_phase_a_sentinel_template.csv", - "sample_manifest": "data/zrc_nd_phase_a_sentinel_sample_manifest.csv", - "sentinel_packet": "reports/zrc_nd_phase_a_sentinel_packet.md", - "validation_package": "data/zrc_nd_3p5k_guard_validation_package.json" - }, - "status": "ready_to_request_real_phase_a_measurements" -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_smoke_local_capture_template.csv b/data/zrc_nd_phase_a_smoke_local_capture_template.csv deleted file mode 100644 index 385fc01..0000000 --- a/data/zrc_nd_phase_a_smoke_local_capture_template.csv +++ /dev/null @@ -1,5 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,membrane_lot,mwco_kda,membrane_area_cm2,surface_modification,prefilter_lot,housing_material,medium_name,medium_lot,initial_volume_ml,flow_rate_ul_min,exposure_time_h,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,lactate_initial_mM,lactate_final_mM,ammonia_initial_uM,ammonia_final_uM,bdnf_initial_pg_ml,bdnf_final_pg_ml,ngf_initial_pg_ml,ngf_final_pg_ml,albumin_initial,albumin_final,transferrin_initial,transferrin_final,total_protein_initial,total_protein_final,flow_resistance_initial,flow_resistance_final,bubble_events,visible_precipitate,gate_results,source_file,notes,measured_at,instrument_id -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,,,A,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,,,A,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R1-0h,,,A,0 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R1-24h,,,A,24 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv b/data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv deleted file mode 100644 index 385fc01..0000000 --- a/data/zrc_nd_phase_a_smoke_osmolality_outsource_template.csv +++ /dev/null @@ -1,5 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,membrane_lot,mwco_kda,membrane_area_cm2,surface_modification,prefilter_lot,housing_material,medium_name,medium_lot,initial_volume_ml,flow_rate_ul_min,exposure_time_h,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,lactate_initial_mM,lactate_final_mM,ammonia_initial_uM,ammonia_final_uM,bdnf_initial_pg_ml,bdnf_final_pg_ml,ngf_initial_pg_ml,ngf_final_pg_ml,albumin_initial,albumin_final,transferrin_initial,transferrin_final,total_protein_initial,total_protein_final,flow_resistance_initial,flow_resistance_final,bubble_events,visible_precipitate,gate_results,source_file,notes,measured_at,instrument_id -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,,,A,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,,,A,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R1-0h,,,A,0 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R1-24h,,,A,24 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/data/zrc_nd_phase_a_source_drop_plan.csv b/data/zrc_nd_phase_a_source_drop_plan.csv deleted file mode 100644 index b371f0a..0000000 --- a/data/zrc_nd_phase_a_source_drop_plan.csv +++ /dev/null @@ -1,305 +0,0 @@ -profile,run_id,phase,sample_event,target_field,source_class,source_file,source_dir,source_dir_status,source_file_exists,source_file_allowed,value_filled,import_ready,source_file_requirement,capture_instruction -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,albumin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real albumin_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,albumin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real albumin_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,ammonia_final_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real ammonia_final_uM value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,ammonia_initial_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real ammonia_initial_uM value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,bdnf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real bdnf_final_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,bdnf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,bubble_events,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real bubble_events value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,conductivity_final_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real conductivity_final_mS_cm value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,conductivity_initial_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,date,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real date value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,exposure_time_h,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real exposure_time_h value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,flow_rate_ul_min,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real flow_rate_ul_min value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,flow_resistance_final,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real flow_resistance_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,flow_resistance_initial,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real flow_resistance_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,housing_material,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real housing_material value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,initial_volume_ml,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real initial_volume_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,lactate_final_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real lactate_final_mM value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,lactate_initial_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real lactate_initial_mM value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real medium_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real medium_name value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,membrane_area_cm2,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real membrane_area_cm2 value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,membrane_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real membrane_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,mwco_kda,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real mwco_kda value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,ngf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real ngf_final_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,ngf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real ngf_initial_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,osmolality_final_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,osmolality_initial_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,pH_final,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real pH_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,pH_initial,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real pH_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,prefilter_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real prefilter_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,surface_modification,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real surface_modification value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,temperature_c,temperature_or_incubator_log,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real temperature_c value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,total_protein_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real total_protein_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,total_protein_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real total_protein_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,transferrin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real transferrin_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,transferrin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real transferrin_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real visible_precipitate value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,albumin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real albumin_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,albumin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real albumin_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,ammonia_final_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real ammonia_final_uM value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,ammonia_initial_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real ammonia_initial_uM value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,bdnf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real bdnf_final_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,bdnf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,bubble_events,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real bubble_events value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,conductivity_final_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real conductivity_final_mS_cm value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,conductivity_initial_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,date,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real date value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,exposure_time_h,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real exposure_time_h value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,flow_rate_ul_min,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real flow_rate_ul_min value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,flow_resistance_final,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real flow_resistance_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,flow_resistance_initial,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real flow_resistance_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,housing_material,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real housing_material value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,initial_volume_ml,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real initial_volume_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,lactate_final_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real lactate_final_mM value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,lactate_initial_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real lactate_initial_mM value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_name value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,membrane_area_cm2,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real membrane_area_cm2 value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,membrane_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real membrane_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,mwco_kda,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real mwco_kda value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,ngf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real ngf_final_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,ngf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real ngf_initial_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,osmolality_final_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,osmolality_initial_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,pH_final,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real pH_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,pH_initial,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real pH_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,prefilter_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real prefilter_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,surface_modification,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real surface_modification value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,temperature_c,temperature_or_incubator_log,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real temperature_c value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,total_protein_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real total_protein_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,total_protein_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real total_protein_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,transferrin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real transferrin_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,transferrin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real transferrin_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real visible_precipitate value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,albumin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real albumin_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,albumin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real albumin_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,ammonia_final_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real ammonia_final_uM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,ammonia_initial_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real ammonia_initial_uM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,bdnf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real bdnf_final_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,bdnf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,bubble_events,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real bubble_events value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,conductivity_final_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real conductivity_final_mS_cm value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,conductivity_initial_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,date,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real date value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,exposure_time_h,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real exposure_time_h value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,flow_rate_ul_min,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real flow_rate_ul_min value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,flow_resistance_final,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real flow_resistance_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,flow_resistance_initial,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real flow_resistance_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,housing_material,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real housing_material value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,initial_volume_ml,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real initial_volume_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,lactate_final_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real lactate_final_mM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,lactate_initial_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real lactate_initial_mM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real medium_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real medium_name value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,membrane_area_cm2,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real membrane_area_cm2 value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,membrane_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real membrane_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,mwco_kda,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real mwco_kda value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,ngf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real ngf_final_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,ngf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real ngf_initial_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,osmolality_final_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,osmolality_initial_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,pH_final,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real pH_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,pH_initial,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real pH_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,prefilter_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real prefilter_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,surface_modification,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real surface_modification value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,temperature_c,temperature_or_incubator_log,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real temperature_c value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,total_protein_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real total_protein_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,total_protein_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real total_protein_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,transferrin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real transferrin_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,transferrin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real transferrin_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real visible_precipitate value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,albumin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real albumin_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,albumin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real albumin_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,ammonia_final_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real ammonia_final_uM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,ammonia_initial_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real ammonia_initial_uM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,bdnf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real bdnf_final_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,bdnf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,bubble_events,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real bubble_events value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,conductivity_final_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real conductivity_final_mS_cm value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,conductivity_initial_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,date,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real date value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,exposure_time_h,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real exposure_time_h value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,flow_rate_ul_min,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real flow_rate_ul_min value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,flow_resistance_final,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real flow_resistance_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,flow_resistance_initial,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real flow_resistance_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,housing_material,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real housing_material value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,initial_volume_ml,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real initial_volume_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,lactate_final_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real lactate_final_mM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,lactate_initial_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real lactate_initial_mM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_name value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,membrane_area_cm2,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real membrane_area_cm2 value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,membrane_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real membrane_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,mwco_kda,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real mwco_kda value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,ngf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real ngf_final_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,ngf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real ngf_initial_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,osmolality_final_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,osmolality_initial_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,pH_final,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real pH_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,pH_initial,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real pH_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,prefilter_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real prefilter_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,surface_modification,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real surface_modification value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,temperature_c,temperature_or_incubator_log,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real temperature_c value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,total_protein_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real total_protein_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,total_protein_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real total_protein_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,transferrin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real transferrin_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,transferrin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real transferrin_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real visible_precipitate value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,albumin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real albumin_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,albumin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real albumin_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,ammonia_final_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real ammonia_final_uM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,ammonia_initial_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real ammonia_initial_uM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,bdnf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real bdnf_final_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,bdnf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,bubble_events,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real bubble_events value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,conductivity_final_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real conductivity_final_mS_cm value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,conductivity_initial_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,date,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real date value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,exposure_time_h,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real exposure_time_h value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,flow_rate_ul_min,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real flow_rate_ul_min value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,flow_resistance_final,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real flow_resistance_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,flow_resistance_initial,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real flow_resistance_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,housing_material,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real housing_material value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,initial_volume_ml,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real initial_volume_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,lactate_final_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real lactate_final_mM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,lactate_initial_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real lactate_initial_mM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real medium_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real medium_name value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,membrane_area_cm2,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real membrane_area_cm2 value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,membrane_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real membrane_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,mwco_kda,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real mwco_kda value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,ngf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real ngf_final_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,ngf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real ngf_initial_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,osmolality_final_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,osmolality_initial_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,pH_final,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real pH_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,pH_initial,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real pH_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,prefilter_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real prefilter_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,surface_modification,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real surface_modification value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,temperature_c,temperature_or_incubator_log,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real temperature_c value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,total_protein_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real total_protein_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,total_protein_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real total_protein_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,transferrin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real transferrin_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,transferrin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real transferrin_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,already_exists,false,true,false,false,,"Enter the real visible_precipitate value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,albumin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real albumin_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,albumin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real albumin_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,ammonia_final_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real ammonia_final_uM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,ammonia_initial_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real ammonia_initial_uM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,bdnf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real bdnf_final_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,bdnf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,bubble_events,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real bubble_events value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,conductivity_final_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real conductivity_final_mS_cm value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,conductivity_initial_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,date,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real date value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,exposure_time_h,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real exposure_time_h value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,flow_rate_ul_min,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real flow_rate_ul_min value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,flow_resistance_final,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real flow_resistance_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,flow_resistance_initial,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real flow_resistance_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,housing_material,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real housing_material value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,initial_volume_ml,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real initial_volume_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,lactate_final_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real lactate_final_mM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,lactate_initial_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real lactate_initial_mM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_name value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,membrane_area_cm2,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real membrane_area_cm2 value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,membrane_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real membrane_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,mwco_kda,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real mwco_kda value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,ngf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real ngf_final_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,ngf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real ngf_initial_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,osmolality_final_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,osmolality_initial_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,pH_final,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real pH_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,pH_initial,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real pH_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,prefilter_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real prefilter_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,surface_modification,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real surface_modification value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,temperature_c,temperature_or_incubator_log,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real temperature_c value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,total_protein_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real total_protein_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,total_protein_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real total_protein_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,transferrin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real transferrin_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,transferrin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real transferrin_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,already_exists,false,true,false,false,,"Enter the real visible_precipitate value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,albumin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real albumin_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,albumin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real albumin_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,ammonia_final_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real ammonia_final_uM value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,ammonia_initial_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real ammonia_initial_uM value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,bdnf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real bdnf_final_pg_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,bdnf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,bubble_events,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real bubble_events value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,conductivity_final_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real conductivity_final_mS_cm value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,conductivity_initial_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,date,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/date_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real date value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,exposure_time_h,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real exposure_time_h value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,flow_rate_ul_min,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real flow_rate_ul_min value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,flow_resistance_final,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real flow_resistance_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,flow_resistance_initial,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real flow_resistance_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,housing_material,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real housing_material value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,initial_volume_ml,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real initial_volume_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,lactate_final_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real lactate_final_mM value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,lactate_initial_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real lactate_initial_mM value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real medium_lot value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real medium_name value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,membrane_area_cm2,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real membrane_area_cm2 value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,membrane_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real membrane_lot value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,mwco_kda,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real mwco_kda value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,ngf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real ngf_final_pg_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,ngf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real ngf_initial_pg_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,osmolality_final_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,osmolality_initial_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,pH_final,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/pH_final_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real pH_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,pH_initial,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/pH_initial_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real pH_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,prefilter_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real prefilter_lot value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,surface_modification,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real surface_modification value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,temperature_c,temperature_or_incubator_log,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real temperature_c value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,total_protein_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real total_protein_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,total_protein_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real total_protein_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,transferrin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real transferrin_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,transferrin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real transferrin_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h,already_exists,false,true,false,false,,"Enter the real visible_precipitate value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,albumin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real albumin_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,albumin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real albumin_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,ammonia_final_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real ammonia_final_uM value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,ammonia_initial_uM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real ammonia_initial_uM value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,bdnf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real bdnf_final_pg_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,bdnf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,bubble_events,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real bubble_events value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,conductivity_final_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real conductivity_final_mS_cm value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,conductivity_initial_mS_cm,conductivity_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,date,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/date_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real date value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,exposure_time_h,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real exposure_time_h value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,flow_rate_ul_min,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real flow_rate_ul_min value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,flow_resistance_final,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real flow_resistance_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,flow_resistance_initial,pressure_flow_or_resistance_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real flow_resistance_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,housing_material,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real housing_material value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,initial_volume_ml,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real initial_volume_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,lactate_final_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real lactate_final_mM value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,lactate_initial_mM,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real lactate_initial_mM value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,medium_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_lot value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,medium_name,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real medium_name value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,membrane_area_cm2,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real membrane_area_cm2 value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,membrane_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real membrane_lot value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,mwco_kda,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real mwco_kda value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,ngf_final_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real ngf_final_pg_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,ngf_initial_pg_ml,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real ngf_initial_pg_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,operator_or_agent,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real operator_or_agent value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,osmolality_final_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,osmolality_initial_mOsm_kg,osmometer_report_or_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,pH_final,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/pH_final_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real pH_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,pH_initial,pH_meter_export_or_photo,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/pH_initial_pH_meter_export_or_photo.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real pH_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,prefilter_lot,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real prefilter_lot value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,surface_modification,bench_or_chain_of_custody_record,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real surface_modification value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,temperature_c,temperature_or_incubator_log,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real temperature_c value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,total_protein_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real total_protein_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,total_protein_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real total_protein_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,transferrin_final,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real transferrin_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,transferrin_initial,biochemical_or_plate_reader_export,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real transferrin_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,,visible_precipitate,image_or_scoring_worksheet,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h,already_exists,false,true,false,false,,"Enter the real visible_precipitate value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." diff --git a/data/zrc_nd_phase_a_source_drop_plan.json b/data/zrc_nd_phase_a_source_drop_plan.json deleted file mode 100644 index 87c1cff..0000000 --- a/data/zrc_nd_phase_a_source_drop_plan.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "boundary": "This creates allowed source-file directories and a missing-file plan only. It does not create raw measurement files or measured evidence.", - "generated_artifacts": { - "csv": "data/zrc_nd_phase_a_source_drop_plan.csv", - "json": "data/zrc_nd_phase_a_source_drop_plan.json", - "report": "reports/zrc_nd_phase_a_source_drop_plan.md" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/zrc_nd_phase_a_source_values.csv" - }, - "label": "ZRC-ND Phase A", - "profile": "zrc_phase_a", - "status": "zrc_nd_phase_a_source_drop_plan_ready", - "summary": { - "allowed_source_file_count": 304, - "created_source_dir_count": 0, - "existing_source_file_count": 0, - "filled_value_rows": 0, - "import_ready_rows": 0, - "missing_source_file_count": 304, - "planned_source_file_count": 304, - "source_class_counts": { - "bench_or_chain_of_custody_record": 104, - "biochemical_or_plate_reader_export": 112, - "conductivity_meter_export_or_photo": 16, - "image_or_scoring_worksheet": 8, - "osmometer_report_or_export": 16, - "pH_meter_export_or_photo": 16, - "pressure_flow_or_resistance_export": 24, - "temperature_or_incubator_log": 8 - }, - "source_dir_count": 8, - "source_dir_status_counts": { - "already_exists": 304 - } - } -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_source_file_template_manifest.csv b/data/zrc_nd_phase_a_source_file_template_manifest.csv deleted file mode 100644 index 975b335..0000000 --- a/data/zrc_nd_phase_a_source_file_template_manifest.csv +++ /dev/null @@ -1,9 +0,0 @@ -profile,source_class,template_file,template_row_count,target_source_files,accepted_extensions,required_source_metadata,template_columns,boundary -zrc_phase_a,bench_or_chain_of_custody_record,data/limina_source_file_templates/zrc_phase_a/source_class_templates/bench_or_chain_of_custody_record.csv,104,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/date_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/housing_material_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/date_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/housing_material_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,.csv;.tsv;.xlsx;.pdf;.md;.png;.jpg;.jpeg,"run_id or sample_id, operator, date, transfer or exposure event",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;record_type;record_id;sample_id;medium_name;medium_lot;transfer_or_exposure_event,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -zrc_phase_a,biochemical_or_plate_reader_export,data/limina_source_file_templates/zrc_phase_a/source_class_templates/biochemical_or_plate_reader_export.csv,112,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,"run_id, analyte, assay date, instrument_id or vendor report id, calibration/standard curve record",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;analyte;assay_or_method;instrument_or_vendor_report_id;calibration_or_standard_curve_id;raw_signal;calculated_concentration;dilution_factor,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -zrc_phase_a,conductivity_meter_export_or_photo,data/limina_source_file_templates/zrc_phase_a/source_class_templates/conductivity_meter_export_or_photo.csv,16,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id, measurement date, instrument_id or standard-check record",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;conductivity_mS_cm;conductivity_meter_id;standard_check_record_id;temperature_c,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -zrc_phase_a,image_or_scoring_worksheet,data/limina_source_file_templates/zrc_phase_a/source_class_templates/image_or_scoring_worksheet.csv,8,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/visible_precipitate_image_or_scoring_worksheet.png;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic;.tif;.tiff,"run_id, imaging/scoring method, operator or vendor",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;image_file_name;imaging_method;scoring_method;score_or_boolean;reviewer,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -zrc_phase_a,osmometer_report_or_export,data/limina_source_file_templates/zrc_phase_a/source_class_templates/osmometer_report_or_export.csv,16,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,"run_id, mOsm/kg value, vendor or osmometer identifier",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;osmolality_mOsm_kg;osmometer_id;report_id;vendor_or_lab,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -zrc_phase_a,pH_meter_export_or_photo,data/limina_source_file_templates/zrc_phase_a/source_class_templates/pH_meter_export_or_photo.csv,16,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/pH_final_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/pH_initial_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/pH_final_pH_meter_export_or_photo.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/pH_initial_pH_meter_export_or_photo.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id, measurement date, instrument_id or calibration record",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;pH_value;pH_meter_id;calibration_record_id;temperature_c,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -zrc_phase_a,pressure_flow_or_resistance_export,data/limina_source_file_templates/zrc_phase_a/source_class_templates/pressure_flow_or_resistance_export.csv,24,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg,"run_id, flow/pressure method, instrument_id, time window, calculation method",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;flow_rate_ul_min;pressure_drop;flow_resistance;instrument_id_or_fixture;covered_window_start;covered_window_end;bubble_event_count;inspection_method,Template only; copy or export real instrument/report/worksheet data to the target source_file path. -zrc_phase_a,temperature_or_incubator_log,data/limina_source_file_templates/zrc_phase_a/source_class_templates/temperature_or_incubator_log.csv,8,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/temperature_c_temperature_or_incubator_log.csv;data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,.csv;.tsv;.xlsx;.pdf;.png;.jpg;.jpeg;.heic,"run_id or batch window, date/time, temperature source",profile;run_id;phase;sample_event;target_field;measured_at;operator_or_agent;instrument_id;value;unit;source_file_to_save_as;source_file_requirement;method_or_record_id;notes;temperature_c;temperature_source;covered_window_start;covered_window_end;probe_or_incubator_id,Template only; copy or export real instrument/report/worksheet data to the target source_file path. diff --git a/data/zrc_nd_phase_a_source_file_template_pack.json b/data/zrc_nd_phase_a_source_file_template_pack.json deleted file mode 100644 index a8f3892..0000000 --- a/data/zrc_nd_phase_a_source_file_template_pack.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "boundary": "Templates are outside allowed source-file roots and are never measured evidence. Only real files placed at target source_file paths can support measured rows.", - "generated_artifacts": { - "csv": "data/zrc_nd_phase_a_source_file_template_manifest.csv", - "json": "data/zrc_nd_phase_a_source_file_template_pack.json", - "report": "reports/zrc_nd_phase_a_source_file_template_pack.md", - "template_dir": "data/limina_source_file_templates/zrc_phase_a" - }, - "inputs": { - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/zrc_nd_phase_a_source_values.csv" - }, - "label": "ZRC-ND Phase A", - "profile": "zrc_phase_a", - "status": "zrc_nd_phase_a_source_file_template_pack_ready", - "summary": { - "generated_template_files": 8, - "source_class_counts": { - "bench_or_chain_of_custody_record": 104, - "biochemical_or_plate_reader_export": 112, - "conductivity_meter_export_or_photo": 16, - "image_or_scoring_worksheet": 8, - "osmometer_report_or_export": 16, - "pH_meter_export_or_photo": 16, - "pressure_flow_or_resistance_export": 24, - "temperature_or_incubator_log": 8 - }, - "source_class_template_count": 8, - "source_value_rows": 304, - "target_extension_counts": { - ".csv": 280, - ".pdf": 16, - ".png": 8 - }, - "target_source_file_count": 304, - "template_manifest_rows": 8 - }, - "templates": [ - "data/limina_source_file_templates/zrc_phase_a/source_class_templates/bench_or_chain_of_custody_record.csv", - "data/limina_source_file_templates/zrc_phase_a/source_class_templates/biochemical_or_plate_reader_export.csv", - "data/limina_source_file_templates/zrc_phase_a/source_class_templates/conductivity_meter_export_or_photo.csv", - "data/limina_source_file_templates/zrc_phase_a/source_class_templates/image_or_scoring_worksheet.csv", - "data/limina_source_file_templates/zrc_phase_a/source_class_templates/osmometer_report_or_export.csv", - "data/limina_source_file_templates/zrc_phase_a/source_class_templates/pH_meter_export_or_photo.csv", - "data/limina_source_file_templates/zrc_phase_a/source_class_templates/pressure_flow_or_resistance_export.csv", - "data/limina_source_file_templates/zrc_phase_a/source_class_templates/temperature_or_incubator_log.csv" - ] -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_source_values.csv b/data/zrc_nd_phase_a_source_values.csv deleted file mode 100644 index 0d03dd8..0000000 --- a/data/zrc_nd_phase_a_source_values.csv +++ /dev/null @@ -1,305 +0,0 @@ -profile,run_id,phase,timepoint,replicate,article_id,target_field,value,unit,measured_at,operator_or_agent,instrument_id,source_file,notes,planned_value,current_value,source_class,instrument_required,recommended_source_file,source_file_exists,review_status,missing_items,capture_instruction -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_final_uM value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_initial_uM value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_final_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bubble_events value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_final_mS_cm value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real exposure_time_h value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real flow_rate_ul_min value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,,coc_cop,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real housing_material value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real initial_volume_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_final_mM value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_initial_mM value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_area_cm2 value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,,3.5,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mwco_kda value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_final_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_initial_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real prefilter_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real surface_modification value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_precipitate value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_final_uM value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_initial_uM value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_final_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bubble_events value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_final_mS_cm value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real exposure_time_h value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real flow_rate_ul_min value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,,coc_cop,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real housing_material value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real initial_volume_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_final_mM value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_initial_mM value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_area_cm2 value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,,3.5,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mwco_kda value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_final_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_initial_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real prefilter_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real surface_modification value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_precipitate value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_final_uM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_initial_uM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_final_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bubble_events value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_final_mS_cm value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real exposure_time_h value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real flow_rate_ul_min value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,,coc_cop,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real housing_material value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real initial_volume_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_final_mM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_initial_mM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_area_cm2 value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,,10,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mwco_kda value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_final_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_initial_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real prefilter_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,,pda_polympc_surface_only,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real surface_modification value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_precipitate value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_final_uM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_initial_uM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_final_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bubble_events value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_final_mS_cm value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real exposure_time_h value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real flow_rate_ul_min value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,,coc_cop,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real housing_material value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real initial_volume_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_final_mM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_initial_mM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_area_cm2 value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,,10,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mwco_kda value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_final_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_initial_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real prefilter_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,,pda_polympc_surface_only,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real surface_modification value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_precipitate value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_final_uM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_initial_uM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_final_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bubble_events value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_final_mS_cm value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real exposure_time_h value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real flow_rate_ul_min value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,,coc_cop,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real housing_material value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real initial_volume_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_final_mM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_initial_mM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_area_cm2 value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,,3.5,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mwco_kda value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_final_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_initial_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real prefilter_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,,pda_polympc_surface_only,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real surface_modification value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_precipitate value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_final_uM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_initial_uM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_final_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bubble_events value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_final_mS_cm value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real exposure_time_h value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real flow_rate_ul_min value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,,coc_cop,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real housing_material value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real initial_volume_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_final_mM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_initial_mM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_area_cm2 value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,,3.5,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mwco_kda value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_final_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_initial_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real prefilter_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,,pda_polympc_surface_only,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real surface_modification value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_precipitate value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_final_uM value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_initial_uM value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_final_pg_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bubble_events value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_final_mS_cm value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real exposure_time_h value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real flow_rate_ul_min value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/housing_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real housing_material value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real initial_volume_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_final_mM value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_initial_mM value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_area_cm2 value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_lot value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mwco_kda value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_final_pg_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_initial_pg_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/pH_final_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/pH_final_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/pH_initial_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/pH_initial_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real prefilter_lot value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real surface_modification value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/visible_precipitate_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_precipitate value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,albumin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,albumin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real albumin_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,ammonia_final_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_final_uM value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,ammonia_initial_uM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ammonia_initial_uM value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,bdnf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_final_pg_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,bdnf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bdnf_initial_pg_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,bubble_events,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real bubble_events value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,conductivity_final_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_final_mS_cm value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,conductivity_initial_mS_cm,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,,,,conductivity_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real conductivity_initial_mS_cm value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,date,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/date_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/date_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real date value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,exposure_time_h,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real exposure_time_h value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,flow_rate_ul_min,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real flow_rate_ul_min value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,flow_resistance_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,flow_resistance_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,,,,pressure_flow_or_resistance_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real flow_resistance_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,housing_material,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/housing_material_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real housing_material value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,initial_volume_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real initial_volume_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,lactate_final_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_final_mM value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,lactate_initial_mM,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real lactate_initial_mM value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,medium_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_lot value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,medium_name,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real medium_name value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,membrane_area_cm2,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_area_cm2 value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,membrane_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real membrane_lot value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,mwco_kda,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real mwco_kda value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,ngf_final_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_final_pg_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,ngf_initial_pg_ml,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real ngf_initial_pg_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,operator_or_agent,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,,limina,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real operator_or_agent value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,osmolality_final_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_final_mOsm_kg value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,osmolality_initial_mOsm_kg,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,,,,osmometer_report_or_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,pH_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/pH_final_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/pH_final_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,pH_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/pH_initial_pH_meter_export_or_photo.csv,,,,pH_meter_export_or_photo,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/pH_initial_pH_meter_export_or_photo.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real pH_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,prefilter_lot,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,,,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real prefilter_lot value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,surface_modification,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,,none,,bench_or_chain_of_custody_record,false,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;source_file_missing,"Enter the real surface_modification value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,temperature_c,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,,,,temperature_or_incubator_log,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/temperature_c_temperature_or_incubator_log.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real temperature_c value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,total_protein_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,total_protein_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real total_protein_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,transferrin_final,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,transferrin_initial,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,,,,biochemical_or_plate_reader_export,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real transferrin_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." -zrc_phase_a,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,visible_precipitate,,,,,,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,,,,image_or_scoring_worksheet,true,data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/visible_precipitate_image_or_scoring_worksheet.png,false,awaiting_value_entry,value;measured_at;operator_or_agent;instrument_id;source_file_missing,"Enter the real visible_precipitate value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer." diff --git a/data/zrc_nd_phase_a_source_values_import.json b/data/zrc_nd_phase_a_source_values_import.json deleted file mode 100644 index 86d3873..0000000 --- a/data/zrc_nd_phase_a_source_values_import.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "boundary": "This importer only moves source-file-backed values into evaluator CSVs; it does not create measured evidence.", - "imported_rows": [], - "inputs": { - "plan": "data/zrc_nd_phase_a_sentinel_template.csv", - "source_manifest": "data/limina_source_file_manifest.json", - "target": "data/zrc_nd_phase_a_vendor_return_inbox/completed_phase_a_measurements.csv" - }, - "issues": [], - "profile": "zrc_phase_a", - "status": "zrc_nd_phase_a_source_value_import_no_importable_rows", - "summary": { - "blank_rows": 304, - "error_count": 0, - "imported_rows": 0, - "source_value_files": 2, - "source_value_rows": 304, - "unchanged_rows": 0, - "warning_count": 0 - }, - "value_files": [ - "data/zrc_nd_phase_a_raw_csv_extracted_values.csv", - "data/zrc_nd_phase_a_source_values.csv" - ] -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_source_values_sheet.json b/data/zrc_nd_phase_a_source_values_sheet.json deleted file mode 100644 index 4abca6e..0000000 --- a/data/zrc_nd_phase_a_source_values_sheet.json +++ /dev/null @@ -1,7636 +0,0 @@ -{ - "boundary": "This source-values sheet is sidecar metadata only; it is not measured evidence.", - "generated_artifacts": { - "csv": "data/zrc_nd_phase_a_source_values.csv", - "json": "data/zrc_nd_phase_a_source_values_sheet.json", - "report": "reports/zrc_nd_phase_a_source_values_sheet.md" - }, - "inputs": { - "plan": "data/zrc_nd_phase_a_sentinel_template.csv", - "scope": "", - "target": "data/zrc_nd_phase_a_vendor_return_inbox/completed_phase_a_measurements.csv" - }, - "profile": "zrc_phase_a", - "rows": [ - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real albumin_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real albumin_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real ammonia_final_uM value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_final_uM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real ammonia_initial_uM value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_initial_uM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real bdnf_final_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_final_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real bdnf_initial_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_initial_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real bubble_events value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "bubble_events", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real conductivity_final_mS_cm value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_final_mS_cm", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real conductivity_initial_mS_cm value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_initial_mS_cm", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real date value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real exposure_time_h value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "exposure_time_h", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real flow_rate_ul_min value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "flow_rate_ul_min", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real flow_resistance_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real flow_resistance_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real housing_material value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "coc_cop", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "housing_material", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real initial_volume_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "initial_volume_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real lactate_final_mM value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_final_mM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real lactate_initial_mM value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_initial_mM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real medium_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real medium_name value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real membrane_area_cm2 value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_area_cm2", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real membrane_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_lot", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real mwco_kda value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "3.5", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mwco_kda", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real ngf_final_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_final_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real ngf_initial_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_initial_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real operator_or_agent value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "limina", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real osmolality_final_mOsm_kg value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_final_mOsm_kg", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_initial_mOsm_kg", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real pH_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real pH_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real prefilter_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "prefilter_lot", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real surface_modification value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "none", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "surface_modification", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real temperature_c value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real total_protein_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real total_protein_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real transferrin_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real transferrin_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real visible_precipitate value for ZRCND-A-baseline_rc_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_precipitate", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real albumin_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real albumin_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real ammonia_final_uM value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_final_uM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real ammonia_initial_uM value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_initial_uM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real bdnf_final_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_final_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real bdnf_initial_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_initial_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real bubble_events value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "bubble_events", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real conductivity_final_mS_cm value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_final_mS_cm", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real conductivity_initial_mS_cm value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_initial_mS_cm", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real date value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real exposure_time_h value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "exposure_time_h", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real flow_rate_ul_min value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "flow_rate_ul_min", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real flow_resistance_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real flow_resistance_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real housing_material value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "coc_cop", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "housing_material", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real initial_volume_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "initial_volume_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real lactate_final_mM value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_final_mM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real lactate_initial_mM value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_initial_mM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real medium_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real medium_name value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real membrane_area_cm2 value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_area_cm2", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real membrane_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real mwco_kda value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "3.5", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mwco_kda", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real ngf_final_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_final_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real ngf_initial_pg_ml value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_initial_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real operator_or_agent value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "limina", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real osmolality_final_mOsm_kg value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_final_mOsm_kg", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_initial_mOsm_kg", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real pH_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real pH_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real prefilter_lot value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "prefilter_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real surface_modification value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "none", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "surface_modification", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real temperature_c value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real total_protein_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real total_protein_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real transferrin_final value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real transferrin_initial value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "baseline_rc_3p5m_guard", - "capture_instruction": "Enter the real visible_precipitate value for ZRCND-A-baseline_rc_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_precipitate", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real albumin_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real albumin_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real ammonia_final_uM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_final_uM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real ammonia_initial_uM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_initial_uM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real bdnf_final_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_final_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real bdnf_initial_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_initial_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real bubble_events value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "bubble_events", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real conductivity_final_mS_cm value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_final_mS_cm", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real conductivity_initial_mS_cm value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_initial_mS_cm", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real date value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real exposure_time_h value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "exposure_time_h", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real flow_rate_ul_min value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "flow_rate_ul_min", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real flow_resistance_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real flow_resistance_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real housing_material value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "coc_cop", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "housing_material", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real initial_volume_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "initial_volume_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real lactate_final_mM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_final_mM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real lactate_initial_mM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_initial_mM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real medium_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real medium_name value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real membrane_area_cm2 value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_area_cm2", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real membrane_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_lot", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real mwco_kda value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "10", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mwco_kda", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real ngf_final_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_final_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real ngf_initial_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_initial_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real operator_or_agent value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "limina", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real osmolality_final_mOsm_kg value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_final_mOsm_kg", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_initial_mOsm_kg", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real pH_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real pH_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real prefilter_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "prefilter_lot", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real surface_modification value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "pda_polympc_surface_only", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "surface_modification", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real temperature_c value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real total_protein_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real total_protein_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real transferrin_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real transferrin_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real visible_precipitate value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_precipitate", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real albumin_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real albumin_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real ammonia_final_uM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_final_uM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real ammonia_initial_uM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_initial_uM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real bdnf_final_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_final_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real bdnf_initial_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_initial_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real bubble_events value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "bubble_events", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real conductivity_final_mS_cm value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_final_mS_cm", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real conductivity_initial_mS_cm value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_initial_mS_cm", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real date value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real exposure_time_h value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "exposure_time_h", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real flow_rate_ul_min value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "flow_rate_ul_min", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real flow_resistance_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real flow_resistance_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real housing_material value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "coc_cop", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "housing_material", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real initial_volume_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "initial_volume_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real lactate_final_mM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_final_mM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real lactate_initial_mM value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_initial_mM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real medium_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real medium_name value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real membrane_area_cm2 value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_area_cm2", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real membrane_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real mwco_kda value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "10", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mwco_kda", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real ngf_final_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_final_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real ngf_initial_pg_ml value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_initial_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real operator_or_agent value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "limina", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real osmolality_final_mOsm_kg value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_final_mOsm_kg", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_initial_mOsm_kg", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real pH_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real pH_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real prefilter_lot value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "prefilter_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real surface_modification value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "pda_polympc_surface_only", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "surface_modification", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real temperature_c value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real total_protein_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real total_protein_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real transferrin_final value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real transferrin_initial value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "challenge_zrc_nd_10m_guard", - "capture_instruction": "Enter the real visible_precipitate value for ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_precipitate", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real albumin_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real albumin_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real ammonia_final_uM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_final_uM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real ammonia_initial_uM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_initial_uM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real bdnf_final_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_final_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real bdnf_initial_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_initial_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real bubble_events value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "bubble_events", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real conductivity_final_mS_cm value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_final_mS_cm", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real conductivity_initial_mS_cm value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_initial_mS_cm", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real date value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real exposure_time_h value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "exposure_time_h", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real flow_rate_ul_min value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "flow_rate_ul_min", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real flow_resistance_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real flow_resistance_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real housing_material value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "coc_cop", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/housing_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "housing_material", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real initial_volume_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "initial_volume_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real lactate_final_mM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_final_mM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real lactate_initial_mM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_initial_mM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real medium_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real medium_name value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real membrane_area_cm2 value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_area_cm2", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real membrane_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_lot", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real mwco_kda value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "3.5", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mwco_kda", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real ngf_final_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_final_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real ngf_initial_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_initial_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real operator_or_agent value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "limina", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real osmolality_final_mOsm_kg value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_final_mOsm_kg", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_initial_mOsm_kg", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real pH_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_final_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real pH_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_initial_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real prefilter_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "prefilter_lot", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real surface_modification value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "pda_polympc_surface_only", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "surface_modification", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real temperature_c value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real total_protein_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real total_protein_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real transferrin_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real transferrin_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real visible_precipitate value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/visible_precipitate_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_precipitate", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real albumin_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real albumin_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real ammonia_final_uM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_final_uM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real ammonia_initial_uM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_initial_uM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real bdnf_final_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_final_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real bdnf_initial_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_initial_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real bubble_events value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "bubble_events", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real conductivity_final_mS_cm value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_final_mS_cm", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real conductivity_initial_mS_cm value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_initial_mS_cm", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real date value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real exposure_time_h value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "exposure_time_h", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real flow_rate_ul_min value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "flow_rate_ul_min", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real flow_resistance_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real flow_resistance_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real housing_material value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "coc_cop", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/housing_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "housing_material", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real initial_volume_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "initial_volume_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real lactate_final_mM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_final_mM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real lactate_initial_mM value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_initial_mM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real medium_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real medium_name value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real membrane_area_cm2 value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_area_cm2", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real membrane_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real mwco_kda value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "3.5", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mwco_kda", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real ngf_final_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_final_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real ngf_initial_pg_ml value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_initial_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real operator_or_agent value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "limina", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real osmolality_final_mOsm_kg value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_final_mOsm_kg", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_initial_mOsm_kg", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real pH_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_final_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real pH_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_initial_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real prefilter_lot value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "prefilter_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real surface_modification value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "pda_polympc_surface_only", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "surface_modification", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real temperature_c value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real total_protein_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real total_protein_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real transferrin_final value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real transferrin_initial value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "lead_zrc_nd_3p5m_guard", - "capture_instruction": "Enter the real visible_precipitate value for ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/visible_precipitate_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_precipitate", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real albumin_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/albumin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real albumin_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/albumin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real ammonia_final_uM value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_final_uM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real ammonia_initial_uM value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_initial_uM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real bdnf_final_pg_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_final_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real bdnf_initial_pg_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_initial_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real bubble_events value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/bubble_events_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "bubble_events", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real conductivity_final_mS_cm value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_final_mS_cm", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real conductivity_initial_mS_cm value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_initial_mS_cm", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real date value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real exposure_time_h value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "exposure_time_h", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real flow_rate_ul_min value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "flow_rate_ul_min", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real flow_resistance_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real flow_resistance_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real housing_material value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "none", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/housing_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/housing_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "housing_material", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real initial_volume_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "initial_volume_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real lactate_final_mM value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_final_mM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real lactate_initial_mM value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_initial_mM", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real medium_lot value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real medium_name value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real membrane_area_cm2 value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_area_cm2", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real membrane_lot value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/membrane_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_lot", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real mwco_kda value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/mwco_kda_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mwco_kda", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real ngf_final_pg_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_final_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real ngf_initial_pg_ml value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_initial_pg_ml", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real operator_or_agent value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "limina", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real osmolality_final_mOsm_kg value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_final_mOsm_kg", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_initial_mOsm_kg", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real pH_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/pH_final_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/pH_final_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real pH_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/pH_initial_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/pH_initial_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real prefilter_lot value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "prefilter_lot", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real surface_modification value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "none", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/surface_modification_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "surface_modification", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real temperature_c value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real total_protein_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/total_protein_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real total_protein_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real transferrin_final value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/transferrin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_final", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real transferrin_initial value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_initial", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real visible_precipitate value for ZRCND-A-no_module_static_control-R1-0h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/visible_precipitate_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-0h", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-0h/visible_precipitate_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_precipitate", - "timepoint": "0 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real albumin_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/albumin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real albumin_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/albumin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "albumin_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real ammonia_final_uM value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ammonia_final_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_final_uM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real ammonia_initial_uM value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ammonia_initial_uM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ammonia_initial_uM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real bdnf_final_pg_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bdnf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_final_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real bdnf_initial_pg_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bdnf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "bdnf_initial_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real bubble_events value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/bubble_events_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "bubble_events", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real conductivity_final_mS_cm value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/conductivity_final_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_final_mS_cm", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real conductivity_initial_mS_cm value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "conductivity_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/conductivity_initial_mS_cm_conductivity_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "conductivity_initial_mS_cm", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real date value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/date_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/date_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "date", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real exposure_time_h value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/exposure_time_h_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "exposure_time_h", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real flow_rate_ul_min value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_rate_ul_min_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "flow_rate_ul_min", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real flow_resistance_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_resistance_final_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real flow_resistance_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "pressure_flow_or_resistance_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/flow_resistance_initial_pressure_flow_or_resistance_export.csv", - "source_file_exists": "false", - "target_field": "flow_resistance_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real housing_material value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "none", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/housing_material_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/housing_material_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "housing_material", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real initial_volume_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/initial_volume_ml_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "initial_volume_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real lactate_final_mM value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/lactate_final_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_final_mM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real lactate_initial_mM value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/lactate_initial_mM_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "lactate_initial_mM", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real medium_lot value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/medium_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real medium_name value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/medium_name_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "medium_name", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real membrane_area_cm2 value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/membrane_area_cm2_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_area_cm2", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real membrane_lot value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/membrane_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "membrane_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real mwco_kda value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/mwco_kda_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "mwco_kda", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real ngf_final_pg_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ngf_final_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_final_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real ngf_initial_pg_ml value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/ngf_initial_pg_ml_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "ngf_initial_pg_ml", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real operator_or_agent value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "limina", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/operator_or_agent_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "operator_or_agent", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real osmolality_final_mOsm_kg value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/osmolality_final_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_final_mOsm_kg", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real osmolality_initial_mOsm_kg value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "osmometer_report_or_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/osmolality_initial_mOsm_kg_osmometer_report_or_export.pdf", - "source_file_exists": "false", - "target_field": "osmolality_initial_mOsm_kg", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real pH_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/pH_final_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/pH_final_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real pH_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/pH_initial_pH_meter_export_or_photo.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "pH_meter_export_or_photo", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/pH_initial_pH_meter_export_or_photo.csv", - "source_file_exists": "false", - "target_field": "pH_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real prefilter_lot value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/prefilter_lot_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "prefilter_lot", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real surface_modification value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "false", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "none", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "bench_or_chain_of_custody_record", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/surface_modification_bench_or_chain_of_custody_record.csv", - "source_file_exists": "false", - "target_field": "surface_modification", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real temperature_c value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "temperature_or_incubator_log", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/temperature_c_temperature_or_incubator_log.csv", - "source_file_exists": "false", - "target_field": "temperature_c", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real total_protein_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/total_protein_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real total_protein_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/total_protein_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "total_protein_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real transferrin_final value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/transferrin_final_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_final", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real transferrin_initial value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "biochemical_or_plate_reader_export", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/transferrin_initial_biochemical_or_plate_reader_export.csv", - "source_file_exists": "false", - "target_field": "transferrin_initial", - "timepoint": "24 h", - "unit": "", - "value": "" - }, - { - "article_id": "no_module_static_control", - "capture_instruction": "Enter the real visible_precipitate value for ZRCND-A-no_module_static_control-R1-24h, cite the raw source_file, then run the matching wide source-value importer.", - "current_value": "", - "instrument_id": "", - "instrument_required": "true", - "measured_at": "", - "missing_items": "value;measured_at;operator_or_agent;instrument_id;source_file_missing", - "notes": "", - "operator_or_agent": "", - "phase": "A", - "planned_value": "", - "profile": "zrc_phase_a", - "recommended_source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/visible_precipitate_image_or_scoring_worksheet.png", - "replicate": "1", - "review_status": "awaiting_value_entry", - "run_id": "ZRCND-A-no_module_static_control-R1-24h", - "source_class": "image_or_scoring_worksheet", - "source_file": "data/source_files/full/zrc_nd_phase_a/ZRCND-A-no_module_static_control-R1-24h/visible_precipitate_image_or_scoring_worksheet.png", - "source_file_exists": "false", - "target_field": "visible_precipitate", - "timepoint": "24 h", - "unit": "", - "value": "" - } - ], - "status": "zrc_nd_phase_a_source_values_sheet_ready", - "summary": { - "filled_value_rows": 0, - "import_ready_rows": 0, - "review_status_counts": { - "awaiting_value_entry": 304 - }, - "source_class_counts": { - "bench_or_chain_of_custody_record": 104, - "biochemical_or_plate_reader_export": 112, - "conductivity_meter_export_or_photo": 16, - "image_or_scoring_worksheet": 8, - "osmometer_report_or_export": 16, - "pH_meter_export_or_photo": 16, - "pressure_flow_or_resistance_export": 24, - "temperature_or_incubator_log": 8 - }, - "source_file_exists_rows": 0, - "source_value_rows": 304 - } -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_vendor_bundle_entry_apply.json b/data/zrc_nd_phase_a_vendor_bundle_entry_apply.json deleted file mode 100644 index 0ea408f..0000000 --- a/data/zrc_nd_phase_a_vendor_bundle_entry_apply.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "applied_bundles": [], - "boundary": "This apply step only copies human-reviewed, source-file-backed ZRC-ND Phase A bundle values into the source-values sheet. The importer, merge, gates, readiness audit, and claim audit still decide whether anything is real material evidence.", - "inputs": { - "sheet": "data/zrc_nd_phase_a_vendor_return_inbox/completed_bundle_entry_sheet.csv", - "source_manifest": "data/limina_source_file_manifest.json", - "source_values": "data/zrc_nd_phase_a_source_values.csv" - }, - "issues": [], - "status": "zrc_phase_a_vendor_bundle_entry_apply_no_apply_rows", - "summary": { - "applied_bundles": 0, - "applied_source_value_rows": 0, - "apply_rows": 0, - "duplicate_apply_rows": 0, - "error_count": 0, - "sheet_rows": 64, - "skipped_apply_no_rows": 64, - "warning_count": 0 - }, - "updated_source_values": "" -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_vendor_bundle_entry_sheet.json b/data/zrc_nd_phase_a_vendor_bundle_entry_sheet.json deleted file mode 100644 index a3fef08..0000000 --- a/data/zrc_nd_phase_a_vendor_bundle_entry_sheet.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "boundary": "This sheet only consolidates ZRC-ND Phase A vendor-return value entry. It is not measured evidence; the apply step, source-value importer, merge, sentinel interpretation, readiness audit, and claim audit still control evidence status.", - "generated_artifacts": { - "json": "data/zrc_nd_phase_a_vendor_bundle_entry_sheet.json", - "report": "reports/zrc_nd_phase_a_vendor_bundle_entry_sheet.md", - "sheet": "data/zrc_nd_phase_a_vendor_return_inbox/completed_bundle_entry_sheet.csv" - }, - "inputs": { - "export_root": "data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports", - "source_values": "data/zrc_nd_phase_a_source_values.csv" - }, - "post_fill_command": "python3 scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py", - "status": "zrc_phase_a_vendor_bundle_entry_sheet_ready", - "summary": { - "blocked_rows": 0, - "bundle_rows": 64, - "entry_status_counts": { - "awaiting_bundle_entry": 64 - }, - "filled_bundle_rows": 0, - "missing_source_columns": [], - "ready_to_apply_rows": 0, - "source_class_counts": { - "bench_or_chain_of_custody_record": 8, - "biochemical_or_plate_reader_export": 8, - "conductivity_meter_export_or_photo": 8, - "image_or_scoring_worksheet": 8, - "osmometer_report_or_export": 8, - "pH_meter_export_or_photo": 8, - "pressure_flow_or_resistance_export": 8, - "temperature_or_incubator_log": 8 - }, - "source_file_exists_rows": 0, - "value_columns": 38 - } -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_vendor_candidates.json b/data/zrc_nd_phase_a_vendor_candidates.json deleted file mode 100644 index 5a97c25..0000000 --- a/data/zrc_nd_phase_a_vendor_candidates.json +++ /dev/null @@ -1,227 +0,0 @@ -{ - "status": "screening_candidates_not_endorsements", - "last_checked": "2026-05-24", - "purpose": "Identify external services that could return real ZRC-ND Phase A acellular medium-integrity measurements without counting any vendor claim as material evidence.", - "active_candidate": "limina_zrc_nd_v0_1", - "measurement_need": { - "core_phase_a_tests": [ - "pH before and after 0 h and 24 h Phase A exposures", - "osmolality before and after 0 h and 24 h Phase A exposures", - "conductivity before and after 0 h and 24 h Phase A exposures", - "appearance, turbidity, visible precipitate, bubble, or color-shift notes", - "run_id-level provenance for baseline, lead, challenge, and no-module controls" - ], - "module_context": [ - "3.5 kDa regenerated-cellulose baseline article", - "3.5 kDa MPC-like zwitterionic lead article", - "10 kDa high-clearance challenge article", - "matched no-module static control" - ], - "future_not_required_for_phase_a": [ - "full ISO 10993 extractables/leachables", - "BDNF/NGF retention", - "lactate/ammonium clearance", - "conditioned-medium or live-cell biological follow-up" - ] - }, - "outreach_strategy": [ - "Ask first for non-GLP or exploratory R&D feasibility and exact CSV return; escalate to GLP or E&L only after the material-blank gate identifies a need.", - "Prefer vendors that can report pH, osmolality, appearance/turbidity, and possibly conductivity at sample level.", - "If conductivity is not offered by a media lab, pair the media lab with an internal meter or a second physicochemical testing lab while preserving the same run_id labels.", - "Ask membrane/component vendors for article preparation and compatibility support, but do not treat supplier guidance as measurement evidence.", - "Reject any quote that returns only certificates, pooled averages, or narrative feasibility opinions." - ], - "candidates": [ - { - "id": "pacific_biolabs_physicochemical", - "name": "Pacific BioLabs Physicochemical Properties Testing", - "source_url": "https://pacificbiolabs.com/physicochemical-properties", - "contact_url": "https://pacificbiolabs.com/contact/", - "service_type": "physicochemical_testing", - "fit_for_phase_a": "strong_integrated_physicochemical_candidate", - "evidence_from_source": "Public page lists physicochemical testing including appearance, pH, osmolality, viscosity, optical activity, and spectral analysis; contact page provides quote phone and contact path.", - "likely_covers": [ - "appearance", - "pH", - "osmolality", - "possible analytical add-ons" - ], - "unknowns_to_ask": [ - "Can conductivity be added to the pH/osmolality/appearance panel or routed to another internal analytical service?", - "Can they accept nonclinical neural-medium aliquots exposed to regenerated-cellulose membrane/module articles?", - "Can they preserve one report row per LIMINA run_id and return raw values in the provided CSV schema?" - ], - "risk": "May be oriented toward regulated pharma/biologics lot-release workflows; exploratory R&D scope and conductivity need confirmation." - }, - { - "id": "sigmaaldrich_media_testing", - "name": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "source_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "service_type": "cell_culture_media_testing", - "fit_for_phase_a": "strong_media_qc_candidate", - "evidence_from_source": "Service page lists cell culture media stability/testing with standard product release tests including appearance, pH, osmolality, endotoxin, bioburden, and solubility.", - "likely_covers": [ - "appearance", - "pH", - "osmolality", - "media testing context" - ], - "unknowns_to_ask": [ - "Can conductivity be added for the Phase A material-blank gate?", - "Can they test customer-prepared medium aliquots exposed to dialysis membrane/module witness articles?", - "Can they return one row per run_id instead of product-lot summaries?" - ], - "risk": "May focus on media products and release/stability programs rather than custom membrane exposure aliquots." - }, - { - "id": "the_osmolality_lab", - "name": "The Osmolality Lab", - "source_url": "https://theosmolalitylab.com/services/", - "contact_url": "https://theosmolalitylab.com/contact-us/", - "service_type": "osmolality_and_ph_testing", - "fit_for_phase_a": "focused_osmolality_ph_candidate", - "evidence_from_source": "Service page lists osmolality by freezing point and vapor pressure plus pH testing; submission page asks for quote before samples and states sample policy constraints.", - "likely_covers": [ - "osmolality", - "pH" - ], - "unknowns_to_ask": [ - "Can they accept acellular neural-medium aliquots that are non-biohazard and non-radioactive?", - "Can they run all 8 Phase A rows as individual run_id samples with pre/post mapping?", - "Can they support conductivity directly, or should conductivity be measured by another lab or internally?" - ], - "risk": "Likely needs pairing for conductivity and module-specific appearance/turbidity interpretation." - }, - { - "id": "jordi_labs_el_polymer", - "name": "Jordi Labs Analytical Testing", - "source_url": "https://jordilabs.com/lab-testing/", - "contact_url": "https://jordilabs.com/contact/", - "service_type": "polymer_and_extractables_testing", - "fit_for_phase_a": "el_escalation_or_custom_chemistry_candidate", - "evidence_from_source": "Public lab-testing page describes contract polymer analytical testing with extractables/leachables, particulates/residue, polymer analysis, chromatography, mass spectrometry, microscopy, particle analysis, and physical testing.", - "likely_covers": [ - "extractables/leachables escalation", - "polymer analysis", - "particle or residue analysis", - "custom analytical chemistry" - ], - "unknowns_to_ask": [ - "Can they run a minimal aqueous neural-medium material-blank screen before a full E&L program?", - "Can they preserve run_id-level aliquot identity and source-file provenance?", - "Can they add basic pH/osmolality/conductivity, or should they only be used after Phase A shows extractables or particulate concerns?" - ], - "risk": "Stronger for E&L and polymer chemistry than minimal Phase A media QC; may be better as escalation after blank-integrity drift." - }, - { - "id": "repligen_field_application_support", - "name": "Repligen Field Applications and Customer Support", - "source_url": "https://www.repligen.com/support/contact-overview", - "contact_url": "https://www.repligen.com/support/contact-overview/contact", - "service_type": "membrane_supplier_application_support", - "fit_for_phase_a": "component_support_candidate", - "evidence_from_source": "Support page describes field application support for membrane selection and optimization, downstream processing, experimental design, and customer service for product and pricing inquiries.", - "likely_covers": [ - "membrane selection guidance", - "product handling guidance", - "application support", - "supplier documentation" - ], - "unknowns_to_ask": [ - "Can they recommend an off-the-shelf regenerated-cellulose or equivalent membrane format for a small acellular medium-integrity sentinel?", - "Can they advise on rinse/preconditioning and preservative removal without changing MWCO behavior?", - "Can they provide lot documentation needed for chain-of-custody and later measurement interpretation?" - ], - "risk": "Supplier support can improve article preparation but does not itself generate Phase A evidence." - }, - { - "id": "intertek_china_healthcare_testing", - "name": "Intertek China Healthcare and Medical Device Testing", - "source_url": "https://www.intertek.com.cn/", - "contact_url": "https://www.intertek.com.cn/contact/", - "service_type": "apac_materials_and_healthcare_testing", - "fit_for_phase_a": "second_wave_apac_split_scope_candidate", - "evidence_from_source": "Official China site describes testing, inspection, certification, and healthcare/medical-device related services; exact pH/osmolality/conductivity coverage must be confirmed by RFQ.", - "likely_covers": [ - "China/APAC local intake", - "possible physicochemical testing routing", - "possible medical-device material testing" - ], - "unknowns_to_ask": [ - "Can the China lab route nonclinical neural-medium aliquots from membrane/module exposures to pH, osmolality, conductivity, and appearance testing?", - "Can they preserve one result per LIMINA run_id and return raw values in the Phase A CSV schema?", - "Can they keep this as exploratory non-GLP R&D instead of a certificate-only program?" - ], - "risk": "Useful for local routing but exact Phase A media-panel coverage is unconfirmed until technical review." - }, - { - "id": "wuxi_apptec_medical_device_testing", - "name": "WuXi AppTec Medical Device Testing", - "source_url": "https://www.wuxiapptec.com/", - "contact_url": "https://www.wuxiapptec.com/contact", - "service_type": "medical_device_biocompatibility_and_chemistry", - "fit_for_phase_a": "second_wave_apac_e_l_escalation_candidate", - "evidence_from_source": "Official company site lists global testing services; RFQ must route specifically to medical-device chemistry, biocompatibility, or extractables/leachables feasibility.", - "likely_covers": [ - "medical-device testing routing", - "chemistry or biocompatibility escalation", - "China/APAC logistics" - ], - "unknowns_to_ask": [ - "Can they run a small exploratory membrane/module material-blank screen before full ISO 10993 work?", - "Can pH, osmolality, conductivity, and appearance be returned at run_id level, or is this only an E&L escalation path?", - "What aliquot volume, module surface area, sample count, SDS, and custody requirements apply?" - ], - "risk": "Likely stronger after Phase A indicates chemical or biocompatibility risk; may be too heavy for first-pass media-panel testing." - }, - { - "id": "tuv_sud_china_medical_device_testing", - "name": "TUV SUD China Medical Device Testing", - "source_url": "https://www.tuvsud.cn/", - "contact_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "service_type": "medical_device_testing_and_biocompatibility", - "fit_for_phase_a": "second_wave_apac_regulatory_escalation_candidate", - "evidence_from_source": "Official China site covers medical-device testing and certification services; use RFQ to confirm whether exploratory material-blank measurements can be scoped separately.", - "likely_covers": [ - "medical-device testing routing", - "biocompatibility or chemical characterization escalation", - "China/APAC contact path" - ], - "unknowns_to_ask": [ - "Can they quote the Phase A media-integrity panel as non-GLP R&D and return raw run_id-level values?", - "If not, can they quote a later ISO 10993 chemical characterization step after Phase A identifies a need?", - "What sample-prep, surface-area, and custody constraints apply to regenerated-cellulose/module witness articles?" - ], - "risk": "Regulatory-service orientation may slow or over-scope Phase A unless the request is routed as a small exploratory screen." - }, - { - "id": "pony_testing_medical_device", - "name": "PONY Testing Medical Device and Life-Science Services", - "source_url": "https://www.ponytest.com/", - "contact_url": "https://www.ponytest.com/", - "service_type": "china_third_party_testing", - "fit_for_phase_a": "second_wave_china_screening_candidate", - "evidence_from_source": "Official site describes third-party testing services across health, safety, and product categories; exact medical-device, media chemistry, and custom R&D coverage must be confirmed.", - "likely_covers": [ - "China local third-party testing intake", - "possible physicochemical testing routing", - "possible product-safety or medical-device routing" - ], - "unknowns_to_ask": [ - "Can they route nonclinical neural-medium aliquots to pH, osmolality, conductivity, and appearance/turbidity readouts?", - "Can they return the provided Phase A CSV with one row per run_id and raw source-file references?", - "Can they avoid certificate-only or pooled-average reporting?" - ], - "risk": "Broad testing company; Phase A fit depends on successful technical routing and raw-data return agreement." - } - ], - "recommended_first_outreach_order": [ - "pacific_biolabs_physicochemical", - "sigmaaldrich_media_testing", - "the_osmolality_lab", - "jordi_labs_el_polymer", - "repligen_field_application_support" - ], - "non_claim_boundary": "Vendor capability claims and supplier guidance do not count as material evidence. Only returned real run-level measurements that pass LIMINA QC and claim audit can advance the material." -} diff --git a/data/zrc_nd_phase_a_vendor_contact_channels.json b/data/zrc_nd_phase_a_vendor_contact_channels.json deleted file mode 100644 index 626dee0..0000000 --- a/data/zrc_nd_phase_a_vendor_contact_channels.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "status": "official_contact_channels_checked", - "last_checked": "2026-05-24", - "purpose": "Official first-wave contact channels for sending ZRC-ND Phase A RFQ outbox bundles.", - "active_candidate": "limina_zrc_nd_v0_1", - "contacts": [ - { - "candidate_id": "pacific_biolabs_physicochemical", - "vendor_name": "Pacific BioLabs Physicochemical Properties Testing", - "primary_send_method": "contact_form_or_quote_phone", - "primary_email": "", - "secondary_emails": [], - "phone": "510-964-9000", - "contact_url": "https://pacificbiolabs.com/contact/", - "quote_url": "https://pacificbiolabs.com/contact/", - "sample_submission_url": "", - "source_url": "https://pacificbiolabs.com/contact/", - "source_note": "Official contact page lists contact form and 510-964-9000 for quotes and testing requests.", - "send_note": "Use the contact form first; ask whether the Phase A package can be handled as non-GLP exploratory physicochemical testing." - }, - { - "candidate_id": "sigmaaldrich_media_testing", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "primary_send_method": "service_page_or_technical_service", - "primary_email": "PSTechService@milliporesigma.com", - "secondary_emails": [ - "PSClientCare@milliporesigma.com" - ], - "phone": "1-800-325-3010; 1-800-221-1975; 1-866-CARE-811", - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "quote_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "sample_submission_url": "", - "source_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "source_note": "Official offices/contact page lists U.S. customer service, technical service, and Process Solutions technical/commercial service contacts.", - "send_note": "Use the service page/contact path first; ask to route the RFQ to cell culture media stability/testing or Process Solutions custom testing." - }, - { - "candidate_id": "the_osmolality_lab", - "vendor_name": "The Osmolality Lab", - "primary_send_method": "email_or_contact_form", - "primary_email": "info@osmolab.com", - "secondary_emails": [ - "billing@osmolab.com" - ], - "phone": "385-323-5141", - "contact_url": "https://theosmolalitylab.com/contact-us/", - "quote_url": "https://theosmolalitylab.com/contact-us/", - "sample_submission_url": "https://theosmolalitylab.com/submit-samples/", - "source_url": "https://theosmolalitylab.com/contact-us/", - "source_note": "Official contact page lists info@osmolab.com and 385.323.5141; submission page says to request a quote before sending samples.", - "send_note": "Ask explicitly whether acellular neural-medium aliquots from regenerated-cellulose module exposures fit their sample policy and whether conductivity is available." - }, - { - "candidate_id": "jordi_labs_el_polymer", - "vendor_name": "Jordi Labs Analytical Testing", - "primary_send_method": "contact_form_or_email", - "primary_email": "info@jordilabs.com", - "secondary_emails": [], - "phone": "508-966-1301", - "contact_url": "https://jordilabs.com/contact/", - "quote_url": "https://jordilabs.com/contact/", - "sample_submission_url": "", - "source_url": "https://jordilabs.com/contact/", - "source_note": "Official contact page lists info@jordilabs.com, 508-966-1301, and contact form.", - "send_note": "Use as chemistry/E&L escalation or custom analytical feasibility; do not over-scope before Phase A identifies a chemical drift concern." - }, - { - "wave": "second_wave", - "candidate_id": "intertek_china_healthcare_testing", - "vendor_name": "Intertek China Healthcare and Medical Device Testing", - "primary_send_method": "contact_form_or_china_service_email", - "primary_email": "service.china@intertek.com", - "secondary_emails": [], - "phone": "", - "contact_url": "https://www.intertek.com.cn/contact/", - "quote_url": "https://www.intertek.com.cn/contact/", - "sample_submission_url": "", - "source_url": "https://www.intertek.com.cn/contact/", - "source_note": "Official China contact path should be used to route the RFQ to healthcare, materials, or medical-device testing; exact pH/osmolality/conductivity coverage must be confirmed.", - "send_note": "Use as APAC split-scope fallback; require run_id-level raw values and non-GLP exploratory scope." - }, - { - "wave": "second_wave", - "candidate_id": "wuxi_apptec_medical_device_testing", - "vendor_name": "WuXi AppTec Medical Device Testing", - "primary_send_method": "contact_form", - "primary_email": "", - "secondary_emails": [], - "phone": "", - "contact_url": "https://www.wuxiapptec.com/contact", - "quote_url": "https://www.wuxiapptec.com/contact", - "sample_submission_url": "", - "source_url": "https://www.wuxiapptec.com/contact", - "source_note": "Use official contact routing for medical-device testing or chemistry/biocompatibility feasibility; do not assume Phase A media-panel coverage until technical review.", - "send_note": "Best as chemistry/E&L or biological escalation path after Phase A identifies material-blank risk." - }, - { - "wave": "second_wave", - "candidate_id": "tuv_sud_china_medical_device_testing", - "vendor_name": "TUV SUD China Medical Device Testing", - "primary_send_method": "contact_form", - "primary_email": "", - "secondary_emails": [], - "phone": "", - "contact_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "quote_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "sample_submission_url": "", - "source_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "source_note": "Use official China contact routing for medical-device testing or biocompatibility; exploratory Phase A scope requires confirmation.", - "send_note": "Use as second-wave regulatory/ISO route; ask whether non-GLP raw run_id-level testing can be scoped separately." - }, - { - "wave": "second_wave", - "candidate_id": "pony_testing_medical_device", - "vendor_name": "PONY Testing Medical Device and Life-Science Services", - "primary_send_method": "contact_form_or_service_inquiry", - "primary_email": "", - "secondary_emails": [], - "phone": "", - "contact_url": "https://www.ponytest.com/", - "quote_url": "https://www.ponytest.com/", - "sample_submission_url": "", - "source_url": "https://www.ponytest.com/", - "source_note": "Use official site inquiry path to route custom medical-device or physicochemical testing; exact Phase A fit must be confirmed.", - "send_note": "Use as China-local broad screening fallback only if the response commits to raw sample-level values and source-file provenance." - } - ], - "non_evidence_boundary": "Contact details and vendor responses are sourcing artifacts only. They do not count as material evidence until real returned measurements pass LIMINA QC." -} diff --git a/data/zrc_nd_phase_a_vendor_contact_plan.csv b/data/zrc_nd_phase_a_vendor_contact_plan.csv deleted file mode 100644 index b1e3210..0000000 --- a/data/zrc_nd_phase_a_vendor_contact_plan.csv +++ /dev/null @@ -1,9 +0,0 @@ -wave,candidate_id,vendor_name,primary_send_method,primary_email,secondary_emails,phone,contact_url,quote_url,sample_submission_url,source_url,source_note,email_file,bundle_zip,bundle_sha256,outbox_send_status,tracker_contact_date,tracker_reply_date,tracker_decision,contact_plan_status,send_note -first_wave,pacific_biolabs_physicochemical,Pacific BioLabs Physicochemical Properties Testing,contact_form_or_quote_phone,,,510-964-9000,https://pacificbiolabs.com/contact/,https://pacificbiolabs.com/contact/,,https://pacificbiolabs.com/contact/,Official contact page lists contact form and 510-964-9000 for quotes and testing requests.,data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip,b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d,ready_to_send,,,pending_outreach,ready_to_send,Use the contact form first; ask whether the Phase A package can be handled as non-GLP exploratory physicochemical testing. -first_wave,sigmaaldrich_media_testing,MilliporeSigma Cell Culture Media Stability and Testing Services,service_page_or_technical_service,PSTechService@milliporesigma.com,PSClientCare@milliporesigma.com,1-800-325-3010; 1-800-221-1975; 1-866-CARE-811,https://www.sigmaaldrich.com/US/en/collections/offices,https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services,,https://www.sigmaaldrich.com/US/en/collections/offices,"Official offices/contact page lists U.S. customer service, technical service, and Process Solutions technical/commercial service contacts.",data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip,020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2,ready_to_send,,,pending_outreach,ready_to_send,Use the service page/contact path first; ask to route the RFQ to cell culture media stability/testing or Process Solutions custom testing. -first_wave,the_osmolality_lab,The Osmolality Lab,email_or_contact_form,info@osmolab.com,billing@osmolab.com,385-323-5141,https://theosmolalitylab.com/contact-us/,https://theosmolalitylab.com/contact-us/,https://theosmolalitylab.com/submit-samples/,https://theosmolalitylab.com/contact-us/,Official contact page lists info@osmolab.com and 385.323.5141; submission page says to request a quote before sending samples.,data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip,29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f,ready_to_send,,,pending_outreach,ready_to_send,Ask explicitly whether acellular neural-medium aliquots from regenerated-cellulose module exposures fit their sample policy and whether conductivity is available. -first_wave,jordi_labs_el_polymer,Jordi Labs Analytical Testing,contact_form_or_email,info@jordilabs.com,,508-966-1301,https://jordilabs.com/contact/,https://jordilabs.com/contact/,,https://jordilabs.com/contact/,"Official contact page lists info@jordilabs.com, 508-966-1301, and contact form.",data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt,data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip,9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3,ready_to_send,,,pending_outreach,ready_to_send,Use as chemistry/E&L escalation or custom analytical feasibility; do not over-scope before Phase A identifies a chemical drift concern. -second_wave,intertek_china_healthcare_testing,Intertek China Healthcare and Medical Device Testing,contact_form_or_china_service_email,service.china@intertek.com,,,https://www.intertek.com.cn/contact/,https://www.intertek.com.cn/contact/,,https://www.intertek.com.cn/contact/,"Official China contact path should be used to route the RFQ to healthcare, materials, or medical-device testing; exact pH/osmolality/conductivity coverage must be confirmed.",,,,missing_outbox_row,,,,standby_secondary_wave,Use as APAC split-scope fallback; require run_id-level raw values and non-GLP exploratory scope. -second_wave,wuxi_apptec_medical_device_testing,WuXi AppTec Medical Device Testing,contact_form,,,,https://www.wuxiapptec.com/contact,https://www.wuxiapptec.com/contact,,https://www.wuxiapptec.com/contact,Use official contact routing for medical-device testing or chemistry/biocompatibility feasibility; do not assume Phase A media-panel coverage until technical review.,,,,missing_outbox_row,,,,standby_secondary_wave,Best as chemistry/E&L or biological escalation path after Phase A identifies material-blank risk. -second_wave,tuv_sud_china_medical_device_testing,TUV SUD China Medical Device Testing,contact_form,,,,https://www.tuvsud.cn/zh-cn/contact-us,https://www.tuvsud.cn/zh-cn/contact-us,,https://www.tuvsud.cn/zh-cn/contact-us,Use official China contact routing for medical-device testing or biocompatibility; exploratory Phase A scope requires confirmation.,,,,missing_outbox_row,,,,standby_secondary_wave,Use as second-wave regulatory/ISO route; ask whether non-GLP raw run_id-level testing can be scoped separately. -second_wave,pony_testing_medical_device,PONY Testing Medical Device and Life-Science Services,contact_form_or_service_inquiry,,,,https://www.ponytest.com/,https://www.ponytest.com/,,https://www.ponytest.com/,Use official site inquiry path to route custom medical-device or physicochemical testing; exact Phase A fit must be confirmed.,,,,missing_outbox_row,,,,standby_secondary_wave,Use as China-local broad screening fallback only if the response commits to raw sample-level values and source-file provenance. diff --git a/data/zrc_nd_phase_a_vendor_contact_plan.json b/data/zrc_nd_phase_a_vendor_contact_plan.json deleted file mode 100644 index c2978b5..0000000 --- a/data/zrc_nd_phase_a_vendor_contact_plan.json +++ /dev/null @@ -1,205 +0,0 @@ -{ - "active_candidate": "limina_zrc_nd_v0_1", - "last_checked": "2026-05-24", - "purpose": "Official contact channels and send checklist for ZRC-ND Phase A first-wave RFQ bundles plus standby secondary-wave options.", - "row_count": 8, - "rows": [ - { - "bundle_sha256": "b00499c1a70ec472a11eb8d894c2a463d6cdd3bc3819011aeee203de8980ec3d", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/pacific_biolabs_physicochemical_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "pacific_biolabs_physicochemical", - "contact_plan_status": "ready_to_send", - "contact_url": "https://pacificbiolabs.com/contact/", - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/pacific_biolabs_physicochemical_rfq_email.txt", - "outbox_send_status": "ready_to_send", - "phone": "510-964-9000", - "primary_email": "", - "primary_send_method": "contact_form_or_quote_phone", - "quote_url": "https://pacificbiolabs.com/contact/", - "sample_submission_url": "", - "secondary_emails": "", - "send_note": "Use the contact form first; ask whether the Phase A package can be handled as non-GLP exploratory physicochemical testing.", - "source_note": "Official contact page lists contact form and 510-964-9000 for quotes and testing requests.", - "source_url": "https://pacificbiolabs.com/contact/", - "tracker_contact_date": "", - "tracker_decision": "pending_outreach", - "tracker_reply_date": "", - "vendor_name": "Pacific BioLabs Physicochemical Properties Testing", - "wave": "first_wave" - }, - { - "bundle_sha256": "020855375daaa1e6afde37c0d84b3ecffe2ddaadb5ca88e44a02ed842ac3b8d2", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/sigmaaldrich_media_testing_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "sigmaaldrich_media_testing", - "contact_plan_status": "ready_to_send", - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/sigmaaldrich_media_testing_rfq_email.txt", - "outbox_send_status": "ready_to_send", - "phone": "1-800-325-3010; 1-800-221-1975; 1-866-CARE-811", - "primary_email": "PSTechService@milliporesigma.com", - "primary_send_method": "service_page_or_technical_service", - "quote_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "sample_submission_url": "", - "secondary_emails": "PSClientCare@milliporesigma.com", - "send_note": "Use the service page/contact path first; ask to route the RFQ to cell culture media stability/testing or Process Solutions custom testing.", - "source_note": "Official offices/contact page lists U.S. customer service, technical service, and Process Solutions technical/commercial service contacts.", - "source_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "tracker_contact_date": "", - "tracker_decision": "pending_outreach", - "tracker_reply_date": "", - "vendor_name": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "wave": "first_wave" - }, - { - "bundle_sha256": "29125cb54ad2a21b1b161a4ecf22ec430b6c4109d8c208c4bd931a607373406f", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/the_osmolality_lab_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "the_osmolality_lab", - "contact_plan_status": "ready_to_send", - "contact_url": "https://theosmolalitylab.com/contact-us/", - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/the_osmolality_lab_rfq_email.txt", - "outbox_send_status": "ready_to_send", - "phone": "385-323-5141", - "primary_email": "info@osmolab.com", - "primary_send_method": "email_or_contact_form", - "quote_url": "https://theosmolalitylab.com/contact-us/", - "sample_submission_url": "https://theosmolalitylab.com/submit-samples/", - "secondary_emails": "billing@osmolab.com", - "send_note": "Ask explicitly whether acellular neural-medium aliquots from regenerated-cellulose module exposures fit their sample policy and whether conductivity is available.", - "source_note": "Official contact page lists info@osmolab.com and 385.323.5141; submission page says to request a quote before sending samples.", - "source_url": "https://theosmolalitylab.com/contact-us/", - "tracker_contact_date": "", - "tracker_decision": "pending_outreach", - "tracker_reply_date": "", - "vendor_name": "The Osmolality Lab", - "wave": "first_wave" - }, - { - "bundle_sha256": "9c91fd2364629fa9c84d200d10a6ef041e479bcac16a50dc70082a3bb31750c3", - "bundle_zip": "data/zrc_nd_phase_a_rfq_outbox/vendor_packages/jordi_labs_el_polymer_zrc_nd_phase_a_rfq_bundle.zip", - "candidate_id": "jordi_labs_el_polymer", - "contact_plan_status": "ready_to_send", - "contact_url": "https://jordilabs.com/contact/", - "email_file": "data/zrc_nd_phase_a_rfq_outbox/emails/jordi_labs_el_polymer_rfq_email.txt", - "outbox_send_status": "ready_to_send", - "phone": "508-966-1301", - "primary_email": "info@jordilabs.com", - "primary_send_method": "contact_form_or_email", - "quote_url": "https://jordilabs.com/contact/", - "sample_submission_url": "", - "secondary_emails": "", - "send_note": "Use as chemistry/E&L escalation or custom analytical feasibility; do not over-scope before Phase A identifies a chemical drift concern.", - "source_note": "Official contact page lists info@jordilabs.com, 508-966-1301, and contact form.", - "source_url": "https://jordilabs.com/contact/", - "tracker_contact_date": "", - "tracker_decision": "pending_outreach", - "tracker_reply_date": "", - "vendor_name": "Jordi Labs Analytical Testing", - "wave": "first_wave" - }, - { - "bundle_sha256": "", - "bundle_zip": "", - "candidate_id": "intertek_china_healthcare_testing", - "contact_plan_status": "standby_secondary_wave", - "contact_url": "https://www.intertek.com.cn/contact/", - "email_file": "", - "outbox_send_status": "missing_outbox_row", - "phone": "", - "primary_email": "service.china@intertek.com", - "primary_send_method": "contact_form_or_china_service_email", - "quote_url": "https://www.intertek.com.cn/contact/", - "sample_submission_url": "", - "secondary_emails": "", - "send_note": "Use as APAC split-scope fallback; require run_id-level raw values and non-GLP exploratory scope.", - "source_note": "Official China contact path should be used to route the RFQ to healthcare, materials, or medical-device testing; exact pH/osmolality/conductivity coverage must be confirmed.", - "source_url": "https://www.intertek.com.cn/contact/", - "tracker_contact_date": "", - "tracker_decision": "", - "tracker_reply_date": "", - "vendor_name": "Intertek China Healthcare and Medical Device Testing", - "wave": "second_wave" - }, - { - "bundle_sha256": "", - "bundle_zip": "", - "candidate_id": "wuxi_apptec_medical_device_testing", - "contact_plan_status": "standby_secondary_wave", - "contact_url": "https://www.wuxiapptec.com/contact", - "email_file": "", - "outbox_send_status": "missing_outbox_row", - "phone": "", - "primary_email": "", - "primary_send_method": "contact_form", - "quote_url": "https://www.wuxiapptec.com/contact", - "sample_submission_url": "", - "secondary_emails": "", - "send_note": "Best as chemistry/E&L or biological escalation path after Phase A identifies material-blank risk.", - "source_note": "Use official contact routing for medical-device testing or chemistry/biocompatibility feasibility; do not assume Phase A media-panel coverage until technical review.", - "source_url": "https://www.wuxiapptec.com/contact", - "tracker_contact_date": "", - "tracker_decision": "", - "tracker_reply_date": "", - "vendor_name": "WuXi AppTec Medical Device Testing", - "wave": "second_wave" - }, - { - "bundle_sha256": "", - "bundle_zip": "", - "candidate_id": "tuv_sud_china_medical_device_testing", - "contact_plan_status": "standby_secondary_wave", - "contact_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "email_file": "", - "outbox_send_status": "missing_outbox_row", - "phone": "", - "primary_email": "", - "primary_send_method": "contact_form", - "quote_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "sample_submission_url": "", - "secondary_emails": "", - "send_note": "Use as second-wave regulatory/ISO route; ask whether non-GLP raw run_id-level testing can be scoped separately.", - "source_note": "Use official China contact routing for medical-device testing or biocompatibility; exploratory Phase A scope requires confirmation.", - "source_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "tracker_contact_date": "", - "tracker_decision": "", - "tracker_reply_date": "", - "vendor_name": "TUV SUD China Medical Device Testing", - "wave": "second_wave" - }, - { - "bundle_sha256": "", - "bundle_zip": "", - "candidate_id": "pony_testing_medical_device", - "contact_plan_status": "standby_secondary_wave", - "contact_url": "https://www.ponytest.com/", - "email_file": "", - "outbox_send_status": "missing_outbox_row", - "phone": "", - "primary_email": "", - "primary_send_method": "contact_form_or_service_inquiry", - "quote_url": "https://www.ponytest.com/", - "sample_submission_url": "", - "secondary_emails": "", - "send_note": "Use as China-local broad screening fallback only if the response commits to raw sample-level values and source-file provenance.", - "source_note": "Use official site inquiry path to route custom medical-device or physicochemical testing; exact Phase A fit must be confirmed.", - "source_url": "https://www.ponytest.com/", - "tracker_contact_date": "", - "tracker_decision": "", - "tracker_reply_date": "", - "vendor_name": "PONY Testing Medical Device and Life-Science Services", - "wave": "second_wave" - } - ], - "send_instructions": [ - "Use the contact_url or quote_url when a vendor requires a form.", - "Use primary_email when direct email is accepted; attach the matching bundle_zip.", - "After sending, enter contact_date in data/zrc_nd_phase_a_quote_tracker.csv and rerun the iteration.", - "Do not ship samples until the vendor confirms scope, sample acceptance, custody fields, and quote number if required.", - "Do not treat a contact reply as evidence; only real returned measurements can move Phase A." - ], - "source_boundary": "Contact details and vendor responses are sourcing artifacts only. They do not count as material evidence until real returned measurements pass LIMINA QC.", - "status": "contact_plan_ready", - "status_counts": { - "ready_to_send": 4, - "standby_secondary_wave": 4 - } -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_vendor_outreach.json b/data/zrc_nd_phase_a_vendor_outreach.json deleted file mode 100644 index 9428f11..0000000 --- a/data/zrc_nd_phase_a_vendor_outreach.json +++ /dev/null @@ -1,421 +0,0 @@ -{ - "active_candidate": "limina_zrc_nd_v0_1", - "delivery_package_status": "ready_to_send", - "first_wave": [ - { - "contact_url": "https://pacificbiolabs.com/contact/", - "evidence_from_source": "Public page lists physicochemical testing including appearance, pH, osmolality, viscosity, optical activity, and spectral analysis; contact page provides quote phone and contact path.", - "fit_for_phase_a": "strong_integrated_physicochemical_candidate", - "id": "pacific_biolabs_physicochemical", - "likely_covers": [ - "appearance", - "pH", - "osmolality", - "possible analytical add-ons" - ], - "name": "Pacific BioLabs Physicochemical Properties Testing", - "risk": "May be oriented toward regulated pharma/biologics lot-release workflows; exploratory R&D scope and conductivity need confirmation.", - "service_type": "physicochemical_testing", - "source_url": "https://pacificbiolabs.com/physicochemical-properties", - "unknowns_to_ask": [ - "Can conductivity be added to the pH/osmolality/appearance panel or routed to another internal analytical service?", - "Can they accept nonclinical neural-medium aliquots exposed to regenerated-cellulose membrane/module articles?", - "Can they preserve one report row per LIMINA run_id and return raw values in the provided CSV schema?" - ] - }, - { - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "evidence_from_source": "Service page lists cell culture media stability/testing with standard product release tests including appearance, pH, osmolality, endotoxin, bioburden, and solubility.", - "fit_for_phase_a": "strong_media_qc_candidate", - "id": "sigmaaldrich_media_testing", - "likely_covers": [ - "appearance", - "pH", - "osmolality", - "media testing context" - ], - "name": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "risk": "May focus on media products and release/stability programs rather than custom membrane exposure aliquots.", - "service_type": "cell_culture_media_testing", - "source_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "unknowns_to_ask": [ - "Can conductivity be added for the Phase A material-blank gate?", - "Can they test customer-prepared medium aliquots exposed to dialysis membrane/module witness articles?", - "Can they return one row per run_id instead of product-lot summaries?" - ] - }, - { - "contact_url": "https://theosmolalitylab.com/contact-us/", - "evidence_from_source": "Service page lists osmolality by freezing point and vapor pressure plus pH testing; submission page asks for quote before samples and states sample policy constraints.", - "fit_for_phase_a": "focused_osmolality_ph_candidate", - "id": "the_osmolality_lab", - "likely_covers": [ - "osmolality", - "pH" - ], - "name": "The Osmolality Lab", - "risk": "Likely needs pairing for conductivity and module-specific appearance/turbidity interpretation.", - "service_type": "osmolality_and_ph_testing", - "source_url": "https://theosmolalitylab.com/services/", - "unknowns_to_ask": [ - "Can they accept acellular neural-medium aliquots that are non-biohazard and non-radioactive?", - "Can they run all 8 Phase A rows as individual run_id samples with pre/post mapping?", - "Can they support conductivity directly, or should conductivity be measured by another lab or internally?" - ] - }, - { - "contact_url": "https://jordilabs.com/contact/", - "evidence_from_source": "Public lab-testing page describes contract polymer analytical testing with extractables/leachables, particulates/residue, polymer analysis, chromatography, mass spectrometry, microscopy, particle analysis, and physical testing.", - "fit_for_phase_a": "el_escalation_or_custom_chemistry_candidate", - "id": "jordi_labs_el_polymer", - "likely_covers": [ - "extractables/leachables escalation", - "polymer analysis", - "particle or residue analysis", - "custom analytical chemistry" - ], - "name": "Jordi Labs Analytical Testing", - "risk": "Stronger for E&L and polymer chemistry than minimal Phase A media QC; may be better as escalation after blank-integrity drift.", - "service_type": "polymer_and_extractables_testing", - "source_url": "https://jordilabs.com/lab-testing/", - "unknowns_to_ask": [ - "Can they run a minimal aqueous neural-medium material-blank screen before a full E&L program?", - "Can they preserve run_id-level aliquot identity and source-file provenance?", - "Can they add basic pH/osmolality/conductivity, or should they only be used after Phase A shows extractables or particulate concerns?" - ] - } - ], - "last_checked": "2026-05-24", - "non_claim_boundary": "Vendor capability claims and supplier guidance do not count as material evidence. Only returned real run-level measurements that pass LIMINA QC and claim audit can advance the material.", - "outreach_strategy": [ - "Ask first for non-GLP or exploratory R&D feasibility and exact CSV return; escalate to GLP or E&L only after the material-blank gate identifies a need.", - "Prefer vendors that can report pH, osmolality, appearance/turbidity, and possibly conductivity at sample level.", - "If conductivity is not offered by a media lab, pair the media lab with an internal meter or a second physicochemical testing lab while preserving the same run_id labels.", - "Ask membrane/component vendors for article preparation and compatibility support, but do not treat supplier guidance as measurement evidence.", - "Reject any quote that returns only certificates, pooled averages, or narrative feasibility opinions." - ], - "purpose": "Shortlist external service options for returning real ZRC-ND Phase A measurement rows.", - "question_bank": [ - "Can you accept nonclinical acellular neural-medium aliquots exposed to small membrane/module witness articles?", - "Can you preserve one result per LIMINA run_id rather than returning pooled averages?", - "Can you report pH, osmolality, conductivity, and appearance/turbidity/visible precipitate for every requested row?", - "If conductivity is not available, can you identify whether the sample may be returned or paired with a second lab while preserving run_id labels?", - "Can you fill or accept the provided Phase A CSV schema without changing column names?", - "What minimum aliquot volume, sample count, container, and turnaround time are required?", - "What handling constraints apply to regenerated-cellulose membranes, guard filters, COC/COP/PEEK modules, and neural-medium proxies?", - "Can you return raw exports or instrument reports with stable filenames that can be reconciled to run_id?", - "Can this be scoped as exploratory non-GLP R&D rather than a full regulated E&L or product-release program?", - "What sample acceptance, SDS, chain-of-custody, and quote-number requirements must be met before shipping?" - ], - "ranked_candidates": [ - { - "contact_url": "https://pacificbiolabs.com/contact/", - "evidence_from_source": "Public page lists physicochemical testing including appearance, pH, osmolality, viscosity, optical activity, and spectral analysis; contact page provides quote phone and contact path.", - "fit_for_phase_a": "strong_integrated_physicochemical_candidate", - "id": "pacific_biolabs_physicochemical", - "likely_covers": [ - "appearance", - "pH", - "osmolality", - "possible analytical add-ons" - ], - "name": "Pacific BioLabs Physicochemical Properties Testing", - "risk": "May be oriented toward regulated pharma/biologics lot-release workflows; exploratory R&D scope and conductivity need confirmation.", - "service_type": "physicochemical_testing", - "source_url": "https://pacificbiolabs.com/physicochemical-properties", - "unknowns_to_ask": [ - "Can conductivity be added to the pH/osmolality/appearance panel or routed to another internal analytical service?", - "Can they accept nonclinical neural-medium aliquots exposed to regenerated-cellulose membrane/module articles?", - "Can they preserve one report row per LIMINA run_id and return raw values in the provided CSV schema?" - ] - }, - { - "contact_url": "https://www.sigmaaldrich.com/US/en/collections/offices", - "evidence_from_source": "Service page lists cell culture media stability/testing with standard product release tests including appearance, pH, osmolality, endotoxin, bioburden, and solubility.", - "fit_for_phase_a": "strong_media_qc_candidate", - "id": "sigmaaldrich_media_testing", - "likely_covers": [ - "appearance", - "pH", - "osmolality", - "media testing context" - ], - "name": "MilliporeSigma Cell Culture Media Stability and Testing Services", - "risk": "May focus on media products and release/stability programs rather than custom membrane exposure aliquots.", - "service_type": "cell_culture_media_testing", - "source_url": "https://www.sigmaaldrich.com/US/en/services/testing/cell-culture-media-stability-and-testing-services", - "unknowns_to_ask": [ - "Can conductivity be added for the Phase A material-blank gate?", - "Can they test customer-prepared medium aliquots exposed to dialysis membrane/module witness articles?", - "Can they return one row per run_id instead of product-lot summaries?" - ] - }, - { - "contact_url": "https://theosmolalitylab.com/contact-us/", - "evidence_from_source": "Service page lists osmolality by freezing point and vapor pressure plus pH testing; submission page asks for quote before samples and states sample policy constraints.", - "fit_for_phase_a": "focused_osmolality_ph_candidate", - "id": "the_osmolality_lab", - "likely_covers": [ - "osmolality", - "pH" - ], - "name": "The Osmolality Lab", - "risk": "Likely needs pairing for conductivity and module-specific appearance/turbidity interpretation.", - "service_type": "osmolality_and_ph_testing", - "source_url": "https://theosmolalitylab.com/services/", - "unknowns_to_ask": [ - "Can they accept acellular neural-medium aliquots that are non-biohazard and non-radioactive?", - "Can they run all 8 Phase A rows as individual run_id samples with pre/post mapping?", - "Can they support conductivity directly, or should conductivity be measured by another lab or internally?" - ] - }, - { - "contact_url": "https://jordilabs.com/contact/", - "evidence_from_source": "Public lab-testing page describes contract polymer analytical testing with extractables/leachables, particulates/residue, polymer analysis, chromatography, mass spectrometry, microscopy, particle analysis, and physical testing.", - "fit_for_phase_a": "el_escalation_or_custom_chemistry_candidate", - "id": "jordi_labs_el_polymer", - "likely_covers": [ - "extractables/leachables escalation", - "polymer analysis", - "particle or residue analysis", - "custom analytical chemistry" - ], - "name": "Jordi Labs Analytical Testing", - "risk": "Stronger for E&L and polymer chemistry than minimal Phase A media QC; may be better as escalation after blank-integrity drift.", - "service_type": "polymer_and_extractables_testing", - "source_url": "https://jordilabs.com/lab-testing/", - "unknowns_to_ask": [ - "Can they run a minimal aqueous neural-medium material-blank screen before a full E&L program?", - "Can they preserve run_id-level aliquot identity and source-file provenance?", - "Can they add basic pH/osmolality/conductivity, or should they only be used after Phase A shows extractables or particulate concerns?" - ] - }, - { - "contact_url": "https://www.repligen.com/support/contact-overview/contact", - "evidence_from_source": "Support page describes field application support for membrane selection and optimization, downstream processing, experimental design, and customer service for product and pricing inquiries.", - "fit_for_phase_a": "component_support_candidate", - "id": "repligen_field_application_support", - "likely_covers": [ - "membrane selection guidance", - "product handling guidance", - "application support", - "supplier documentation" - ], - "name": "Repligen Field Applications and Customer Support", - "risk": "Supplier support can improve article preparation but does not itself generate Phase A evidence.", - "service_type": "membrane_supplier_application_support", - "source_url": "https://www.repligen.com/support/contact-overview", - "unknowns_to_ask": [ - "Can they recommend an off-the-shelf regenerated-cellulose or equivalent membrane format for a small acellular medium-integrity sentinel?", - "Can they advise on rinse/preconditioning and preservative removal without changing MWCO behavior?", - "Can they provide lot documentation needed for chain-of-custody and later measurement interpretation?" - ] - }, - { - "contact_url": "https://www.intertek.com.cn/contact/", - "evidence_from_source": "Official China site describes testing, inspection, certification, and healthcare/medical-device related services; exact pH/osmolality/conductivity coverage must be confirmed by RFQ.", - "fit_for_phase_a": "second_wave_apac_split_scope_candidate", - "id": "intertek_china_healthcare_testing", - "likely_covers": [ - "China/APAC local intake", - "possible physicochemical testing routing", - "possible medical-device material testing" - ], - "name": "Intertek China Healthcare and Medical Device Testing", - "risk": "Useful for local routing but exact Phase A media-panel coverage is unconfirmed until technical review.", - "service_type": "apac_materials_and_healthcare_testing", - "source_url": "https://www.intertek.com.cn/", - "unknowns_to_ask": [ - "Can the China lab route nonclinical neural-medium aliquots from membrane/module exposures to pH, osmolality, conductivity, and appearance testing?", - "Can they preserve one result per LIMINA run_id and return raw values in the Phase A CSV schema?", - "Can they keep this as exploratory non-GLP R&D instead of a certificate-only program?" - ] - }, - { - "contact_url": "https://www.wuxiapptec.com/contact", - "evidence_from_source": "Official company site lists global testing services; RFQ must route specifically to medical-device chemistry, biocompatibility, or extractables/leachables feasibility.", - "fit_for_phase_a": "second_wave_apac_e_l_escalation_candidate", - "id": "wuxi_apptec_medical_device_testing", - "likely_covers": [ - "medical-device testing routing", - "chemistry or biocompatibility escalation", - "China/APAC logistics" - ], - "name": "WuXi AppTec Medical Device Testing", - "risk": "Likely stronger after Phase A indicates chemical or biocompatibility risk; may be too heavy for first-pass media-panel testing.", - "service_type": "medical_device_biocompatibility_and_chemistry", - "source_url": "https://www.wuxiapptec.com/", - "unknowns_to_ask": [ - "Can they run a small exploratory membrane/module material-blank screen before full ISO 10993 work?", - "Can pH, osmolality, conductivity, and appearance be returned at run_id level, or is this only an E&L escalation path?", - "What aliquot volume, module surface area, sample count, SDS, and custody requirements apply?" - ] - }, - { - "contact_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "evidence_from_source": "Official China site covers medical-device testing and certification services; use RFQ to confirm whether exploratory material-blank measurements can be scoped separately.", - "fit_for_phase_a": "second_wave_apac_regulatory_escalation_candidate", - "id": "tuv_sud_china_medical_device_testing", - "likely_covers": [ - "medical-device testing routing", - "biocompatibility or chemical characterization escalation", - "China/APAC contact path" - ], - "name": "TUV SUD China Medical Device Testing", - "risk": "Regulatory-service orientation may slow or over-scope Phase A unless the request is routed as a small exploratory screen.", - "service_type": "medical_device_testing_and_biocompatibility", - "source_url": "https://www.tuvsud.cn/", - "unknowns_to_ask": [ - "Can they quote the Phase A media-integrity panel as non-GLP R&D and return raw run_id-level values?", - "If not, can they quote a later ISO 10993 chemical characterization step after Phase A identifies a need?", - "What sample-prep, surface-area, and custody constraints apply to regenerated-cellulose/module witness articles?" - ] - }, - { - "contact_url": "https://www.ponytest.com/", - "evidence_from_source": "Official site describes third-party testing services across health, safety, and product categories; exact medical-device, media chemistry, and custom R&D coverage must be confirmed.", - "fit_for_phase_a": "second_wave_china_screening_candidate", - "id": "pony_testing_medical_device", - "likely_covers": [ - "China local third-party testing intake", - "possible physicochemical testing routing", - "possible product-safety or medical-device routing" - ], - "name": "PONY Testing Medical Device and Life-Science Services", - "risk": "Broad testing company; Phase A fit depends on successful technical routing and raw-data return agreement.", - "service_type": "china_third_party_testing", - "source_url": "https://www.ponytest.com/", - "unknowns_to_ask": [ - "Can they route nonclinical neural-medium aliquots to pH, osmolality, conductivity, and appearance/turbidity readouts?", - "Can they return the provided Phase A CSV with one row per run_id and raw source-file references?", - "Can they avoid certificate-only or pooled-average reporting?" - ] - } - ], - "requested_matrix": { - "articles": [ - "baseline_rc_3p5m_guard", - "challenge_zrc_nd_10m_guard", - "lead_zrc_nd_3p5m_guard", - "no_module_static_control" - ], - "replicates": [ - "1" - ], - "runs": 8, - "sample_event_types": [ - "final", - "initial" - ], - "sample_events": 16, - "timepoints": [ - "0 h", - "24 h" - ] - }, - "secondary_wave": [ - { - "contact_url": "https://www.repligen.com/support/contact-overview/contact", - "evidence_from_source": "Support page describes field application support for membrane selection and optimization, downstream processing, experimental design, and customer service for product and pricing inquiries.", - "fit_for_phase_a": "component_support_candidate", - "id": "repligen_field_application_support", - "likely_covers": [ - "membrane selection guidance", - "product handling guidance", - "application support", - "supplier documentation" - ], - "name": "Repligen Field Applications and Customer Support", - "risk": "Supplier support can improve article preparation but does not itself generate Phase A evidence.", - "service_type": "membrane_supplier_application_support", - "source_url": "https://www.repligen.com/support/contact-overview", - "unknowns_to_ask": [ - "Can they recommend an off-the-shelf regenerated-cellulose or equivalent membrane format for a small acellular medium-integrity sentinel?", - "Can they advise on rinse/preconditioning and preservative removal without changing MWCO behavior?", - "Can they provide lot documentation needed for chain-of-custody and later measurement interpretation?" - ] - }, - { - "contact_url": "https://www.intertek.com.cn/contact/", - "evidence_from_source": "Official China site describes testing, inspection, certification, and healthcare/medical-device related services; exact pH/osmolality/conductivity coverage must be confirmed by RFQ.", - "fit_for_phase_a": "second_wave_apac_split_scope_candidate", - "id": "intertek_china_healthcare_testing", - "likely_covers": [ - "China/APAC local intake", - "possible physicochemical testing routing", - "possible medical-device material testing" - ], - "name": "Intertek China Healthcare and Medical Device Testing", - "risk": "Useful for local routing but exact Phase A media-panel coverage is unconfirmed until technical review.", - "service_type": "apac_materials_and_healthcare_testing", - "source_url": "https://www.intertek.com.cn/", - "unknowns_to_ask": [ - "Can the China lab route nonclinical neural-medium aliquots from membrane/module exposures to pH, osmolality, conductivity, and appearance testing?", - "Can they preserve one result per LIMINA run_id and return raw values in the Phase A CSV schema?", - "Can they keep this as exploratory non-GLP R&D instead of a certificate-only program?" - ] - }, - { - "contact_url": "https://www.wuxiapptec.com/contact", - "evidence_from_source": "Official company site lists global testing services; RFQ must route specifically to medical-device chemistry, biocompatibility, or extractables/leachables feasibility.", - "fit_for_phase_a": "second_wave_apac_e_l_escalation_candidate", - "id": "wuxi_apptec_medical_device_testing", - "likely_covers": [ - "medical-device testing routing", - "chemistry or biocompatibility escalation", - "China/APAC logistics" - ], - "name": "WuXi AppTec Medical Device Testing", - "risk": "Likely stronger after Phase A indicates chemical or biocompatibility risk; may be too heavy for first-pass media-panel testing.", - "service_type": "medical_device_biocompatibility_and_chemistry", - "source_url": "https://www.wuxiapptec.com/", - "unknowns_to_ask": [ - "Can they run a small exploratory membrane/module material-blank screen before full ISO 10993 work?", - "Can pH, osmolality, conductivity, and appearance be returned at run_id level, or is this only an E&L escalation path?", - "What aliquot volume, module surface area, sample count, SDS, and custody requirements apply?" - ] - }, - { - "contact_url": "https://www.tuvsud.cn/zh-cn/contact-us", - "evidence_from_source": "Official China site covers medical-device testing and certification services; use RFQ to confirm whether exploratory material-blank measurements can be scoped separately.", - "fit_for_phase_a": "second_wave_apac_regulatory_escalation_candidate", - "id": "tuv_sud_china_medical_device_testing", - "likely_covers": [ - "medical-device testing routing", - "biocompatibility or chemical characterization escalation", - "China/APAC contact path" - ], - "name": "TUV SUD China Medical Device Testing", - "risk": "Regulatory-service orientation may slow or over-scope Phase A unless the request is routed as a small exploratory screen.", - "service_type": "medical_device_testing_and_biocompatibility", - "source_url": "https://www.tuvsud.cn/", - "unknowns_to_ask": [ - "Can they quote the Phase A media-integrity panel as non-GLP R&D and return raw run_id-level values?", - "If not, can they quote a later ISO 10993 chemical characterization step after Phase A identifies a need?", - "What sample-prep, surface-area, and custody constraints apply to regenerated-cellulose/module witness articles?" - ] - }, - { - "contact_url": "https://www.ponytest.com/", - "evidence_from_source": "Official site describes third-party testing services across health, safety, and product categories; exact medical-device, media chemistry, and custom R&D coverage must be confirmed.", - "fit_for_phase_a": "second_wave_china_screening_candidate", - "id": "pony_testing_medical_device", - "likely_covers": [ - "China local third-party testing intake", - "possible physicochemical testing routing", - "possible product-safety or medical-device routing" - ], - "name": "PONY Testing Medical Device and Life-Science Services", - "risk": "Broad testing company; Phase A fit depends on successful technical routing and raw-data return agreement.", - "service_type": "china_third_party_testing", - "source_url": "https://www.ponytest.com/", - "unknowns_to_ask": [ - "Can they route nonclinical neural-medium aliquots to pH, osmolality, conductivity, and appearance/turbidity readouts?", - "Can they return the provided Phase A CSV with one row per run_id and raw source-file references?", - "Can they avoid certificate-only or pooled-average reporting?" - ] - } - ], - "service_request_status": "ready_to_request_real_phase_a_measurements", - "status": "ready_for_vendor_screening" -} \ No newline at end of file diff --git a/data/zrc_nd_phase_a_vendor_return_checklist.csv b/data/zrc_nd_phase_a_vendor_return_checklist.csv deleted file mode 100644 index daa20d1..0000000 --- a/data/zrc_nd_phase_a_vendor_return_checklist.csv +++ /dev/null @@ -1,6 +0,0 @@ -item_id,expected_path,required,exists,status,acceptance -completed_phase_a_measurements,data/zrc_nd_phase_a_vendor_return_inbox/completed_phase_a_measurements.csv,true,false,missing_or_incomplete,"CSV has template schema, all 8 expected run_ids, real required values, and no placeholder markers." -completed_bundle_entry_sheet,data/zrc_nd_phase_a_vendor_return_inbox/completed_bundle_entry_sheet.csv,false,true,missing_or_incomplete,"Optional compact sheet has apply=yes rows, real source_file references, and is ready for source-value expansion." -completed_chain_of_custody,data/zrc_nd_phase_a_vendor_return_inbox/completed_chain_of_custody.csv,true,false,missing_or_incomplete,CSV uses the chain-of-custody schema with transfer fields filled for returned samples. -instrument_exports,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports,true,true,missing_or_unresolved,Directory contains original instrument exports/reports referenced by instrument_export_returned. -deviation_log,data/zrc_nd_phase_a_vendor_return_inbox/deviation_log.md,true,false,missing,Markdown or text log states no deviations or lists every protocol/sample/instrument deviation. diff --git a/data/zrc_nd_phase_a_vendor_return_inbox/README.md b/data/zrc_nd_phase_a_vendor_return_inbox/README.md deleted file mode 100644 index a44e751..0000000 --- a/data/zrc_nd_phase_a_vendor_return_inbox/README.md +++ /dev/null @@ -1,22 +0,0 @@ -# ZRC-ND Phase A Vendor Return Inbox - -Place real vendor/cooperator return files here. Do not place synthetic fixtures here. - -Expected files: - -- `completed_phase_a_measurements.csv`: completed Phase A measurement CSV using the LIMINA template schema. -- `completed_bundle_entry_sheet.csv`: optional compact source-bundle sheet generated by `render_zrc_nd_phase_a_vendor_bundle_entry_sheet.py`. -- `completed_chain_of_custody.csv`: completed sample/module chain-of-custody CSV. -- `external_lab_exports/`: original instrument exports or reports referenced by custody rows. -- `deviation_log.md`: deviations from timing, instruments, sample handling, medium, module, or membrane assumptions. - -After files are present, run: - -```bash -python3 scripts/render_zrc_nd_phase_a_vendor_return_intake.py -python3 scripts/render_zrc_nd_phase_a_vendor_bundle_entry_sheet.py -python3 scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py -python3 scripts/import_limina_wide_source_values.py --profile zrc_phase_a -python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_vendor_return_inbox/completed_phase_a_measurements.csv --out data/zrc_nd_validation_runs_active.csv -python3 scripts/run_limina_iteration.py -``` diff --git a/data/zrc_nd_phase_a_vendor_return_inbox/completed_bundle_entry_sheet.csv b/data/zrc_nd_phase_a_vendor_return_inbox/completed_bundle_entry_sheet.csv deleted file mode 100644 index c59ad10..0000000 --- a/data/zrc_nd_phase_a_vendor_return_inbox/completed_bundle_entry_sheet.csv +++ /dev/null @@ -1,65 +0,0 @@ -bundle_id,apply,source_file,measured_at,operator_or_agent,instrument_id,notes,value_albumin_final,value_albumin_initial,value_ammonia_final_uM,value_ammonia_initial_uM,value_bdnf_final_pg_ml,value_bdnf_initial_pg_ml,value_bubble_events,value_conductivity_final_mS_cm,value_conductivity_initial_mS_cm,value_date,value_exposure_time_h,value_flow_rate_ul_min,value_flow_resistance_final,value_flow_resistance_initial,value_housing_material,value_initial_volume_ml,value_lactate_final_mM,value_lactate_initial_mM,value_medium_lot,value_medium_name,value_membrane_area_cm2,value_membrane_lot,value_mwco_kda,value_ngf_final_pg_ml,value_ngf_initial_pg_ml,value_operator_or_agent,value_osmolality_final_mOsm_kg,value_osmolality_initial_mOsm_kg,value_pH_final,value_pH_initial,value_prefilter_lot,value_surface_modification,value_temperature_c,value_total_protein_final,value_total_protein_initial,value_transferrin_final,value_transferrin_initial,value_visible_precipitate,priority,run_id,phase,timepoint,replicate,article_id,source_class,target_fields,target_value_columns,source_value_rows,instrument_required,source_file_exists,allowed_source_file,entry_status,missing_items,operator_action -ZRCND-A-baseline_rc_3p5m_guard-R1-0h__bench_or_chain_of_custody_record,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,bench_or_chain_of_custody_record,date;exposure_time_h;flow_rate_ul_min;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;mwco_kda;operator_or_agent;prefilter_lot;surface_modification,value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification,13,false,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-0h__biochemical_or_plate_reader_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,biochemical_or_plate_reader_export,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;lactate_final_mM;lactate_initial_mM;ngf_final_pg_ml;ngf_initial_pg_ml;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial,value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial,14,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-0h__conductivity_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,conductivity_meter_export_or_photo,conductivity_final_mS_cm;conductivity_initial_mS_cm,value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-0h__image_or_scoring_worksheet,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/image_or_scoring_worksheet_vendor_return_bundle.png,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,image_or_scoring_worksheet,visible_precipitate,value_visible_precipitate,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/image_or_scoring_worksheet_vendor_return_bundle.png,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-0h__osmometer_report_or_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmometer_report_or_export_vendor_return_bundle.pdf,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,osmometer_report_or_export,osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg,value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/osmometer_report_or_export_vendor_return_bundle.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-0h__pH_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,pH_meter_export_or_photo,pH_final;pH_initial,value_pH_final;value_pH_initial,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pH_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_final;value_pH_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-0h__pressure_flow_or_resistance_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,pressure_flow_or_resistance_export,bubble_events;flow_resistance_final;flow_resistance_initial,value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial,3,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-0h__temperature_or_incubator_log,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/temperature_or_incubator_log_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,A,0 h,1,baseline_rc_3p5m_guard,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-0h/temperature_or_incubator_log_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-24h__bench_or_chain_of_custody_record,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,bench_or_chain_of_custody_record,date;exposure_time_h;flow_rate_ul_min;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;mwco_kda;operator_or_agent;prefilter_lot;surface_modification,value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification,13,false,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-24h__biochemical_or_plate_reader_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,biochemical_or_plate_reader_export,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;lactate_final_mM;lactate_initial_mM;ngf_final_pg_ml;ngf_initial_pg_ml;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial,value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial,14,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-24h__conductivity_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,conductivity_meter_export_or_photo,conductivity_final_mS_cm;conductivity_initial_mS_cm,value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-24h__image_or_scoring_worksheet,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/image_or_scoring_worksheet_vendor_return_bundle.png,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,image_or_scoring_worksheet,visible_precipitate,value_visible_precipitate,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/image_or_scoring_worksheet_vendor_return_bundle.png,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-24h__osmometer_report_or_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmometer_report_or_export_vendor_return_bundle.pdf,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,osmometer_report_or_export,osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg,value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/osmometer_report_or_export_vendor_return_bundle.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-24h__pH_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,pH_meter_export_or_photo,pH_final;pH_initial,value_pH_final;value_pH_initial,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pH_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_final;value_pH_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-24h__pressure_flow_or_resistance_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,pressure_flow_or_resistance_export,bubble_events;flow_resistance_final;flow_resistance_initial,value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial,3,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-baseline_rc_3p5m_guard-R1-24h__temperature_or_incubator_log,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/temperature_or_incubator_log_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,A,24 h,1,baseline_rc_3p5m_guard,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-baseline_rc_3p5m_guard-R1-24h/temperature_or_incubator_log_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h__bench_or_chain_of_custody_record,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,bench_or_chain_of_custody_record,date;exposure_time_h;flow_rate_ul_min;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;mwco_kda;operator_or_agent;prefilter_lot;surface_modification,value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification,13,false,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h__biochemical_or_plate_reader_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,biochemical_or_plate_reader_export,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;lactate_final_mM;lactate_initial_mM;ngf_final_pg_ml;ngf_initial_pg_ml;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial,value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial,14,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h__conductivity_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,conductivity_meter_export_or_photo,conductivity_final_mS_cm;conductivity_initial_mS_cm,value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h__image_or_scoring_worksheet,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/image_or_scoring_worksheet_vendor_return_bundle.png,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,image_or_scoring_worksheet,visible_precipitate,value_visible_precipitate,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/image_or_scoring_worksheet_vendor_return_bundle.png,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h__osmometer_report_or_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmometer_report_or_export_vendor_return_bundle.pdf,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,osmometer_report_or_export,osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg,value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/osmometer_report_or_export_vendor_return_bundle.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h__pH_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,pH_meter_export_or_photo,pH_final;pH_initial,value_pH_final;value_pH_initial,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pH_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_final;value_pH_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h__pressure_flow_or_resistance_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,pressure_flow_or_resistance_export,bubble_events;flow_resistance_final;flow_resistance_initial,value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial,3,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h__temperature_or_incubator_log,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/temperature_or_incubator_log_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,A,0 h,1,challenge_zrc_nd_10m_guard,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h/temperature_or_incubator_log_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h__bench_or_chain_of_custody_record,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,bench_or_chain_of_custody_record,date;exposure_time_h;flow_rate_ul_min;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;mwco_kda;operator_or_agent;prefilter_lot;surface_modification,value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification,13,false,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h__biochemical_or_plate_reader_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,biochemical_or_plate_reader_export,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;lactate_final_mM;lactate_initial_mM;ngf_final_pg_ml;ngf_initial_pg_ml;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial,value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial,14,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h__conductivity_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,conductivity_meter_export_or_photo,conductivity_final_mS_cm;conductivity_initial_mS_cm,value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h__image_or_scoring_worksheet,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/image_or_scoring_worksheet_vendor_return_bundle.png,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,image_or_scoring_worksheet,visible_precipitate,value_visible_precipitate,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/image_or_scoring_worksheet_vendor_return_bundle.png,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h__osmometer_report_or_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmometer_report_or_export_vendor_return_bundle.pdf,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,osmometer_report_or_export,osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg,value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/osmometer_report_or_export_vendor_return_bundle.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h__pH_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,pH_meter_export_or_photo,pH_final;pH_initial,value_pH_final;value_pH_initial,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pH_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_final;value_pH_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h__pressure_flow_or_resistance_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,pressure_flow_or_resistance_export,bubble_events;flow_resistance_final;flow_resistance_initial,value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial,3,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h__temperature_or_incubator_log,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/temperature_or_incubator_log_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,A,24 h,1,challenge_zrc_nd_10m_guard,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h/temperature_or_incubator_log_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h__bench_or_chain_of_custody_record,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,bench_or_chain_of_custody_record,date;exposure_time_h;flow_rate_ul_min;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;mwco_kda;operator_or_agent;prefilter_lot;surface_modification,value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification,13,false,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h__biochemical_or_plate_reader_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,biochemical_or_plate_reader_export,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;lactate_final_mM;lactate_initial_mM;ngf_final_pg_ml;ngf_initial_pg_ml;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial,value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial,14,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h__conductivity_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,conductivity_meter_export_or_photo,conductivity_final_mS_cm;conductivity_initial_mS_cm,value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h__image_or_scoring_worksheet,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/image_or_scoring_worksheet_vendor_return_bundle.png,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,image_or_scoring_worksheet,visible_precipitate,value_visible_precipitate,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/image_or_scoring_worksheet_vendor_return_bundle.png,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h__osmometer_report_or_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmometer_report_or_export_vendor_return_bundle.pdf,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,osmometer_report_or_export,osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg,value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/osmometer_report_or_export_vendor_return_bundle.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h__pH_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,pH_meter_export_or_photo,pH_final;pH_initial,value_pH_final;value_pH_initial,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pH_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_final;value_pH_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h__pressure_flow_or_resistance_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,39,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,pressure_flow_or_resistance_export,bubble_events;flow_resistance_final;flow_resistance_initial,value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial,3,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h__temperature_or_incubator_log,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/temperature_or_incubator_log_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,A,0 h,1,lead_zrc_nd_3p5m_guard,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h/temperature_or_incubator_log_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h__bench_or_chain_of_custody_record,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,bench_or_chain_of_custody_record,date;exposure_time_h;flow_rate_ul_min;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;mwco_kda;operator_or_agent;prefilter_lot;surface_modification,value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification,13,false,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h__biochemical_or_plate_reader_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,biochemical_or_plate_reader_export,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;lactate_final_mM;lactate_initial_mM;ngf_final_pg_ml;ngf_initial_pg_ml;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial,value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial,14,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h__conductivity_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,conductivity_meter_export_or_photo,conductivity_final_mS_cm;conductivity_initial_mS_cm,value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h__image_or_scoring_worksheet,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/image_or_scoring_worksheet_vendor_return_bundle.png,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,image_or_scoring_worksheet,visible_precipitate,value_visible_precipitate,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/image_or_scoring_worksheet_vendor_return_bundle.png,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h__osmometer_report_or_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmometer_report_or_export_vendor_return_bundle.pdf,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,osmometer_report_or_export,osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg,value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/osmometer_report_or_export_vendor_return_bundle.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h__pH_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,pH_meter_export_or_photo,pH_final;pH_initial,value_pH_final;value_pH_initial,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pH_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_final;value_pH_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h__pressure_flow_or_resistance_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,pressure_flow_or_resistance_export,bubble_events;flow_resistance_final;flow_resistance_initial,value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial,3,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h__temperature_or_incubator_log,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/temperature_or_incubator_log_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,48,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,A,24 h,1,lead_zrc_nd_3p5m_guard,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h/temperature_or_incubator_log_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-0h__bench_or_chain_of_custody_record,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,49,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,bench_or_chain_of_custody_record,date;exposure_time_h;flow_rate_ul_min;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;mwco_kda;operator_or_agent;prefilter_lot;surface_modification,value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification,13,false,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-0h__biochemical_or_plate_reader_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,50,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,biochemical_or_plate_reader_export,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;lactate_final_mM;lactate_initial_mM;ngf_final_pg_ml;ngf_initial_pg_ml;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial,value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial,14,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-0h__conductivity_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,conductivity_meter_export_or_photo,conductivity_final_mS_cm;conductivity_initial_mS_cm,value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-0h__image_or_scoring_worksheet,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/image_or_scoring_worksheet_vendor_return_bundle.png,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,52,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,image_or_scoring_worksheet,visible_precipitate,value_visible_precipitate,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/image_or_scoring_worksheet_vendor_return_bundle.png,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-0h__osmometer_report_or_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/osmometer_report_or_export_vendor_return_bundle.pdf,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,53,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,osmometer_report_or_export,osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg,value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/osmometer_report_or_export_vendor_return_bundle.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-0h__pH_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/pH_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,pH_meter_export_or_photo,pH_final;pH_initial,value_pH_final;value_pH_initial,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/pH_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_final;value_pH_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-0h__pressure_flow_or_resistance_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,55,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,pressure_flow_or_resistance_export,bubble_events;flow_resistance_final;flow_resistance_initial,value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial,3,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-0h__temperature_or_incubator_log,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/temperature_or_incubator_log_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,56,ZRCND-A-no_module_static_control-R1-0h,A,0 h,1,no_module_static_control,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-0h/temperature_or_incubator_log_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-24h__bench_or_chain_of_custody_record,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,57,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,bench_or_chain_of_custody_record,date;exposure_time_h;flow_rate_ul_min;housing_material;initial_volume_ml;medium_lot;medium_name;membrane_area_cm2;membrane_lot;mwco_kda;operator_or_agent;prefilter_lot;surface_modification,value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification,13,false,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/bench_or_chain_of_custody_record_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;value_date;value_exposure_time_h;value_flow_rate_ul_min;value_housing_material;value_initial_volume_ml;value_medium_lot;value_medium_name;value_membrane_area_cm2;value_membrane_lot;value_mwco_kda;value_operator_or_agent;value_prefilter_lot;value_surface_modification;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-24h__biochemical_or_plate_reader_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,58,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,biochemical_or_plate_reader_export,albumin_final;albumin_initial;ammonia_final_uM;ammonia_initial_uM;bdnf_final_pg_ml;bdnf_initial_pg_ml;lactate_final_mM;lactate_initial_mM;ngf_final_pg_ml;ngf_initial_pg_ml;total_protein_final;total_protein_initial;transferrin_final;transferrin_initial,value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial,14,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/biochemical_or_plate_reader_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_albumin_final;value_albumin_initial;value_ammonia_final_uM;value_ammonia_initial_uM;value_bdnf_final_pg_ml;value_bdnf_initial_pg_ml;value_lactate_final_mM;value_lactate_initial_mM;value_ngf_final_pg_ml;value_ngf_initial_pg_ml;value_total_protein_final;value_total_protein_initial;value_transferrin_final;value_transferrin_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-24h__conductivity_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,59,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,conductivity_meter_export_or_photo,conductivity_final_mS_cm;conductivity_initial_mS_cm,value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/conductivity_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_conductivity_final_mS_cm;value_conductivity_initial_mS_cm;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-24h__image_or_scoring_worksheet,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/image_or_scoring_worksheet_vendor_return_bundle.png,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,60,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,image_or_scoring_worksheet,visible_precipitate,value_visible_precipitate,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/image_or_scoring_worksheet_vendor_return_bundle.png,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_visible_precipitate;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-24h__osmometer_report_or_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/osmometer_report_or_export_vendor_return_bundle.pdf,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,61,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,osmometer_report_or_export,osmolality_final_mOsm_kg;osmolality_initial_mOsm_kg,value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/osmometer_report_or_export_vendor_return_bundle.pdf,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_osmolality_final_mOsm_kg;value_osmolality_initial_mOsm_kg;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-24h__pH_meter_export_or_photo,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/pH_meter_export_or_photo_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,pH_meter_export_or_photo,pH_final;pH_initial,value_pH_final;value_pH_initial,2,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/pH_meter_export_or_photo_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_pH_final;value_pH_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-24h__pressure_flow_or_resistance_export,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,63,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,pressure_flow_or_resistance_export,bubble_events;flow_resistance_final;flow_resistance_initial,value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial,3,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/pressure_flow_or_resistance_export_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_bubble_events;value_flow_resistance_final;value_flow_resistance_initial;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." -ZRCND-A-no_module_static_control-R1-24h__temperature_or_incubator_log,,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/temperature_or_incubator_log_vendor_return_bundle.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,64,ZRCND-A-no_module_static_control-R1-24h,A,24 h,1,no_module_static_control,temperature_or_incubator_log,temperature_c,value_temperature_c,1,true,false,data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports/ZRCND-A-no_module_static_control-R1-24h/temperature_or_incubator_log_vendor_return_bundle.csv,awaiting_bundle_entry,measured_at;operator_or_agent;instrument_id;value_temperature_c;source_file_missing,"Place the real vendor export/report in source_file, fill only real values, then set apply=yes and run scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py." diff --git a/data/zrc_nd_phase_a_vendor_return_intake.json b/data/zrc_nd_phase_a_vendor_return_intake.json deleted file mode 100644 index b522ce1..0000000 --- a/data/zrc_nd_phase_a_vendor_return_intake.json +++ /dev/null @@ -1,197 +0,0 @@ -{ - "bundle_entry_apply": { - "applied_bundles": 0, - "applied_source_value_rows": 0, - "errors": 0, - "path": "data/zrc_nd_phase_a_vendor_bundle_entry_apply.json", - "status": "zrc_phase_a_vendor_bundle_entry_apply_no_apply_rows" - }, - "bundle_entry_sheet": { - "apply_row_count": 0, - "blocked_apply_rows": 0, - "exists": true, - "missing_fields": [], - "missing_or_unresolved_source_file_count": 0, - "missing_or_unresolved_source_file_examples": [], - "path": "data/zrc_nd_phase_a_vendor_return_inbox/completed_bundle_entry_sheet.csv", - "ready_to_apply_rows": 0, - "row_count": 64, - "schema_ok": true - }, - "chain_of_custody": { - "exists": false, - "missing_fields": [ - "chain_id", - "sample_id", - "run_id", - "article_id", - "phase", - "timepoint", - "sample_event", - "replicate", - "planned_container_id", - "prepared_by", - "prepared_at", - "module_or_tube_id", - "membrane_lot", - "prefilter_lot", - "housing_material", - "medium_name", - "medium_lot", - "initial_volume_ml", - "exposure_started_at", - "exposure_ended_at", - "temperature_c", - "released_by", - "released_at", - "carrier_or_transfer_method", - "received_by", - "received_at", - "condition_on_receipt", - "storage_location", - "instrument_export_returned", - "deviation_notes", - "transfer_status" - ], - "missing_or_unresolved_export_count": 0, - "missing_or_unresolved_export_examples": [], - "path": "data/zrc_nd_phase_a_vendor_return_inbox/completed_chain_of_custody.csv", - "pending_rows": 0, - "row_count": 0, - "schema_ok": false - }, - "checklist_rows": [ - { - "acceptance": "CSV has template schema, all 8 expected run_ids, real required values, and no placeholder markers.", - "exists": "false", - "expected_path": "data/zrc_nd_phase_a_vendor_return_inbox/completed_phase_a_measurements.csv", - "item_id": "completed_phase_a_measurements", - "required": "true", - "status": "missing_or_incomplete" - }, - { - "acceptance": "Optional compact sheet has apply=yes rows, real source_file references, and is ready for source-value expansion.", - "exists": "true", - "expected_path": "data/zrc_nd_phase_a_vendor_return_inbox/completed_bundle_entry_sheet.csv", - "item_id": "completed_bundle_entry_sheet", - "required": "false", - "status": "missing_or_incomplete" - }, - { - "acceptance": "CSV uses the chain-of-custody schema with transfer fields filled for returned samples.", - "exists": "false", - "expected_path": "data/zrc_nd_phase_a_vendor_return_inbox/completed_chain_of_custody.csv", - "item_id": "completed_chain_of_custody", - "required": "true", - "status": "missing_or_incomplete" - }, - { - "acceptance": "Directory contains original instrument exports/reports referenced by instrument_export_returned.", - "exists": "true", - "expected_path": "data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports", - "item_id": "instrument_exports", - "required": "true", - "status": "missing_or_unresolved" - }, - { - "acceptance": "Markdown or text log states no deviations or lists every protocol/sample/instrument deviation.", - "exists": "false", - "expected_path": "data/zrc_nd_phase_a_vendor_return_inbox/deviation_log.md", - "item_id": "deviation_log", - "required": "true", - "status": "missing" - } - ], - "deviation_log": { - "exists": false, - "path": "data/zrc_nd_phase_a_vendor_return_inbox/deviation_log.md" - }, - "instrument_export_dir": "data/zrc_nd_phase_a_vendor_return_inbox/external_lab_exports", - "instrument_export_file_count": 0, - "non_evidence_boundary": "This intake report only checks whether returned Phase A files are ready for merge/QC. Returned files are not material evidence until real rows pass merge, sentinel interpretation, readiness audit, and final claim audit.", - "phase_a_measurements": { - "exists": false, - "expected_row_count": 8, - "missing_fields": [ - "run_id", - "date", - "operator_or_agent", - "phase", - "timepoint", - "replicate", - "article_id", - "variant_id", - "control_article_id", - "membrane_lot", - "mwco_kda", - "membrane_area_cm2", - "surface_modification", - "prefilter_lot", - "housing_material", - "medium_name", - "medium_lot", - "initial_volume_ml", - "flow_rate_ul_min", - "exposure_time_h", - "temperature_c", - "pH_initial", - "pH_final", - "osmolality_initial_mOsm_kg", - "osmolality_final_mOsm_kg", - "conductivity_initial_mS_cm", - "conductivity_final_mS_cm", - "lactate_initial_mM", - "lactate_final_mM", - "ammonia_initial_uM", - "ammonia_final_uM", - "bdnf_initial_pg_ml", - "bdnf_final_pg_ml", - "ngf_initial_pg_ml", - "ngf_final_pg_ml", - "albumin_initial", - "albumin_final", - "transferrin_initial", - "transferrin_final", - "total_protein_initial", - "total_protein_final", - "flow_resistance_initial", - "flow_resistance_final", - "bubble_events", - "visible_precipitate", - "gate_results", - "source_file", - "notes" - ], - "missing_run_ids": [ - "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h", - "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h", - "ZRCND-A-no_module_static_control-R1-0h", - "ZRCND-A-no_module_static_control-R1-24h" - ], - "path": "data/zrc_nd_phase_a_vendor_return_inbox/completed_phase_a_measurements.csv", - "row_count": 0, - "row_issue_count": 0, - "row_issue_examples": [], - "schema_ok": false, - "unknown_run_ids": [], - "value_complete": false - }, - "post_return_commands": [ - "python3 scripts/render_zrc_nd_phase_a_vendor_bundle_entry_sheet.py", - "python3 scripts/apply_zrc_nd_phase_a_vendor_bundle_entry_sheet.py", - "python3 scripts/import_limina_wide_source_values.py --profile zrc_phase_a", - "python3 scripts/merge_zrc_nd_measurements.py --measurements data/zrc_nd_phase_a_vendor_return_inbox/completed_phase_a_measurements.csv --out data/zrc_nd_validation_runs_active.csv", - "python3 scripts/interpret_zrc_nd_sentinel.py --runs data/zrc_nd_validation_runs_active.csv", - "python3 scripts/evaluate_zrc_nd_validation_runs.py --runs data/zrc_nd_validation_runs_active.csv", - "python3 scripts/suggest_zrc_nd_next_measurements.py --runs data/zrc_nd_validation_runs_active.csv", - "python3 scripts/run_limina_iteration.py" - ], - "purpose": "Check whether real vendor/cooperator ZRC-ND Phase A return files are ready for merge and QC.", - "readme": "data/zrc_nd_phase_a_vendor_return_inbox/README.md", - "return_dir": "data/zrc_nd_phase_a_vendor_return_inbox", - "status": "awaiting_vendor_return_files" -} \ No newline at end of file diff --git a/data/zrc_nd_planned_runs.csv b/data/zrc_nd_planned_runs.csv deleted file mode 100644 index b4c94da..0000000 --- a/data/zrc_nd_planned_runs.csv +++ /dev/null @@ -1,133 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,membrane_lot,mwco_kda,membrane_area_cm2,surface_modification,prefilter_lot,housing_material,medium_name,medium_lot,initial_volume_ml,flow_rate_ul_min,exposure_time_h,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,lactate_initial_mM,lactate_final_mM,ammonia_initial_uM,ammonia_final_uM,bdnf_initial_pg_ml,bdnf_final_pg_ml,ngf_initial_pg_ml,ngf_final_pg_ml,albumin_initial,albumin_final,transferrin_initial,transferrin_final,total_protein_initial,total_protein_final,flow_resistance_initial,flow_resistance_final,bubble_events,visible_precipitate,gate_results,source_file,notes -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,,limina,A,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-1h,,limina,A,1 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-4h,,limina,A,4 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,,limina,A,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R2-0h,,limina,A,0 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R2-1h,,limina,A,1 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R2-4h,,limina,A,4 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R2-24h,,limina,A,24 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R3-0h,,limina,A,0 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R3-1h,,limina,A,1 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R3-4h,,limina,A,4 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-lead_zrc_nd_3p5m_guard-R3-24h,,limina,A,24 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-baseline_rc_3p5m_guard-R1-0h,,limina,A,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-baseline_rc_3p5m_guard-R1-1h,,limina,A,1 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-baseline_rc_3p5m_guard-R1-4h,,limina,A,4 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-baseline_rc_3p5m_guard-R1-24h,,limina,A,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-baseline_rc_3p5m_guard-R2-0h,,limina,A,0 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-baseline_rc_3p5m_guard-R2-1h,,limina,A,1 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-baseline_rc_3p5m_guard-R2-4h,,limina,A,4 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-baseline_rc_3p5m_guard-R2-24h,,limina,A,24 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-baseline_rc_3p5m_guard-R3-0h,,limina,A,0 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-baseline_rc_3p5m_guard-R3-1h,,limina,A,1 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-baseline_rc_3p5m_guard-R3-4h,,limina,A,4 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-baseline_rc_3p5m_guard-R3-24h,,limina,A,24 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,,limina,A,0 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R1-1h,,limina,A,1 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R1-4h,,limina,A,4 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,,limina,A,24 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R2-0h,,limina,A,0 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R2-1h,,limina,A,1 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R2-4h,,limina,A,4 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R2-24h,,limina,A,24 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R3-0h,,limina,A,0 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R3-1h,,limina,A,1 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R3-4h,,limina,A,4 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-challenge_zrc_nd_10m_guard-R3-24h,,limina,A,24 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R1-0h,,limina,A,0 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R1-1h,,limina,A,1 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R1-4h,,limina,A,4 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R1-24h,,limina,A,24 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R2-0h,,limina,A,0 h,2,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R2-1h,,limina,A,1 h,2,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R2-4h,,limina,A,4 h,2,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R2-24h,,limina,A,24 h,2,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R3-0h,,limina,A,0 h,3,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R3-1h,,limina,A,1 h,3,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R3-4h,,limina,A,4 h,3,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-A-no_module_static_control-R3-24h,,limina,A,24 h,3,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-lead_zrc_nd_3p5m_guard-R1-0h,,limina,B,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-lead_zrc_nd_3p5m_guard-R1-1h,,limina,B,1 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-lead_zrc_nd_3p5m_guard-R1-4h,,limina,B,4 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-lead_zrc_nd_3p5m_guard-R1-24h,,limina,B,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-lead_zrc_nd_3p5m_guard-R2-0h,,limina,B,0 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-lead_zrc_nd_3p5m_guard-R2-1h,,limina,B,1 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-lead_zrc_nd_3p5m_guard-R2-4h,,limina,B,4 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-lead_zrc_nd_3p5m_guard-R2-24h,,limina,B,24 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-lead_zrc_nd_3p5m_guard-R3-0h,,limina,B,0 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-lead_zrc_nd_3p5m_guard-R3-1h,,limina,B,1 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-lead_zrc_nd_3p5m_guard-R3-4h,,limina,B,4 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-lead_zrc_nd_3p5m_guard-R3-24h,,limina,B,24 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-baseline_rc_3p5m_guard-R1-0h,,limina,B,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-baseline_rc_3p5m_guard-R1-1h,,limina,B,1 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-baseline_rc_3p5m_guard-R1-4h,,limina,B,4 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-baseline_rc_3p5m_guard-R1-24h,,limina,B,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-baseline_rc_3p5m_guard-R2-0h,,limina,B,0 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-baseline_rc_3p5m_guard-R2-1h,,limina,B,1 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-baseline_rc_3p5m_guard-R2-4h,,limina,B,4 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-baseline_rc_3p5m_guard-R2-24h,,limina,B,24 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-baseline_rc_3p5m_guard-R3-0h,,limina,B,0 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-baseline_rc_3p5m_guard-R3-1h,,limina,B,1 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-baseline_rc_3p5m_guard-R3-4h,,limina,B,4 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-baseline_rc_3p5m_guard-R3-24h,,limina,B,24 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-challenge_zrc_nd_10m_guard-R1-0h,,limina,B,0 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-challenge_zrc_nd_10m_guard-R1-1h,,limina,B,1 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-challenge_zrc_nd_10m_guard-R1-4h,,limina,B,4 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-challenge_zrc_nd_10m_guard-R1-24h,,limina,B,24 h,1,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-challenge_zrc_nd_10m_guard-R2-0h,,limina,B,0 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-challenge_zrc_nd_10m_guard-R2-1h,,limina,B,1 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-challenge_zrc_nd_10m_guard-R2-4h,,limina,B,4 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-challenge_zrc_nd_10m_guard-R2-24h,,limina,B,24 h,2,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-challenge_zrc_nd_10m_guard-R3-0h,,limina,B,0 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-challenge_zrc_nd_10m_guard-R3-1h,,limina,B,1 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-challenge_zrc_nd_10m_guard-R3-4h,,limina,B,4 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-challenge_zrc_nd_10m_guard-R3-24h,,limina,B,24 h,3,challenge_zrc_nd_10m_guard,zrc_nd_10k_mpc_guard,no_module_static_control,,10,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-no_module_static_control-R1-0h,,limina,B,0 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-no_module_static_control-R1-1h,,limina,B,1 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-no_module_static_control-R1-4h,,limina,B,4 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-no_module_static_control-R1-24h,,limina,B,24 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-no_module_static_control-R2-0h,,limina,B,0 h,2,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-no_module_static_control-R2-1h,,limina,B,1 h,2,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-no_module_static_control-R2-4h,,limina,B,4 h,2,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-no_module_static_control-R2-24h,,limina,B,24 h,2,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-no_module_static_control-R3-0h,,limina,B,0 h,3,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-no_module_static_control-R3-1h,,limina,B,1 h,3,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-no_module_static_control-R3-4h,,limina,B,4 h,3,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-B-no_module_static_control-R3-24h,,limina,B,24 h,3,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-lead_zrc_nd_3p5m_guard-R1-0h,,limina,C,0 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-lead_zrc_nd_3p5m_guard-R1-4h,,limina,C,4 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-lead_zrc_nd_3p5m_guard-R1-24h,,limina,C,24 h,1,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-lead_zrc_nd_3p5m_guard-R2-0h,,limina,C,0 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-lead_zrc_nd_3p5m_guard-R2-4h,,limina,C,4 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-lead_zrc_nd_3p5m_guard-R2-24h,,limina,C,24 h,2,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-lead_zrc_nd_3p5m_guard-R3-0h,,limina,C,0 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-lead_zrc_nd_3p5m_guard-R3-4h,,limina,C,4 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-lead_zrc_nd_3p5m_guard-R3-24h,,limina,C,24 h,3,lead_zrc_nd_3p5m_guard,zrc_nd_3p5k_mpc_guard,no_module_static_control,,3.5,,pda_polympc_surface_only,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-baseline_rc_3p5m_guard-R1-0h,,limina,C,0 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-baseline_rc_3p5m_guard-R1-4h,,limina,C,4 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-baseline_rc_3p5m_guard-R1-24h,,limina,C,24 h,1,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-baseline_rc_3p5m_guard-R2-0h,,limina,C,0 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-baseline_rc_3p5m_guard-R2-4h,,limina,C,4 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-baseline_rc_3p5m_guard-R2-24h,,limina,C,24 h,2,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-baseline_rc_3p5m_guard-R3-0h,,limina,C,0 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-baseline_rc_3p5m_guard-R3-4h,,limina,C,4 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-baseline_rc_3p5m_guard-R3-24h,,limina,C,24 h,3,baseline_rc_3p5m_guard,zrc_nd_3p5k_unmodified_guard,no_module_static_control,,3.5,,none,,coc_cop,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-no_module_static_control-R1-0h,,limina,C,0 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-no_module_static_control-R1-4h,,limina,C,4 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-no_module_static_control-R1-24h,,limina,C,24 h,1,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-no_module_static_control-R2-0h,,limina,C,0 h,2,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-no_module_static_control-R2-4h,,limina,C,4 h,2,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-no_module_static_control-R2-24h,,limina,C,24 h,2,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-no_module_static_control-R3-0h,,limina,C,0 h,3,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-no_module_static_control-R3-4h,,limina,C,4 h,3,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-no_module_static_control-R3-24h,,limina,C,24 h,3,no_module_static_control,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-bulk_exchange_reference-R1-0h,,limina,C,0 h,1,bulk_exchange_reference,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-bulk_exchange_reference-R1-4h,,limina,C,4 h,1,bulk_exchange_reference,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-bulk_exchange_reference-R1-24h,,limina,C,24 h,1,bulk_exchange_reference,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-bulk_exchange_reference-R2-0h,,limina,C,0 h,2,bulk_exchange_reference,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-bulk_exchange_reference-R2-4h,,limina,C,4 h,2,bulk_exchange_reference,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-bulk_exchange_reference-R2-24h,,limina,C,24 h,2,bulk_exchange_reference,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-bulk_exchange_reference-R3-0h,,limina,C,0 h,3,bulk_exchange_reference,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-bulk_exchange_reference-R3-4h,,limina,C,4 h,3,bulk_exchange_reference,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZRCND-C-bulk_exchange_reference-R3-24h,,limina,C,24 h,3,bulk_exchange_reference,,no_module_static_control,,,,none,,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/data/zrc_nd_readiness_audit.json b/data/zrc_nd_readiness_audit.json deleted file mode 100644 index bac20bd..0000000 --- a/data/zrc_nd_readiness_audit.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "biological_validated": false, - "checks": [ - { - "detail": "Technology record exists.", - "id": "technology_record_present", - "status": "pass" - }, - { - "detail": "Expected `lead_passes_non_cell_gates`, observed `no_data`.", - "id": "validation_result_status", - "status": "fail" - }, - { - "detail": "Expected `pass`, observed `not_evaluable`.", - "id": "aggregate_lead_superiority", - "status": "fail" - }, - { - "detail": "Required ['A', 'B', 'C'], observed [].", - "id": "phase_coverage", - "status": "fail" - }, - { - "detail": "Required >= 3 passed lead replicates per phase; observed {}.", - "id": "lead_replicate_coverage", - "status": "fail" - }, - { - "detail": "Failed lead rows: 0.", - "id": "failed_lead_rows", - "status": "pass" - }, - { - "detail": "Expected `bio_followup_passes_gates`, observed `no_data`.", - "id": "bio_result_status", - "status": "fail" - }, - { - "detail": "Expected `pass`, observed `not_evaluable`.", - "id": "aggregate_bio_superiority", - "status": "fail" - }, - { - "detail": "Required ['D1', 'D2', 'D3'], observed [].", - "id": "bio_phase_coverage", - "status": "fail" - }, - { - "detail": "Required >= 3 passed lead replicates per phase; observed {}.", - "id": "bio_lead_replicate_coverage", - "status": "fail" - }, - { - "detail": "Failed biological lead rows: 0.", - "id": "failed_bio_lead_rows", - "status": "pass" - } - ], - "lead_variant_id": "zrc_nd_3p5k_mpc_guard", - "missing_evidence": [ - "Measured Phase A/B/C rows that pass non-cell validation gates.", - "conditioned-medium viability or toxicity screen", - "neurite/morphology or equivalent neural-health readout", - "MEA/network activity or equivalent functional stability readout if available", - "no unresolved material blank or extractables issue" - ], - "non_cell_validated": false, - "readiness": "not_suitable_yet_no_measured_data", - "suitable": false, - "technology_id": "limina_zrc_nd_v0_1", - "technology_status": "nominated" -} \ No newline at end of file diff --git a/data/zrc_nd_run_completeness.json b/data/zrc_nd_run_completeness.json deleted file mode 100644 index 9a93021..0000000 --- a/data/zrc_nd_run_completeness.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "duplicate_run_ids": [], - "gate_evaluable_measured_rows": 0, - "gate_evaluable_planned_rows": 66, - "measured_known_rows": 0, - "measured_rows": 0, - "missing_controls": [], - "missing_run_ids_sample": [ - "ZRCND-A-baseline_rc_3p5m_guard-R1-0h", - "ZRCND-A-baseline_rc_3p5m_guard-R1-1h", - "ZRCND-A-baseline_rc_3p5m_guard-R1-24h", - "ZRCND-A-baseline_rc_3p5m_guard-R1-4h", - "ZRCND-A-baseline_rc_3p5m_guard-R2-0h", - "ZRCND-A-baseline_rc_3p5m_guard-R2-1h", - "ZRCND-A-baseline_rc_3p5m_guard-R2-24h", - "ZRCND-A-baseline_rc_3p5m_guard-R2-4h", - "ZRCND-A-baseline_rc_3p5m_guard-R3-0h", - "ZRCND-A-baseline_rc_3p5m_guard-R3-1h", - "ZRCND-A-baseline_rc_3p5m_guard-R3-24h", - "ZRCND-A-baseline_rc_3p5m_guard-R3-4h", - "ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h", - "ZRCND-A-challenge_zrc_nd_10m_guard-R1-1h", - "ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h", - "ZRCND-A-challenge_zrc_nd_10m_guard-R1-4h", - "ZRCND-A-challenge_zrc_nd_10m_guard-R2-0h", - "ZRCND-A-challenge_zrc_nd_10m_guard-R2-1h", - "ZRCND-A-challenge_zrc_nd_10m_guard-R2-24h", - "ZRCND-A-challenge_zrc_nd_10m_guard-R2-4h", - "ZRCND-A-challenge_zrc_nd_10m_guard-R3-0h", - "ZRCND-A-challenge_zrc_nd_10m_guard-R3-1h", - "ZRCND-A-challenge_zrc_nd_10m_guard-R3-24h", - "ZRCND-A-challenge_zrc_nd_10m_guard-R3-4h", - "ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h" - ], - "missing_run_rows": 132, - "planned_rows": 132, - "row_issues": [], - "status": "no_measured_rows", - "unknown_run_ids": [] -} \ No newline at end of file diff --git a/data/zrc_nd_sample_manifest.csv b/data/zrc_nd_sample_manifest.csv deleted file mode 100644 index cb692fa..0000000 --- a/data/zrc_nd_sample_manifest.csv +++ /dev/null @@ -1,265 +0,0 @@ -sample_id,run_id,sample_event,phase,timepoint,replicate,article_id,readout_groups,storage_or_handoff -ZRCND-A-baseline_rc_3p5m_guard-R1-0h-initial,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,initial,A,0 h,1,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R1-0h-final,ZRCND-A-baseline_rc_3p5m_guard-R1-0h,final,A,0 h,1,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R1-1h-initial,ZRCND-A-baseline_rc_3p5m_guard-R1-1h,initial,A,1 h,1,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R1-1h-final,ZRCND-A-baseline_rc_3p5m_guard-R1-1h,final,A,1 h,1,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R1-24h-initial,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,initial,A,24 h,1,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R1-24h-final,ZRCND-A-baseline_rc_3p5m_guard-R1-24h,final,A,24 h,1,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R1-4h-initial,ZRCND-A-baseline_rc_3p5m_guard-R1-4h,initial,A,4 h,1,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R1-4h-final,ZRCND-A-baseline_rc_3p5m_guard-R1-4h,final,A,4 h,1,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,initial,A,0 h,1,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R1-0h,final,A,0 h,1,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R1-1h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R1-1h,initial,A,1 h,1,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R1-1h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R1-1h,final,A,1 h,1,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,initial,A,24 h,1,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R1-24h,final,A,24 h,1,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R1-4h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R1-4h,initial,A,4 h,1,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R1-4h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R1-4h,final,A,4 h,1,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,initial,A,0 h,1,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-0h,final,A,0 h,1,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-1h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-1h,initial,A,1 h,1,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-1h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-1h,final,A,1 h,1,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,initial,A,24 h,1,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-24h,final,A,24 h,1,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-4h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-4h,initial,A,4 h,1,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R1-4h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R1-4h,final,A,4 h,1,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R1-0h-initial,ZRCND-A-no_module_static_control-R1-0h,initial,A,0 h,1,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R1-0h-final,ZRCND-A-no_module_static_control-R1-0h,final,A,0 h,1,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R1-1h-initial,ZRCND-A-no_module_static_control-R1-1h,initial,A,1 h,1,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R1-1h-final,ZRCND-A-no_module_static_control-R1-1h,final,A,1 h,1,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R1-24h-initial,ZRCND-A-no_module_static_control-R1-24h,initial,A,24 h,1,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R1-24h-final,ZRCND-A-no_module_static_control-R1-24h,final,A,24 h,1,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R1-4h-initial,ZRCND-A-no_module_static_control-R1-4h,initial,A,4 h,1,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R1-4h-final,ZRCND-A-no_module_static_control-R1-4h,final,A,4 h,1,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R2-0h-initial,ZRCND-A-baseline_rc_3p5m_guard-R2-0h,initial,A,0 h,2,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R2-0h-final,ZRCND-A-baseline_rc_3p5m_guard-R2-0h,final,A,0 h,2,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R2-1h-initial,ZRCND-A-baseline_rc_3p5m_guard-R2-1h,initial,A,1 h,2,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R2-1h-final,ZRCND-A-baseline_rc_3p5m_guard-R2-1h,final,A,1 h,2,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R2-24h-initial,ZRCND-A-baseline_rc_3p5m_guard-R2-24h,initial,A,24 h,2,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R2-24h-final,ZRCND-A-baseline_rc_3p5m_guard-R2-24h,final,A,24 h,2,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R2-4h-initial,ZRCND-A-baseline_rc_3p5m_guard-R2-4h,initial,A,4 h,2,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R2-4h-final,ZRCND-A-baseline_rc_3p5m_guard-R2-4h,final,A,4 h,2,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R2-0h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R2-0h,initial,A,0 h,2,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R2-0h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R2-0h,final,A,0 h,2,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R2-1h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R2-1h,initial,A,1 h,2,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R2-1h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R2-1h,final,A,1 h,2,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R2-24h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R2-24h,initial,A,24 h,2,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R2-24h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R2-24h,final,A,24 h,2,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R2-4h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R2-4h,initial,A,4 h,2,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R2-4h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R2-4h,final,A,4 h,2,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R2-0h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R2-0h,initial,A,0 h,2,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R2-0h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R2-0h,final,A,0 h,2,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R2-1h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R2-1h,initial,A,1 h,2,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R2-1h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R2-1h,final,A,1 h,2,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R2-24h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R2-24h,initial,A,24 h,2,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R2-24h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R2-24h,final,A,24 h,2,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R2-4h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R2-4h,initial,A,4 h,2,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R2-4h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R2-4h,final,A,4 h,2,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R2-0h-initial,ZRCND-A-no_module_static_control-R2-0h,initial,A,0 h,2,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R2-0h-final,ZRCND-A-no_module_static_control-R2-0h,final,A,0 h,2,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R2-1h-initial,ZRCND-A-no_module_static_control-R2-1h,initial,A,1 h,2,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R2-1h-final,ZRCND-A-no_module_static_control-R2-1h,final,A,1 h,2,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R2-24h-initial,ZRCND-A-no_module_static_control-R2-24h,initial,A,24 h,2,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R2-24h-final,ZRCND-A-no_module_static_control-R2-24h,final,A,24 h,2,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R2-4h-initial,ZRCND-A-no_module_static_control-R2-4h,initial,A,4 h,2,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R2-4h-final,ZRCND-A-no_module_static_control-R2-4h,final,A,4 h,2,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R3-0h-initial,ZRCND-A-baseline_rc_3p5m_guard-R3-0h,initial,A,0 h,3,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R3-0h-final,ZRCND-A-baseline_rc_3p5m_guard-R3-0h,final,A,0 h,3,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R3-1h-initial,ZRCND-A-baseline_rc_3p5m_guard-R3-1h,initial,A,1 h,3,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R3-1h-final,ZRCND-A-baseline_rc_3p5m_guard-R3-1h,final,A,1 h,3,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R3-24h-initial,ZRCND-A-baseline_rc_3p5m_guard-R3-24h,initial,A,24 h,3,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R3-24h-final,ZRCND-A-baseline_rc_3p5m_guard-R3-24h,final,A,24 h,3,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R3-4h-initial,ZRCND-A-baseline_rc_3p5m_guard-R3-4h,initial,A,4 h,3,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-baseline_rc_3p5m_guard-R3-4h-final,ZRCND-A-baseline_rc_3p5m_guard-R3-4h,final,A,4 h,3,baseline_rc_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R3-0h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R3-0h,initial,A,0 h,3,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R3-0h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R3-0h,final,A,0 h,3,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R3-1h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R3-1h,initial,A,1 h,3,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R3-1h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R3-1h,final,A,1 h,3,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R3-24h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R3-24h,initial,A,24 h,3,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R3-24h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R3-24h,final,A,24 h,3,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R3-4h-initial,ZRCND-A-challenge_zrc_nd_10m_guard-R3-4h,initial,A,4 h,3,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-challenge_zrc_nd_10m_guard-R3-4h-final,ZRCND-A-challenge_zrc_nd_10m_guard-R3-4h,final,A,4 h,3,challenge_zrc_nd_10m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R3-0h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R3-0h,initial,A,0 h,3,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R3-0h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R3-0h,final,A,0 h,3,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R3-1h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R3-1h,initial,A,1 h,3,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R3-1h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R3-1h,final,A,1 h,3,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R3-24h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R3-24h,initial,A,24 h,3,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R3-24h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R3-24h,final,A,24 h,3,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R3-4h-initial,ZRCND-A-lead_zrc_nd_3p5m_guard-R3-4h,initial,A,4 h,3,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-lead_zrc_nd_3p5m_guard-R3-4h-final,ZRCND-A-lead_zrc_nd_3p5m_guard-R3-4h,final,A,4 h,3,lead_zrc_nd_3p5m_guard,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R3-0h-initial,ZRCND-A-no_module_static_control-R3-0h,initial,A,0 h,3,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R3-0h-final,ZRCND-A-no_module_static_control-R3-0h,final,A,0 h,3,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R3-1h-initial,ZRCND-A-no_module_static_control-R3-1h,initial,A,1 h,3,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R3-1h-final,ZRCND-A-no_module_static_control-R3-1h,final,A,1 h,3,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R3-24h-initial,ZRCND-A-no_module_static_control-R3-24h,initial,A,24 h,3,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R3-24h-final,ZRCND-A-no_module_static_control-R3-24h,final,A,24 h,3,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R3-4h-initial,ZRCND-A-no_module_static_control-R3-4h,initial,A,4 h,3,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-A-no_module_static_control-R3-4h-final,ZRCND-A-no_module_static_control-R3-4h,final,A,4 h,3,no_module_static_control,medium_integrity,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R1-0h-initial,ZRCND-B-baseline_rc_3p5m_guard-R1-0h,initial,B,0 h,1,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R1-0h-final,ZRCND-B-baseline_rc_3p5m_guard-R1-0h,final,B,0 h,1,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R1-1h-initial,ZRCND-B-baseline_rc_3p5m_guard-R1-1h,initial,B,1 h,1,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R1-1h-final,ZRCND-B-baseline_rc_3p5m_guard-R1-1h,final,B,1 h,1,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R1-24h-initial,ZRCND-B-baseline_rc_3p5m_guard-R1-24h,initial,B,24 h,1,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R1-24h-final,ZRCND-B-baseline_rc_3p5m_guard-R1-24h,final,B,24 h,1,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R1-4h-initial,ZRCND-B-baseline_rc_3p5m_guard-R1-4h,initial,B,4 h,1,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R1-4h-final,ZRCND-B-baseline_rc_3p5m_guard-R1-4h,final,B,4 h,1,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R1-0h-initial,ZRCND-B-challenge_zrc_nd_10m_guard-R1-0h,initial,B,0 h,1,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R1-0h-final,ZRCND-B-challenge_zrc_nd_10m_guard-R1-0h,final,B,0 h,1,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R1-1h-initial,ZRCND-B-challenge_zrc_nd_10m_guard-R1-1h,initial,B,1 h,1,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R1-1h-final,ZRCND-B-challenge_zrc_nd_10m_guard-R1-1h,final,B,1 h,1,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R1-24h-initial,ZRCND-B-challenge_zrc_nd_10m_guard-R1-24h,initial,B,24 h,1,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R1-24h-final,ZRCND-B-challenge_zrc_nd_10m_guard-R1-24h,final,B,24 h,1,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R1-4h-initial,ZRCND-B-challenge_zrc_nd_10m_guard-R1-4h,initial,B,4 h,1,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R1-4h-final,ZRCND-B-challenge_zrc_nd_10m_guard-R1-4h,final,B,4 h,1,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R1-0h-initial,ZRCND-B-lead_zrc_nd_3p5m_guard-R1-0h,initial,B,0 h,1,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R1-0h-final,ZRCND-B-lead_zrc_nd_3p5m_guard-R1-0h,final,B,0 h,1,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R1-1h-initial,ZRCND-B-lead_zrc_nd_3p5m_guard-R1-1h,initial,B,1 h,1,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R1-1h-final,ZRCND-B-lead_zrc_nd_3p5m_guard-R1-1h,final,B,1 h,1,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R1-24h-initial,ZRCND-B-lead_zrc_nd_3p5m_guard-R1-24h,initial,B,24 h,1,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R1-24h-final,ZRCND-B-lead_zrc_nd_3p5m_guard-R1-24h,final,B,24 h,1,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R1-4h-initial,ZRCND-B-lead_zrc_nd_3p5m_guard-R1-4h,initial,B,4 h,1,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R1-4h-final,ZRCND-B-lead_zrc_nd_3p5m_guard-R1-4h,final,B,4 h,1,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R1-0h-initial,ZRCND-B-no_module_static_control-R1-0h,initial,B,0 h,1,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R1-0h-final,ZRCND-B-no_module_static_control-R1-0h,final,B,0 h,1,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R1-1h-initial,ZRCND-B-no_module_static_control-R1-1h,initial,B,1 h,1,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R1-1h-final,ZRCND-B-no_module_static_control-R1-1h,final,B,1 h,1,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R1-24h-initial,ZRCND-B-no_module_static_control-R1-24h,initial,B,24 h,1,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R1-24h-final,ZRCND-B-no_module_static_control-R1-24h,final,B,24 h,1,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R1-4h-initial,ZRCND-B-no_module_static_control-R1-4h,initial,B,4 h,1,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R1-4h-final,ZRCND-B-no_module_static_control-R1-4h,final,B,4 h,1,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R2-0h-initial,ZRCND-B-baseline_rc_3p5m_guard-R2-0h,initial,B,0 h,2,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R2-0h-final,ZRCND-B-baseline_rc_3p5m_guard-R2-0h,final,B,0 h,2,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R2-1h-initial,ZRCND-B-baseline_rc_3p5m_guard-R2-1h,initial,B,1 h,2,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R2-1h-final,ZRCND-B-baseline_rc_3p5m_guard-R2-1h,final,B,1 h,2,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R2-24h-initial,ZRCND-B-baseline_rc_3p5m_guard-R2-24h,initial,B,24 h,2,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R2-24h-final,ZRCND-B-baseline_rc_3p5m_guard-R2-24h,final,B,24 h,2,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R2-4h-initial,ZRCND-B-baseline_rc_3p5m_guard-R2-4h,initial,B,4 h,2,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R2-4h-final,ZRCND-B-baseline_rc_3p5m_guard-R2-4h,final,B,4 h,2,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R2-0h-initial,ZRCND-B-challenge_zrc_nd_10m_guard-R2-0h,initial,B,0 h,2,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R2-0h-final,ZRCND-B-challenge_zrc_nd_10m_guard-R2-0h,final,B,0 h,2,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R2-1h-initial,ZRCND-B-challenge_zrc_nd_10m_guard-R2-1h,initial,B,1 h,2,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R2-1h-final,ZRCND-B-challenge_zrc_nd_10m_guard-R2-1h,final,B,1 h,2,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R2-24h-initial,ZRCND-B-challenge_zrc_nd_10m_guard-R2-24h,initial,B,24 h,2,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R2-24h-final,ZRCND-B-challenge_zrc_nd_10m_guard-R2-24h,final,B,24 h,2,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R2-4h-initial,ZRCND-B-challenge_zrc_nd_10m_guard-R2-4h,initial,B,4 h,2,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R2-4h-final,ZRCND-B-challenge_zrc_nd_10m_guard-R2-4h,final,B,4 h,2,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R2-0h-initial,ZRCND-B-lead_zrc_nd_3p5m_guard-R2-0h,initial,B,0 h,2,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R2-0h-final,ZRCND-B-lead_zrc_nd_3p5m_guard-R2-0h,final,B,0 h,2,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R2-1h-initial,ZRCND-B-lead_zrc_nd_3p5m_guard-R2-1h,initial,B,1 h,2,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R2-1h-final,ZRCND-B-lead_zrc_nd_3p5m_guard-R2-1h,final,B,1 h,2,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R2-24h-initial,ZRCND-B-lead_zrc_nd_3p5m_guard-R2-24h,initial,B,24 h,2,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R2-24h-final,ZRCND-B-lead_zrc_nd_3p5m_guard-R2-24h,final,B,24 h,2,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R2-4h-initial,ZRCND-B-lead_zrc_nd_3p5m_guard-R2-4h,initial,B,4 h,2,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R2-4h-final,ZRCND-B-lead_zrc_nd_3p5m_guard-R2-4h,final,B,4 h,2,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R2-0h-initial,ZRCND-B-no_module_static_control-R2-0h,initial,B,0 h,2,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R2-0h-final,ZRCND-B-no_module_static_control-R2-0h,final,B,0 h,2,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R2-1h-initial,ZRCND-B-no_module_static_control-R2-1h,initial,B,1 h,2,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R2-1h-final,ZRCND-B-no_module_static_control-R2-1h,final,B,1 h,2,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R2-24h-initial,ZRCND-B-no_module_static_control-R2-24h,initial,B,24 h,2,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R2-24h-final,ZRCND-B-no_module_static_control-R2-24h,final,B,24 h,2,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R2-4h-initial,ZRCND-B-no_module_static_control-R2-4h,initial,B,4 h,2,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R2-4h-final,ZRCND-B-no_module_static_control-R2-4h,final,B,4 h,2,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R3-0h-initial,ZRCND-B-baseline_rc_3p5m_guard-R3-0h,initial,B,0 h,3,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R3-0h-final,ZRCND-B-baseline_rc_3p5m_guard-R3-0h,final,B,0 h,3,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R3-1h-initial,ZRCND-B-baseline_rc_3p5m_guard-R3-1h,initial,B,1 h,3,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R3-1h-final,ZRCND-B-baseline_rc_3p5m_guard-R3-1h,final,B,1 h,3,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R3-24h-initial,ZRCND-B-baseline_rc_3p5m_guard-R3-24h,initial,B,24 h,3,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R3-24h-final,ZRCND-B-baseline_rc_3p5m_guard-R3-24h,final,B,24 h,3,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R3-4h-initial,ZRCND-B-baseline_rc_3p5m_guard-R3-4h,initial,B,4 h,3,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-baseline_rc_3p5m_guard-R3-4h-final,ZRCND-B-baseline_rc_3p5m_guard-R3-4h,final,B,4 h,3,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R3-0h-initial,ZRCND-B-challenge_zrc_nd_10m_guard-R3-0h,initial,B,0 h,3,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R3-0h-final,ZRCND-B-challenge_zrc_nd_10m_guard-R3-0h,final,B,0 h,3,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R3-1h-initial,ZRCND-B-challenge_zrc_nd_10m_guard-R3-1h,initial,B,1 h,3,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R3-1h-final,ZRCND-B-challenge_zrc_nd_10m_guard-R3-1h,final,B,1 h,3,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R3-24h-initial,ZRCND-B-challenge_zrc_nd_10m_guard-R3-24h,initial,B,24 h,3,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R3-24h-final,ZRCND-B-challenge_zrc_nd_10m_guard-R3-24h,final,B,24 h,3,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R3-4h-initial,ZRCND-B-challenge_zrc_nd_10m_guard-R3-4h,initial,B,4 h,3,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-challenge_zrc_nd_10m_guard-R3-4h-final,ZRCND-B-challenge_zrc_nd_10m_guard-R3-4h,final,B,4 h,3,challenge_zrc_nd_10m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R3-0h-initial,ZRCND-B-lead_zrc_nd_3p5m_guard-R3-0h,initial,B,0 h,3,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R3-0h-final,ZRCND-B-lead_zrc_nd_3p5m_guard-R3-0h,final,B,0 h,3,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R3-1h-initial,ZRCND-B-lead_zrc_nd_3p5m_guard-R3-1h,initial,B,1 h,3,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R3-1h-final,ZRCND-B-lead_zrc_nd_3p5m_guard-R3-1h,final,B,1 h,3,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R3-24h-initial,ZRCND-B-lead_zrc_nd_3p5m_guard-R3-24h,initial,B,24 h,3,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R3-24h-final,ZRCND-B-lead_zrc_nd_3p5m_guard-R3-24h,final,B,24 h,3,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R3-4h-initial,ZRCND-B-lead_zrc_nd_3p5m_guard-R3-4h,initial,B,4 h,3,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-lead_zrc_nd_3p5m_guard-R3-4h-final,ZRCND-B-lead_zrc_nd_3p5m_guard-R3-4h,final,B,4 h,3,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R3-0h-initial,ZRCND-B-no_module_static_control-R3-0h,initial,B,0 h,3,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R3-0h-final,ZRCND-B-no_module_static_control-R3-0h,final,B,0 h,3,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R3-1h-initial,ZRCND-B-no_module_static_control-R3-1h,initial,B,1 h,3,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R3-1h-final,ZRCND-B-no_module_static_control-R3-1h,final,B,1 h,3,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R3-24h-initial,ZRCND-B-no_module_static_control-R3-24h,initial,B,24 h,3,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R3-24h-final,ZRCND-B-no_module_static_control-R3-24h,final,B,24 h,3,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R3-4h-initial,ZRCND-B-no_module_static_control-R3-4h,initial,B,4 h,3,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-B-no_module_static_control-R3-4h-final,ZRCND-B-no_module_static_control-R3-4h,final,B,4 h,3,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R1-0h-initial,ZRCND-C-baseline_rc_3p5m_guard-R1-0h,initial,C,0 h,1,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R1-0h-final,ZRCND-C-baseline_rc_3p5m_guard-R1-0h,final,C,0 h,1,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R1-24h-initial,ZRCND-C-baseline_rc_3p5m_guard-R1-24h,initial,C,24 h,1,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R1-24h-final,ZRCND-C-baseline_rc_3p5m_guard-R1-24h,final,C,24 h,1,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R1-4h-initial,ZRCND-C-baseline_rc_3p5m_guard-R1-4h,initial,C,4 h,1,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R1-4h-final,ZRCND-C-baseline_rc_3p5m_guard-R1-4h,final,C,4 h,1,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R1-0h-initial,ZRCND-C-bulk_exchange_reference-R1-0h,initial,C,0 h,1,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R1-0h-final,ZRCND-C-bulk_exchange_reference-R1-0h,final,C,0 h,1,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R1-24h-initial,ZRCND-C-bulk_exchange_reference-R1-24h,initial,C,24 h,1,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R1-24h-final,ZRCND-C-bulk_exchange_reference-R1-24h,final,C,24 h,1,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R1-4h-initial,ZRCND-C-bulk_exchange_reference-R1-4h,initial,C,4 h,1,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R1-4h-final,ZRCND-C-bulk_exchange_reference-R1-4h,final,C,4 h,1,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R1-0h-initial,ZRCND-C-lead_zrc_nd_3p5m_guard-R1-0h,initial,C,0 h,1,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R1-0h-final,ZRCND-C-lead_zrc_nd_3p5m_guard-R1-0h,final,C,0 h,1,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R1-24h-initial,ZRCND-C-lead_zrc_nd_3p5m_guard-R1-24h,initial,C,24 h,1,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R1-24h-final,ZRCND-C-lead_zrc_nd_3p5m_guard-R1-24h,final,C,24 h,1,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R1-4h-initial,ZRCND-C-lead_zrc_nd_3p5m_guard-R1-4h,initial,C,4 h,1,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R1-4h-final,ZRCND-C-lead_zrc_nd_3p5m_guard-R1-4h,final,C,4 h,1,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R1-0h-initial,ZRCND-C-no_module_static_control-R1-0h,initial,C,0 h,1,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R1-0h-final,ZRCND-C-no_module_static_control-R1-0h,final,C,0 h,1,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R1-24h-initial,ZRCND-C-no_module_static_control-R1-24h,initial,C,24 h,1,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R1-24h-final,ZRCND-C-no_module_static_control-R1-24h,final,C,24 h,1,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R1-4h-initial,ZRCND-C-no_module_static_control-R1-4h,initial,C,4 h,1,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R1-4h-final,ZRCND-C-no_module_static_control-R1-4h,final,C,4 h,1,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R2-0h-initial,ZRCND-C-baseline_rc_3p5m_guard-R2-0h,initial,C,0 h,2,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R2-0h-final,ZRCND-C-baseline_rc_3p5m_guard-R2-0h,final,C,0 h,2,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R2-24h-initial,ZRCND-C-baseline_rc_3p5m_guard-R2-24h,initial,C,24 h,2,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R2-24h-final,ZRCND-C-baseline_rc_3p5m_guard-R2-24h,final,C,24 h,2,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R2-4h-initial,ZRCND-C-baseline_rc_3p5m_guard-R2-4h,initial,C,4 h,2,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R2-4h-final,ZRCND-C-baseline_rc_3p5m_guard-R2-4h,final,C,4 h,2,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R2-0h-initial,ZRCND-C-bulk_exchange_reference-R2-0h,initial,C,0 h,2,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R2-0h-final,ZRCND-C-bulk_exchange_reference-R2-0h,final,C,0 h,2,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R2-24h-initial,ZRCND-C-bulk_exchange_reference-R2-24h,initial,C,24 h,2,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R2-24h-final,ZRCND-C-bulk_exchange_reference-R2-24h,final,C,24 h,2,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R2-4h-initial,ZRCND-C-bulk_exchange_reference-R2-4h,initial,C,4 h,2,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R2-4h-final,ZRCND-C-bulk_exchange_reference-R2-4h,final,C,4 h,2,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R2-0h-initial,ZRCND-C-lead_zrc_nd_3p5m_guard-R2-0h,initial,C,0 h,2,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R2-0h-final,ZRCND-C-lead_zrc_nd_3p5m_guard-R2-0h,final,C,0 h,2,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R2-24h-initial,ZRCND-C-lead_zrc_nd_3p5m_guard-R2-24h,initial,C,24 h,2,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R2-24h-final,ZRCND-C-lead_zrc_nd_3p5m_guard-R2-24h,final,C,24 h,2,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R2-4h-initial,ZRCND-C-lead_zrc_nd_3p5m_guard-R2-4h,initial,C,4 h,2,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R2-4h-final,ZRCND-C-lead_zrc_nd_3p5m_guard-R2-4h,final,C,4 h,2,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R2-0h-initial,ZRCND-C-no_module_static_control-R2-0h,initial,C,0 h,2,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R2-0h-final,ZRCND-C-no_module_static_control-R2-0h,final,C,0 h,2,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R2-24h-initial,ZRCND-C-no_module_static_control-R2-24h,initial,C,24 h,2,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R2-24h-final,ZRCND-C-no_module_static_control-R2-24h,final,C,24 h,2,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R2-4h-initial,ZRCND-C-no_module_static_control-R2-4h,initial,C,4 h,2,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R2-4h-final,ZRCND-C-no_module_static_control-R2-4h,final,C,4 h,2,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R3-0h-initial,ZRCND-C-baseline_rc_3p5m_guard-R3-0h,initial,C,0 h,3,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R3-0h-final,ZRCND-C-baseline_rc_3p5m_guard-R3-0h,final,C,0 h,3,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R3-24h-initial,ZRCND-C-baseline_rc_3p5m_guard-R3-24h,initial,C,24 h,3,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R3-24h-final,ZRCND-C-baseline_rc_3p5m_guard-R3-24h,final,C,24 h,3,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R3-4h-initial,ZRCND-C-baseline_rc_3p5m_guard-R3-4h,initial,C,4 h,3,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-baseline_rc_3p5m_guard-R3-4h-final,ZRCND-C-baseline_rc_3p5m_guard-R3-4h,final,C,4 h,3,baseline_rc_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R3-0h-initial,ZRCND-C-bulk_exchange_reference-R3-0h,initial,C,0 h,3,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R3-0h-final,ZRCND-C-bulk_exchange_reference-R3-0h,final,C,0 h,3,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R3-24h-initial,ZRCND-C-bulk_exchange_reference-R3-24h,initial,C,24 h,3,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R3-24h-final,ZRCND-C-bulk_exchange_reference-R3-24h,final,C,24 h,3,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R3-4h-initial,ZRCND-C-bulk_exchange_reference-R3-4h,initial,C,4 h,3,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-bulk_exchange_reference-R3-4h-final,ZRCND-C-bulk_exchange_reference-R3-4h,final,C,4 h,3,bulk_exchange_reference,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R3-0h-initial,ZRCND-C-lead_zrc_nd_3p5m_guard-R3-0h,initial,C,0 h,3,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R3-0h-final,ZRCND-C-lead_zrc_nd_3p5m_guard-R3-0h,final,C,0 h,3,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R3-24h-initial,ZRCND-C-lead_zrc_nd_3p5m_guard-R3-24h,initial,C,24 h,3,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R3-24h-final,ZRCND-C-lead_zrc_nd_3p5m_guard-R3-24h,final,C,24 h,3,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R3-4h-initial,ZRCND-C-lead_zrc_nd_3p5m_guard-R3-4h,initial,C,4 h,3,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-lead_zrc_nd_3p5m_guard-R3-4h-final,ZRCND-C-lead_zrc_nd_3p5m_guard-R3-4h,final,C,4 h,3,lead_zrc_nd_3p5m_guard,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R3-0h-initial,ZRCND-C-no_module_static_control-R3-0h,initial,C,0 h,3,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R3-0h-final,ZRCND-C-no_module_static_control-R3-0h,final,C,0 h,3,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R3-24h-initial,ZRCND-C-no_module_static_control-R3-24h,initial,C,24 h,3,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R3-24h-final,ZRCND-C-no_module_static_control-R3-24h,final,C,24 h,3,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R3-4h-initial,ZRCND-C-no_module_static_control-R3-4h,initial,C,4 h,3,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis -ZRCND-C-no_module_static_control-R3-4h-final,ZRCND-C-no_module_static_control-R3-4h,final,C,4 h,3,no_module_static_control,medium_integrity;waste_clearance;factor_retention;module_performance,record local sample location and assay plate/well before analysis diff --git a/data/zrc_nd_sentinel_interpretation.json b/data/zrc_nd_sentinel_interpretation.json deleted file mode 100644 index 5bc3332..0000000 --- a/data/zrc_nd_sentinel_interpretation.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "evaluations": [], - "failed_rows": 0, - "lead_gate_rows": 0, - "material_rows": 0, - "next_action": "Generate and fill the Phase A sentinel packet.", - "not_evaluable_rows": 0, - "rows": 0, - "status": "no_sentinel_rows" -} \ No newline at end of file diff --git a/data/zrc_nd_validation_results.json b/data/zrc_nd_validation_results.json deleted file mode 100644 index 98568ba..0000000 --- a/data/zrc_nd_validation_results.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "aggregate_gates": [ - { - "gate": "lead_superiority_gate", - "lead_vs_baseline": "not_evaluable", - "lead_vs_challenge": "not_evaluable", - "metrics": { - "baseline_abs_flow_change_mean": null, - "baseline_min_retention_mean": null, - "challenge_min_retention_mean": null, - "lead_abs_flow_change_mean": null, - "lead_min_retention_mean": null, - "matched_groups": 0 - }, - "status": "not_evaluable" - } - ], - "evaluations": [], - "summary": { - "aggregate_lead_superiority": "not_evaluable", - "failed_rows": 0, - "fully_or_partially_passing_rows": 0, - "lead_rows": 0, - "passed_lead_replicates_by_phase": {}, - "phase_coverage": [], - "rows": 0, - "status": "no_data" - } -} \ No newline at end of file diff --git a/data/zrc_nd_validation_runs_active.csv b/data/zrc_nd_validation_runs_active.csv deleted file mode 100644 index 4544bea..0000000 --- a/data/zrc_nd_validation_runs_active.csv +++ /dev/null @@ -1 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,membrane_lot,mwco_kda,membrane_area_cm2,surface_modification,prefilter_lot,housing_material,medium_name,medium_lot,initial_volume_ml,flow_rate_ul_min,exposure_time_h,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,lactate_initial_mM,lactate_final_mM,ammonia_initial_uM,ammonia_final_uM,bdnf_initial_pg_ml,bdnf_final_pg_ml,ngf_initial_pg_ml,ngf_final_pg_ml,albumin_initial,albumin_final,transferrin_initial,transferrin_final,total_protein_initial,total_protein_final,flow_resistance_initial,flow_resistance_final,bubble_events,visible_precipitate,gate_results,source_file,notes diff --git a/data/zrc_nd_validation_runs_template.csv b/data/zrc_nd_validation_runs_template.csv deleted file mode 100644 index e2c2553..0000000 --- a/data/zrc_nd_validation_runs_template.csv +++ /dev/null @@ -1 +0,0 @@ -run_id,date,operator_or_agent,phase,timepoint,replicate,article_id,variant_id,control_article_id,membrane_lot,mwco_kda,membrane_area_cm2,surface_modification,prefilter_lot,housing_material,medium_name,medium_lot,initial_volume_ml,flow_rate_ul_min,exposure_time_h,temperature_c,pH_initial,pH_final,osmolality_initial_mOsm_kg,osmolality_final_mOsm_kg,conductivity_initial_mS_cm,conductivity_final_mS_cm,lactate_initial_mM,lactate_final_mM,ammonia_initial_uM,ammonia_final_uM,bdnf_initial_pg_ml,bdnf_final_pg_ml,ngf_initial_pg_ml,ngf_final_pg_ml,albumin_initial,albumin_final,transferrin_initial,transferrin_final,total_protein_initial,total_protein_final,flow_resistance_initial,flow_resistance_final,bubble_events,visible_precipitate,gate_results,source_file,notes diff --git a/data/zrc_nd_variant_scores.json b/data/zrc_nd_variant_scores.json deleted file mode 100644 index 8b408f6..0000000 --- a/data/zrc_nd_variant_scores.json +++ /dev/null @@ -1,182 +0,0 @@ -[ - { - "composite_score": 0.811, - "design_intent": "Conservative lead variant prioritizing trophic-factor retention and fouling resistance while preserving useful lactate/ammonium exchange.", - "evidence_refs": [ - "dialysis_medium_partitioning_2020", - "low_binding_membrane_media_technical", - "zwitterionic_membrane_antifouling_2016", - "zwitterionic_cellulose_acetate_hfm_2026", - "bdnf_uniprot_p23560", - "ngf_uniprot_p01138", - "dialysis_mwco_principle_thermo" - ], - "gate_failures": [], - "id": "zrc_nd_3p5k_mpc_guard", - "lead_status": "lead", - "metrics": { - "factor_retention": 0.98, - "fouling_control": 0.9, - "integration": 0.773, - "leachable_safety": 0.764, - "monitorability": 0.85, - "novelty": 0.848, - "waste_clearance": 0.565 - }, - "mwco_kda": 3.5, - "name": "ZRC-ND-3.5M Guard", - "parent_technology": "limina_zrc_nd_v0_1", - "prefilter": "low_binding_pes_sfca", - "surface_modification": "mpc_like_zwitterionic" - }, - { - "composite_score": 0.761, - "design_intent": "Baseline material stack to quantify whether zwitterionic modification is actually needed.", - "evidence_refs": [ - "dialysis_medium_partitioning_2020", - "low_binding_membrane_media_technical", - "low_binding_rc_membrane_vendor", - "bdnf_uniprot_p23560", - "ngf_uniprot_p01138", - "dialysis_mwco_principle_thermo" - ], - "gate_failures": [], - "id": "zrc_nd_3p5k_unmodified_guard", - "lead_status": "screen", - "metrics": { - "factor_retention": 0.94, - "fouling_control": 0.64, - "integration": 0.886, - "leachable_safety": 0.832, - "monitorability": 0.85, - "novelty": 0.53, - "waste_clearance": 0.601 - }, - "mwco_kda": 3.5, - "name": "RC-3.5K Guard Baseline", - "parent_technology": "limina_zrc_nd_v0_1", - "prefilter": "low_binding_pes_sfca", - "surface_modification": "none" - }, - { - "composite_score": 0.812, - "design_intent": "Higher-clearance variant that tests whether improved small-waste exchange justifies increased trophic-factor leakage risk.", - "evidence_refs": [ - "dialysis_medium_partitioning_2020", - "zwitterionic_membrane_antifouling_2016", - "zwitterionic_cellulose_acetate_hfm_2026", - "bdnf_uniprot_p23560", - "ngf_uniprot_p01138", - "dialysis_mwco_principle_thermo" - ], - "gate_failures": [ - "factor_retention" - ], - "id": "zrc_nd_10k_mpc_guard", - "lead_status": "screen", - "metrics": { - "factor_retention": 0.86, - "fouling_control": 0.9, - "integration": 0.773, - "leachable_safety": 0.764, - "monitorability": 0.85, - "novelty": 0.848, - "waste_clearance": 0.711 - }, - "mwco_kda": 10.0, - "name": "ZRC-ND-10M Guard", - "parent_technology": "limina_zrc_nd_v0_1", - "prefilter": "low_binding_pes_sfca", - "surface_modification": "mpc_like_zwitterionic" - }, - { - "composite_score": 0.777, - "design_intent": "Stress-test variant for maximum clearance and unacceptable trophic-factor leakage boundary.", - "evidence_refs": [ - "dialysis_medium_partitioning_2020", - "zwitterionic_membrane_antifouling_2016", - "bdnf_uniprot_p23560", - "ngf_uniprot_p01138", - "dialysis_mwco_principle_thermo" - ], - "gate_failures": [ - "factor_retention" - ], - "id": "zrc_nd_20k_mpc_guard", - "lead_status": "screen", - "metrics": { - "factor_retention": 0.64, - "fouling_control": 0.9, - "integration": 0.773, - "leachable_safety": 0.764, - "monitorability": 0.85, - "novelty": 0.81, - "waste_clearance": 0.821 - }, - "mwco_kda": 20.0, - "name": "ZRC-ND-20M Guard", - "parent_technology": "limina_zrc_nd_v0_1", - "prefilter": "low_binding_pes_sfca", - "surface_modification": "mpc_like_zwitterionic" - }, - { - "composite_score": 0.763, - "design_intent": "Maximum-retention variant, expected to be too slow unless membrane area or exposure is increased.", - "evidence_refs": [ - "dialysis_medium_partitioning_2020", - "zwitterionic_membrane_antifouling_2016", - "bdnf_uniprot_p23560", - "ngf_uniprot_p01138", - "dialysis_mwco_principle_thermo" - ], - "gate_failures": [ - "waste_clearance" - ], - "id": "zrc_nd_1k_mpc_guard", - "lead_status": "screen", - "metrics": { - "factor_retention": 1.0, - "fouling_control": 0.9, - "integration": 0.773, - "leachable_safety": 0.764, - "monitorability": 0.85, - "novelty": 0.81, - "waste_clearance": 0.319 - }, - "mwco_kda": 1.0, - "name": "ZRC-ND-1M Guard", - "parent_technology": "limina_zrc_nd_v0_1", - "prefilter": "low_binding_pes_sfca", - "surface_modification": "mpc_like_zwitterionic" - }, - { - "composite_score": 0.756, - "design_intent": "High-clearance low-complexity baseline, expected to expose protein-retention and fouling penalties.", - "evidence_refs": [ - "dialysis_medium_partitioning_2020", - "low_binding_rc_membrane_vendor", - "bdnf_uniprot_p23560", - "ngf_uniprot_p01138", - "dialysis_mwco_principle_thermo" - ], - "gate_failures": [ - "factor_retention" - ], - "id": "zrc_nd_10k_unmodified_no_guard", - "lead_status": "screen", - "metrics": { - "factor_retention": 0.84, - "fouling_control": 0.6, - "integration": 0.924, - "leachable_safety": 0.842, - "monitorability": 0.75, - "novelty": 0.443, - "waste_clearance": 0.78 - }, - "mwco_kda": 10.0, - "name": "RC-10K No-Guard High-Clearance Baseline", - "parent_technology": "limina_zrc_nd_v0_1", - "prefilter": "none", - "surface_modification": "none" - } -] \ No newline at end of file diff --git a/data/zrc_nd_variants.json b/data/zrc_nd_variants.json deleted file mode 100644 index d8e78d0..0000000 --- a/data/zrc_nd_variants.json +++ /dev/null @@ -1,127 +0,0 @@ -[ - { - "id": "zrc_nd_3p5k_mpc_guard", - "name": "ZRC-ND-3.5M Guard", - "parent_technology": "limina_zrc_nd_v0_1", - "mwco_kda": 3.5, - "primary_membrane": "regenerated cellulose", - "surface_modification": "mpc_like_zwitterionic", - "surface_scope": "membrane_and_housing", - "prefilter": "low_binding_pes_sfca", - "housing": "coc_cop", - "monitoring": ["pH", "conductivity", "flow_resistance", "bubble_observation"], - "design_intent": "Conservative lead variant prioritizing trophic-factor retention and fouling resistance while preserving useful lactate/ammonium exchange.", - "evidence_refs": [ - "dialysis_medium_partitioning_2020", - "low_binding_membrane_media_technical", - "zwitterionic_membrane_antifouling_2016", - "zwitterionic_cellulose_acetate_hfm_2026", - "bdnf_uniprot_p23560", - "ngf_uniprot_p01138", - "dialysis_mwco_principle_thermo" - ] - }, - { - "id": "zrc_nd_10k_mpc_guard", - "name": "ZRC-ND-10M Guard", - "parent_technology": "limina_zrc_nd_v0_1", - "mwco_kda": 10.0, - "primary_membrane": "regenerated cellulose", - "surface_modification": "mpc_like_zwitterionic", - "surface_scope": "membrane_and_housing", - "prefilter": "low_binding_pes_sfca", - "housing": "coc_cop", - "monitoring": ["pH", "conductivity", "flow_resistance", "bubble_observation"], - "design_intent": "Higher-clearance variant that tests whether improved small-waste exchange justifies increased trophic-factor leakage risk.", - "evidence_refs": [ - "dialysis_medium_partitioning_2020", - "zwitterionic_membrane_antifouling_2016", - "zwitterionic_cellulose_acetate_hfm_2026", - "bdnf_uniprot_p23560", - "ngf_uniprot_p01138", - "dialysis_mwco_principle_thermo" - ] - }, - { - "id": "zrc_nd_3p5k_unmodified_guard", - "name": "RC-3.5K Guard Baseline", - "parent_technology": "limina_zrc_nd_v0_1", - "mwco_kda": 3.5, - "primary_membrane": "regenerated cellulose", - "surface_modification": "none", - "surface_scope": "none", - "prefilter": "low_binding_pes_sfca", - "housing": "coc_cop", - "monitoring": ["pH", "conductivity", "flow_resistance", "bubble_observation"], - "design_intent": "Baseline material stack to quantify whether zwitterionic modification is actually needed.", - "evidence_refs": [ - "dialysis_medium_partitioning_2020", - "low_binding_membrane_media_technical", - "low_binding_rc_membrane_vendor", - "bdnf_uniprot_p23560", - "ngf_uniprot_p01138", - "dialysis_mwco_principle_thermo" - ] - }, - { - "id": "zrc_nd_10k_unmodified_no_guard", - "name": "RC-10K No-Guard High-Clearance Baseline", - "parent_technology": "limina_zrc_nd_v0_1", - "mwco_kda": 10.0, - "primary_membrane": "regenerated cellulose", - "surface_modification": "none", - "surface_scope": "none", - "prefilter": "none", - "housing": "coc_cop", - "monitoring": ["pH", "conductivity", "flow_resistance"], - "design_intent": "High-clearance low-complexity baseline, expected to expose protein-retention and fouling penalties.", - "evidence_refs": [ - "dialysis_medium_partitioning_2020", - "low_binding_rc_membrane_vendor", - "bdnf_uniprot_p23560", - "ngf_uniprot_p01138", - "dialysis_mwco_principle_thermo" - ] - }, - { - "id": "zrc_nd_1k_mpc_guard", - "name": "ZRC-ND-1M Guard", - "parent_technology": "limina_zrc_nd_v0_1", - "mwco_kda": 1.0, - "primary_membrane": "regenerated cellulose", - "surface_modification": "mpc_like_zwitterionic", - "surface_scope": "membrane_and_housing", - "prefilter": "low_binding_pes_sfca", - "housing": "coc_cop", - "monitoring": ["pH", "conductivity", "flow_resistance", "bubble_observation"], - "design_intent": "Maximum-retention variant, expected to be too slow unless membrane area or exposure is increased.", - "evidence_refs": [ - "dialysis_medium_partitioning_2020", - "zwitterionic_membrane_antifouling_2016", - "bdnf_uniprot_p23560", - "ngf_uniprot_p01138", - "dialysis_mwco_principle_thermo" - ] - }, - { - "id": "zrc_nd_20k_mpc_guard", - "name": "ZRC-ND-20M Guard", - "parent_technology": "limina_zrc_nd_v0_1", - "mwco_kda": 20.0, - "primary_membrane": "regenerated cellulose", - "surface_modification": "mpc_like_zwitterionic", - "surface_scope": "membrane_and_housing", - "prefilter": "low_binding_pes_sfca", - "housing": "coc_cop", - "monitoring": ["pH", "conductivity", "flow_resistance", "bubble_observation"], - "design_intent": "Stress-test variant for maximum clearance and unacceptable trophic-factor leakage boundary.", - "evidence_refs": [ - "dialysis_medium_partitioning_2020", - "zwitterionic_membrane_antifouling_2016", - "bdnf_uniprot_p23560", - "ngf_uniprot_p01138", - "dialysis_mwco_principle_thermo" - ] - } -] - diff --git a/docs/.nojekyll b/docs/.nojekyll deleted file mode 100644 index 9c558e3..0000000 --- a/docs/.nojekyll +++ /dev/null @@ -1 +0,0 @@ -. diff --git a/docs/assets/falsiflow_30_second_demo.svg b/docs/assets/falsiflow_30_second_demo.svg deleted file mode 100644 index 4cac101..0000000 --- a/docs/assets/falsiflow_30_second_demo.svg +++ /dev/null @@ -1,61 +0,0 @@ - - Falsiflow 30-second demo: ready versus blocked claims - A screenshot-style strip showing the AI claim quickstart command, a ready claim-check report, and a blocked placeholder-evidence report. - - - - - 30-second AI claim demo - One command creates a claim gate, proves the positive path, and keeps placeholder evidence blocked. - - - - - - - - - $ python3 -m pip install -e . - $ falsiflow quickstart --template ai_claim_evaluation --out falsiflow_ai_demo --strict - - - - - - - - - - ready path - quickstart_ready - Nested report: claim_check_ready - - - - claim_check/claim_check.md - source manifest + zip bundle - - - - - - - - - blocked path - claim_check_blocked - Placeholder evidence never becomes a launch claim. - - - - evidence_placeholder_demo.csv - first repair action returned - - - - - - - Output bundle: JSON status, Markdown review card, source manifest, dashboard, SHA-256 bundle, and next actions. - - diff --git a/docs/assets/falsiflow_downstream_pr_proof_strip.png b/docs/assets/falsiflow_downstream_pr_proof_strip.png deleted file mode 100644 index 3de50b2..0000000 Binary files a/docs/assets/falsiflow_downstream_pr_proof_strip.png and /dev/null differ diff --git a/docs/assets/falsiflow_downstream_pr_proof_strip.svg b/docs/assets/falsiflow_downstream_pr_proof_strip.svg deleted file mode 100644 index 6c052da..0000000 --- a/docs/assets/falsiflow_downstream_pr_proof_strip.svg +++ /dev/null @@ -1,135 +0,0 @@ - - Falsiflow downstream PR proof: AI, RAG, and product metric claims move from blocked to ready - A proof strip showing three real downstream GitHub PRs. Placeholder AI eval, RAG eval, and product metric evidence fail strict CI with claim_check_blocked, then source-backed evidence passes with claim_check_ready. - - - - - - - Real downstream PRs: CI blocks unverifiable AI, RAG, and product claims - Three public PRs fail on placeholder evidence, then pass only after source-backed rows and raw files are added. - - - - - - - - - AI PR #1: github.com/AzurLiu/falsiflow-downstream-ai-eval-demo/pull/1 - RAG PR #1: github.com/AzurLiu/falsiflow-downstream-rag-eval-demo/pull/1 - Product metric PR #1: github.com/AzurLiu/falsiflow-downstream-product-metric-demo#1 - Proof target: evidence completeness in CI, not quality or causality. - - - - - - - AI Eval Downstream PR #1 - AI eval claim - placeholder eval evidence enters CI - - - evidence.csv - dataset_pending - - - - - blocked run - claim_check_blocked - 26711652990 - - - - ready run - claim_check_ready - 26711669112 - - - - - - RAG Eval Downstream PR #1 - RAG eval claim - source-backed citations required - - - rag_quality_gate - eval_set_pending - - - - - blocked run - claim_check_blocked - 26721829145 - - - - ready run - claim_check_ready - 26721856616 - - - - - - Product Metric Downstream PR #1 - Launch metric claim - metric provenance and rollback proof required - - - product_metric - analysis_pending - - - - - blocked run - claim_check_blocked - 26726360229 - - - - ready run - claim_check_ready - 26726392921 - - - - - - - Shareable proof strip - AI 26711652990 -> 26711669112 | RAG 26721829145 -> 26721856616 | Product 26726360229 -> 26726392921 - - - Boundary: claim_check_ready means reviewable evidence. It does not prove the model, RAG system, or product change is good, safe, or shippable. - diff --git a/docs/assets/falsiflow_live_pr_story_reel.svg b/docs/assets/falsiflow_live_pr_story_reel.svg deleted file mode 100644 index 2b855a4..0000000 --- a/docs/assets/falsiflow_live_pr_story_reel.svg +++ /dev/null @@ -1,137 +0,0 @@ - - Falsiflow Live PR Story: blocked AI eval claim becomes source-backed - A four-step demo reel showing PR 17 opening with an unverifiable AI eval claim, CI blocking placeholder evidence, source-backed evidence being added, and the same claim passing as claim_check_ready. - - - - - - - Live PR Story: CI blocks unverifiable AI eval claims - PR #17 moves from placeholder AI/RAG eval evidence to source-backed rows, then the same gate passes. - - - - - - - - - $ falsiflow claim-check --project-dir falsiflow_ai_eval --strict - CI decides whether "model improved" has reviewable evidence, not whether the model is good. - - - - - - - - - - - - - - PR #17 - Risky claim - "candidate_model improved" - - - dataset_version - dataset_pending - - A headline is not evidence. - - - - - - - - blocked - CI fails - strict gate rejects the PR - - - claim_check_blocked - run 26708459093 - - Reviewers get blockers. - - - - - - repair - Add proof - source-backed eval rows - - - raw_outputs_sha256 - model + baseline pinned - - Evidence travels with files. - - - - - - - - ready - Same gate passes - claim is reviewable now - - - claim_check_ready - run 26708472653 - - Bundle verified for humans. - - - - - - What travels through the PR - dataset version, prompt hash, model IDs, raw outputs, thresholds, source files, audit report, bundle SHA-256 - - source-backed - - - Proof links: github.com/AzurLiu/falsiflow/pull/17 | blocked 26708459093 | ready 26708472653 - diff --git a/docs/assets/falsiflow_proof_strip.svg b/docs/assets/falsiflow_proof_strip.svg deleted file mode 100644 index 01cb5a3..0000000 --- a/docs/assets/falsiflow_proof_strip.svg +++ /dev/null @@ -1,66 +0,0 @@ - - Falsiflow evidence-gated claim workflow - A visual proof strip showing a claim moving through evidence gates, source provenance, audit bundles, and ready or blocked release decisions. - - - - Falsiflow turns risky claims into auditable gates - A claim is ready only when evidence rows, source files, metrics, templates, bundles, and release checks agree. - - - - - 1. Claim - High-risk decision - thresholds must be explicit - - - - - - - - 2. Evidence gates - CSV + rules - missing rows stay blocked - - - - - - - - 3. Provenance - Source files - hashes and manifests travel - - - - - - - - 4. Audit bundle - Review + release checks - ready only when all gates pass - - - - - - - - claim_ready after proof - - - - - claim_blocked on gaps - - - JSON + Markdown + zip bundle - - - local-first, no cloud upload - - diff --git a/docs/assets/falsiflow_public_demo_dashboard.png b/docs/assets/falsiflow_public_demo_dashboard.png deleted file mode 100644 index 4d1e1bd..0000000 Binary files a/docs/assets/falsiflow_public_demo_dashboard.png and /dev/null differ diff --git a/docs/assets/falsiflow_public_demo_launchpad.png b/docs/assets/falsiflow_public_demo_launchpad.png deleted file mode 100644 index 5cd94a1..0000000 Binary files a/docs/assets/falsiflow_public_demo_launchpad.png and /dev/null differ diff --git a/docs/assets/falsiflow_public_demo_report.png b/docs/assets/falsiflow_public_demo_report.png deleted file mode 100644 index 3816e33..0000000 Binary files a/docs/assets/falsiflow_public_demo_report.png and /dev/null differ diff --git a/docs/assets/falsiflow_public_demo_workbench.png b/docs/assets/falsiflow_public_demo_workbench.png deleted file mode 100644 index 8d21649..0000000 Binary files a/docs/assets/falsiflow_public_demo_workbench.png and /dev/null differ diff --git a/docs/cl1_external_materials.md b/docs/cl1_external_materials.md deleted file mode 100644 index 889af61..0000000 --- a/docs/cl1_external_materials.md +++ /dev/null @@ -1,224 +0,0 @@ -# CL1 External Materials Map - -This note separates public facts about CL1 from material choices that are -reasonable engineering inferences from adjacent MEA, perfusion, and -organ-on-chip systems. Cortical Labs has not published a full bill of materials -for CL1, so inferred materials should be treated as LIMINA research targets, not -confirmed CL1 composition. - -## Public CL1 Hardware Signals - -Official and design sources describe CL1 as a self-contained system where the -cell culture is only one part of a larger biological-computing instrument: - -- A modular, transparent enclosure that can be desktop or rack-mounted. -- Embedded processing, control, recording, and life support. -- A closed-loop fluid system with temperature and gas regulation. -- Single-use sterile tube sets to simplify setup and prevent contamination. -- A removable MEA headstage with a locking mechanism and precise electrical - bonding. -- A pogo-pin array for electrical contact. -- Embedded heating near the MEA headstage. -- A capacitive touchscreen for local monitoring. -- USB and external ports for cameras, sensors, actuators, and broader testing. -- A perfusion architecture with media supply, gas exchange, gas mixing, - peristaltic pumps, filtration, bubble control, and a cell-hosting compartment. - -## External Material Zones - -### 1. Transparent Enclosure and Chassis - -Probable role: - -- protect the wetware and electronics; -- make the living system visible for monitoring and product trust; -- support desktop and rack-mounted deployment; -- reduce contamination from normal lab handling. - -Candidate materials: - -- polycarbonate, PMMA/acrylic, COC/COP, glass, or coated glass; -- aluminum or stainless subframes where stiffness, heat spreading, or EMI - control matters; -- transparent coatings with anti-fog, anti-scratch, and low-outgassing behavior. - -LIMINA opportunity: - -- low-autofluorescence transparent enclosure/window materials; -- coatings that resist disinfectants and repeated wipe-down; -- thermal-insulating but optically clear panels; -- modular panels that separate service access from the sterile fluid path. - -### 2. Sterile Tubeset and Fluidic Manifold - -Probable role: - -- circulate medium without introducing leachables or bubbles; -- support long-term low-shear perfusion; -- simplify sterile setup as a consumable module. - -Candidate materials: - -- platinum-cured silicone for peristaltic pump sections and gas permeability; -- FEP/PTFE/PFA tubing for low adsorption and chemical inertness; -- PEEK for rigid, chemically resistant microfluidic connections; -- COC/COP, PC, PMMA, or PS for reservoirs and transparent manifolds; -- parylene or other barrier coatings where PDMS/silicone absorption is risky. - -LIMINA opportunity: - -- hybrid tubesets: silicone only where pumping/gas transfer is needed, FEP/PTFE - elsewhere to reduce molecule adsorption; -- bubble-resistant connector geometries; -- low-leachable adhesive-free bonds; -- disposable manifolds with integrated sampling and degassing. - -### 3. Gas Exchange and Gas Mixing - -Probable role: - -- maintain oxygen, CO2, pH, and dissolved gas balance outside a standard - incubator; -- keep cells alive for weeks to months. - -Candidate materials: - -- silicone or PDMS membranes when gas permeability matters; -- fluoropolymer membranes where chemical inertness and lower absorption matter; -- hollow-fiber membranes from polysulfone, polypropylene, cellulose - derivatives, or silicone variants; -- gas-impermeable COC/COP/PC reservoirs when gas exchange must be localized. - -LIMINA opportunity: - -- membrane modules that tune oxygenation without excessive evaporation; -- gas exchange surfaces with lower absorption of hydrophobic drugs; -- sensor-integrated gas exchange cartridges for pH/DO feedback control. - -### 4. Filtration and Waste Management - -Probable role: - -- remove waste such as lactate/ammonium while retaining useful proteins and - growth factors; -- support longer intervals between media changes. - -Candidate materials: - -- PES, polysulfone, cellulose acetate, regenerated cellulose, or nylon - membranes depending on molecular weight cut-off and protein binding; -- activated carbon or ion-exchange elements only if validated not to strip - growth factors unpredictably; -- low-protein-binding housings and seals. - -LIMINA opportunity: - -- selective waste filters that preserve neurotrophic factors; -- modular cartridges optimized for neuronal medium rather than generic - mammalian cell culture; -- indicators for filter exhaustion and protein loss. - -### 5. MEA Headstage, Electrical Contacts, and Thermal Control - -Probable role: - -- make stable, low-noise electrical connection to the MEA; -- allow sterile dish removal; -- keep the culture near physiological temperature. - -Candidate materials: - -- gold-plated pogo pins or noble-metal contact finishes; -- corrosion-resistant stainless or spring alloys kept outside the wet path; -- PEEK, PEI/Ultem, LCP, or ceramic insulators for dimensional stability; -- silicone, FKM, EPDM, or PTFE seals depending on sterilization and leachables; -- copper/aluminum heat spreaders isolated from fluidics. - -LIMINA opportunity: - -- low-noise, humidity-resistant contact stacks; -- spring/contact materials with less fretting corrosion; -- gasket materials that keep sterility without outgassing or leaching; -- thermal interface layers that avoid hot spots near cells. - -### 6. Sensors, Ports, and User-Service Interfaces - -Probable role: - -- pH, dissolved oxygen, temperature, flow, pressure, leak, bubble, and impedance - monitoring; -- external cameras, actuators, and experimental devices. - -Candidate materials: - -- optical windows in glass/COC/COP/PMMA depending on imaging wavelength; -- PEEK/fluoropolymer wetted sensor housings; -- medical-grade connector plastics and elastomer seals; -- antimicrobial or wipe-compatible exterior coatings. - -LIMINA opportunity: - -- sensor-compatible materials with low drift in warm humid environments; -- self-diagnosing ports that detect tube mis-seat, leaks, and bubbles; -- exterior materials that tolerate ethanol/isopropanol/hypochlorite workflows. - -## External-Material Scoring Add-On - -For non-cell-contact materials, LIMINA should add these dimensions: - -- `low_leachables`: minimal extractables into medium or gas path. -- `adsorption_control`: low loss of growth factors, drugs, hormones, and small - molecules. -- `sterility_workflow`: compatible with single-use or validated cleaning. -- `gas_transport_fit`: gas permeability only where wanted. -- `bubble_control`: reduces nucleation, trapping, and transition bubbles. -- `thermal_stability`: supports stable 37 C operation without local hot spots. -- `manufacturability`: injection molding, bonding, assembly, and quality control. -- `serviceability`: easy cartridge/tubeset replacement without contamination. - -## Immediate Research Hypotheses - -Current external-material discovery priority for LIMINA: - -1. `LIMINA-External-1`: selective neuronal-media waste cartridge. -2. `LIMINA-External-2`: hybrid low-adsorption sterile tubeset and manifold. -3. `LIMINA-External-3`: controlled gas-exchange membrane module. -4. `LIMINA-External-4`: bubble-suppressing surface/material geometry. -5. `LIMINA-External-5`: humidity-resistant low-noise electrical contacts, seals, - and headstage materials. -6. `LIMINA-External-6`: transparent low-autofluorescence enclosure/window - materials. -7. `LIMINA-External-7`: ordinary structural enclosure materials. - -1. A CL1-like platform may benefit from a **two-material tubeset**: platinum-cured - silicone for pump/gas sections and FEP/PTFE/PEEK for low-adsorption media - transport. -2. A **selective waste filtration cartridge** designed around neuronal medium - could be as important as the cell-facing substrate, because it controls - long-term health and media-change frequency. -3. **Bubble-control materials and geometries** may be a hidden performance lever: - bubbles can disrupt flow, gas exchange, recording stability, and cell stress. -4. **Transparent, low-autofluorescence, disinfectant-resistant enclosure - materials** matter if CL1 is used as a visible, monitorable lab instrument. -5. **Humidity-resistant electrical-contact materials** are a separate discovery - lane from cell-contact coatings, because signal integrity depends on the - headstage, pogo pins, seals, and thermal design. - -## Sources - -- Cortical Labs CL1 product page: - https://www.corticallabs.com/cl1.html?pubDate=20250329 -- Victorian Premier's Design Awards CL1 page: - https://premiersdesignawards.vic.gov.au/entries/2025/product-design/cortical-labs-cl1-biological-computer -- D+I / Capgemini CL1 product design page: - https://www.design-industry.com.au/cortical-labs-cl1 -- Cortical Labs perfusion circuit poster: - https://corticallabs.com/readings/posters/perfusion_poster_v7.pdf -- Microfluidic organ-on-chip material review: - https://pmc.ncbi.nlm.nih.gov/articles/PMC9966054/ -- Biomedical organ-on-chip materials review: - https://pmc.ncbi.nlm.nih.gov/articles/PMC7387427/ -- PDMS biological implications in microfluidic cell culture: - https://pmc.ncbi.nlm.nih.gov/articles/PMC2792742/ -- Microfluidic leakage/materials review: - https://pmc.ncbi.nlm.nih.gov/articles/PMC9490024/ diff --git a/docs/falsiflow_1k_launch_plan.md b/docs/falsiflow_1k_launch_plan.md deleted file mode 100644 index 45729e6..0000000 --- a/docs/falsiflow_1k_launch_plan.md +++ /dev/null @@ -1,135 +0,0 @@ -# Falsiflow 1k-Star Launch Plan - -This plan turns the adoption priorities into concrete public-launch work. It is -not a promise that stars will arrive; it is the checklist for making the project -easy to understand, safe to try, and worth sharing. - -## Launch Gate - -Do not start broad distribution until these checks are green and linked from -the release notes: - -- GitHub Pages public demo loads at . -- `make test` passes on the release commit. -- `falsiflow release-check --out-dir data/falsiflow/release_check --force` - reports `release_ready`, `package_ready`, and `adoption_ready`. -- `Falsiflow Publish` has a successful release-triggered `publish-pypi` job. -- `https://pypi.org/pypi/falsiflow/json` reports package `falsiflow` at the - release version. -- `Falsiflow External Evidence` reports `external_ready` with the public demo, - PyPI, checkout pipx, public-package pipx, and Windows smoke evidence. - -If any item is missing, the launch can still be prepared, but public posts -should say what is still pending instead of implying full external readiness. - -## First-Screen Conversion Assets - -- README headline: CI gates for claims before they ship. -- Public demo: a ready/blocked proof surface for AI eval, product metric, R&D, - and vendor handoff claims. -- One command path: `pipx install falsiflow`, with source installs kept for - contributors. -- Reusable GitHub Action snippet for downstream repositories. -- Maintained downstream smoke fixture: - `examples/downstream_ai_eval_smoke`. -- Product-metric downstream smoke fixture: - `examples/downstream_product_metric_smoke`. -- RAG-eval downstream smoke fixture: - `examples/downstream_rag_eval_smoke`. -- Live downstream AI proof repo: - . -- Live downstream RAG proof repo: - . -- Live downstream product-metric proof repo: - . -- Shareable downstream proof strip: - [docs/assets/falsiflow_downstream_pr_proof_strip.svg](assets/falsiflow_downstream_pr_proof_strip.svg). -- Comparison boundary: Falsiflow complements Great Expectations, Evidently, - Deepchecks, MLflow, and plain GitHub Actions rather than replacing them. - -## Demo Narrative - -The public demo and launch posts should repeat the same compact story: - -1. A team writes a claim such as "the model improved" or "activation lifted." -2. Placeholder evidence stays `claim_check_blocked`. -3. Source-backed rows, required metadata, source files, audit reports, and - bundle verification can make the same claim `claim_check_ready`. -4. `claim_ready` means the configured evidence gate passed. It is not proof of - scientific truth, safety, regulatory approval, or business impact. - -## Distribution Sequence - -Day 0: - -- Use the current PyPI release, live PR demo, and external-evidence workflow as - the launch trust baseline. -- Update the release body with the demo URL, PR #17, blocked/ready PR runs, - PyPI URL, CI runs, publish run, external-evidence workflow, and - responsible-use boundary. -- Post a concise Show HN or equivalent launch thread. -- Post the longer launch note in one MLOps or evaluation community. -- Share the GitHub Action snippet with a copy-paste downstream smoke example. - Use `examples/downstream_ai_eval_smoke` as the maintained fixture. - Link the live downstream PR story: - . - For RAG-focused readers, link the matching downstream RAG story: - . - Use `examples/downstream_rag_eval_smoke` as the copy-paste fixture. - For product/growth readers, link the matching downstream product-metric - story: - . - Use `docs/assets/falsiflow_downstream_pr_proof_strip.svg` when a full screen - recording is too heavy. -- Share `examples/downstream_product_metric_smoke` with product or growth - engineering readers who care more about activation, conversion, retention, - guardrail, or rollback-readiness claims than model evals. - -Day 1: - -- Reply to install failures and unclear positioning questions first. -- Convert repeated questions into issues with labels, owner, affected artifact, - and verification command. -- Submit to one or two relevant awesome lists only after the README and PyPI - path are stable. - -Day 3: - -- Publish the first article draft from `docs/launch_articles/`. -- Add screenshots or short clips captured from the live Pages demo. -- Review traffic, stars, forks, clones, demo visits, installs, and repeated - questions in `launch_metrics.md`. - -Day 7 and Day 14: - -- Publish the second and third articles. -- Ship one docs/demo improvement based on real user confusion. -- Add or refine one starter template only if the request includes a clear claim, - evidence contract, source-file fixture, and responsible-use boundary. - -## 1k-Star Workstreams - -| Workstream | Outcome | Evidence | -| --- | --- | --- | -| Release trust | PyPI, CI, external evidence, and release notes are coherent. | Release body, CI URLs, PyPI JSON, external-readiness artifact. | -| Fast try | A new visitor can understand and run the project in minutes. | README first screen, Pages demo, quickstart, GitHub Action example. | -| Strong positioning | The project has a crisp reason to exist. | Positioning doc, comparison table, launch posts, replies to common questions. | -| Case breadth | The workflow is not a one-domain toy. | Public casebook, `casebook-check`, AI eval, product metric, R&D, vendor cases. | -| Contribution path | New contributors can help without touching the core engine. | Good-first issues, issue templates, contributing guide, docs/demo tasks. | -| Repeatable launch review | Growth work creates maintainable follow-up, not vague activity. | `launch_metrics.json`, `launch_metrics.md`, weekly maintainer review. | - -## Article Drafts - -- [Stop Shipping Unverifiable AI Eval Claims](launch_articles/stop_shipping_unverifiable_ai_eval_claims.md) -- [Benchmarks Should Fail Builds](launch_articles/benchmarks_should_fail_builds.md) -- [Evidence Gates For Product Metrics](launch_articles/evidence_gates_for_product_metrics.md) - -## Stop Conditions - -- Do not publish a release announcement if PyPI returns 404 for the package JSON - API. -- Do not call the project externally ready until `external-check --strict` - reports `external_ready`. -- Do not frame stars as quality proof. Track stars as distribution feedback, - then judge the project by install success, issue quality, contributor pull - requests, and repeated use cases. diff --git a/docs/falsiflow_adapter_profiles.md b/docs/falsiflow_adapter_profiles.md deleted file mode 100644 index b188072..0000000 --- a/docs/falsiflow_adapter_profiles.md +++ /dev/null @@ -1,153 +0,0 @@ -# Falsiflow Adapter Profiles - -Adapter profiles are named column-mapping presets for `falsiflow evidence -import` and `falsiflow ingest-wide-csv`. They keep common vendor, instrument, -and lab CSV imports explicit without forcing every user to remember each -metadata-column flag. - -Falsiflow still writes the same long-form evidence CSV contract documented in -[falsiflow_data_contract.md](falsiflow_data_contract.md). Profiles only choose -defaults for metadata columns and ignored columns; they do not change claim -logic, acceptance rules, source provenance checks, or bundle verification. - -## Profiles - -| Profile | Intended CSV Shape | Sample Column | Metadata Columns | -| --- | --- | --- | --- | -| `generic-wide` | A wide CSV with `sample_id` plus value columns. | `sample_id` | User-provided flags or constants. | -| `vendor-measurement` | External lab or vendor measurement return. | `sample` | `article`, `source_file`, `measured_at`, `vendor_contact`, `instrument_id`, `notes`. | -| `instrument-export` | Instrument export with timestamped measured columns. | `sample_id` | `candidate_id`, `raw_file`, `timestamp`, `operator`, `instrument_id`, `notes`. | -| `plate-reader` | Plate-reader style export. | `well_id` | `sample_name`, `raw_file`, `read_at`, `operator`, `plate_reader_id`, `notes`. | -| `ai-eval` | AI eval JSON, JSONL, or metric CSV plus optional manifest. | manifest/run id | `dataset_version`, `prompt_set_hash`, model ids, evaluator version, raw-output artifact, CI run. | -| `local-llm-eval` | Local or private model eval artifacts plus runtime/model manifest. | manifest/run id | `runtime`, model file hash, quantization, decode settings, dataset, baseline, evaluator, raw outputs. | -| `rag-eval` | RAG eval JSON, JSONL, or metric CSV plus optional manifest. | manifest/run id | eval set, query hash, RAG versions, judge version, retrieval metrics, answer/source metrics, raw artifacts. | - -## Vendor Return Example - -```bash -falsiflow evidence import \ - --profile vendor-measurement \ - --input vendor_return.csv \ - --out data/falsiflow/vendor_return/evidence.csv \ - --summary-out data/falsiflow/vendor_return/import_summary.json \ - --gate-id vendor_return_gate \ - --candidate-id fallback_candidate -``` - -With `vendor-measurement`, Falsiflow reads `sample` as `sample_id`, `article` as -`candidate_id`, `source_file` as raw provenance, `vendor_contact` as -`operator_or_agent`, and all non-metadata columns as measured value fields. - -The summary records: - -- `adapter_profile` -- `adapter_profile_description` -- `adapter_settings` -- `evidence_rows` -- `skipped_rows` -- `skipped_values` - -## AI, Local LLM, And RAG Eval Artifacts - -Eval profiles import existing results; they do not run a model, execute a -judge, upload data, or store experiments. They convert JSON, JSONL, or metric -CSV artifacts into the same evidence CSV contract used by `claim-check`. -For a copy-paste local model path with Ollama, LM Studio, llama.cpp, or another -private runner, see [falsiflow_local_llm_eval.md](falsiflow_local_llm_eval.md) -and the maintained -[`examples/local_llm_eval_import`](../examples/local_llm_eval_import) fixture. -For the maintained RAG import path, see -[falsiflow_rag_quality_gate_proposal.md](falsiflow_rag_quality_gate_proposal.md) -and [`examples/downstream_rag_eval_smoke`](../examples/downstream_rag_eval_smoke). -Both proof paths import existing artifacts, check `coverage_ready`, then pass -the same `claim_check_ready` gate while keeping the boundary explicit: -evidence-package readiness, not model quality, retrieval safety, or deployment -approval. - -Local/private model example: - -```bash -falsiflow evidence import \ - --profile local-llm-eval \ - --input eval_results.jsonl \ - --manifest model_manifest.json \ - --out falsiflow_ai_eval/evidence.csv \ - --config falsiflow_ai_eval/project.json \ - --coverage-out falsiflow_ai_eval/import_coverage.json \ - --source-file source_files/eval_results.jsonl \ - --strict -``` - -RAG example: - -```bash -falsiflow evidence import \ - --profile rag-eval \ - --input rag_results.json \ - --manifest rag_eval_manifest.json \ - --out falsiflow_rag_eval/evidence.csv \ - --config falsiflow_rag_eval/project.json \ - --coverage-out falsiflow_rag_eval/import_coverage.json \ - --source-file source_files/rag_results.json \ - --strict -``` - -The manifest should pin the evidence needed to review the claim: dataset or -eval-set version, prompt/query hash, candidate and baseline versions, evaluator -or judge version, raw outputs, script hash, deterministic settings or seed, and -CI run. `local-llm-eval` also records local runtime metadata such as -`llama.cpp`, Ollama, LM Studio, vLLM, model file hash, quantization, adapter -hash, and decode parameters in the import summary. - -The reusable GitHub Action can run the same conversion with -`mode: evidence-import`, then a second action step can run `mode: claim-check` -against the generated evidence CSV. - -## Overrides - -Profile defaults can be overridden per run: - -```bash -falsiflow evidence import \ - --profile instrument-export \ - --input impedance_export.csv \ - --out data/falsiflow/impedance/evidence.csv \ - --gate-id h_b_electrical_interface \ - --candidate-id lead_article \ - --sample-id-column specimen_id \ - --measured-at-column acquired_at \ - --field eis_1khz_final_ohm -``` - -Use explicit `--field` values when only a subset of measured columns should -become evidence rows. Use `--exclude-column` for extra non-evidence columns -that are not part of the selected profile. - -## Coverage Check - -When importing against a project, include `--config` and `--coverage-out`: - -```bash -falsiflow evidence import \ - --profile plate-reader \ - --input plate_reader_export.csv \ - --out data/falsiflow/plate/evidence.csv \ - --config my_project/project.json \ - --coverage-out data/falsiflow/plate/import_coverage.json \ - --gate-id bioresponse_screen \ - --candidate-id fallback_sample \ - --strict -``` - -`--strict` exits non-zero if required evidence rows are missing or duplicated. -The coverage artifact is the bridge between an imported CSV and a claim gate: -it tells reviewers whether the adapter produced the rows the project actually -requires. - -## Boundary - -Profiles are deliberately simple. They are not plugins, executable scripts, -model runners, judges, or hidden transformation code. If an artifact shape -needs calculations, row joins, or domain-specific normalization, convert it -before Falsiflow or add a reviewed adapter with schema coverage, documentation, -tests, and `release-check` coverage. diff --git a/docs/falsiflow_adoption_priorities.md b/docs/falsiflow_adoption_priorities.md deleted file mode 100644 index e3e5b9e..0000000 --- a/docs/falsiflow_adoption_priorities.md +++ /dev/null @@ -1,142 +0,0 @@ -# Falsiflow Adoption Priorities - -This file records the optimization order for turning Falsiflow from a working -local tool into a serious open-source project that other teams can understand, -trust, and adopt. - -## Priority Order - -1. Open-source entry point - Make the README and first commands clear enough that a new user can - understand the value in one minute and run a starter workflow in five. - -2. Trusted audit experience - Keep JSON outputs for CI and Markdown reports for human review. Verification - results should explain what was checked, what failed, and whether a claim, - bundle, template pack, or release can be trusted. - -3. Generality proof - Maintain starter templates beyond neural materials so Falsiflow is visibly a - general evidence-gated R&D workflow engine, not a single wetware project. - -4. Release and distribution - Keep package metadata, wheel/sdist builds, release-check, template release - bundles, and installed-package smoke tests passing before publishing. - -5. User experience convergence - Prefer short first-run commands, predictable output paths, explicit next - actions, and clear failure messages over adding more advanced machinery. - -## Current Optimization Track - -The current track is adoption readiness: - -- README first-screen clarity and five-minute quickstart. -- README first-screen positioning for AI eval, product-metric, R&D, and vendor - claims, including the AI-claim quickstart and blocked-placeholder behavior. -- A beginner `start` command that opens the local browser app on a free - localhost port before users learn `try`, `serve`, or schema terms. -- A low-friction `try` command that runs a starter claim and writes a local - `index.html` launchpad plus `try_report.html` browser entry before users - learn the full CLI. -- A `serve` command that turns the same local demo into a localhost browser - experience with a checkable `serve_summary.json` and direct report/wizard - URLs. -- A localhost `workbench.html` behind `start` that lets users upload project, - evidence, and raw source files, run the local evidence gate, and inspect - ready/blocked status, review flow, evidence lineage, repair checklist, source - manifest, dashboard, bundle verification, and bundle links without using the - terminal for that project check. -- A static `wizard` command with plain-language presets that lets browser-first - users draft a claim gate and generate the matching scaffold command, project - JSON, and evidence CSV. -- A non-AI-dependent `discover` command that turns a research goal into - structured evidence records, candidate recipes, ranking, assay/RFQ drafts, and - a placeholder project draft while keeping `claim_ready=false`. -- Focused public interfaces for the same contract: `agent discover`, - `candidate rank`, `assay-plan`, and `evidence import`. -- A local stdio MCP server with `falsiflow mcp --selftest --json` so AI coding - agents can inspect claim, bundle, blocker, and evidence-todo context without - Falsiflow opening a network API or running models. -- A `demo-package` command that prepares GitHub Pages/Netlify-friendly static - demo artifacts, plus an `external-check` gate for public repo/demo URLs, - public PyPI package URL, checkout-based pipx, public-package pipx, and - Windows/PowerShell validation evidence. -- A `publish-kit` handoff command that writes account-bound GitHub/Pages/PyPI - setup artifacts without pretending those external account actions already - happened, plus a public release evidence ledger that links repo, demo, PyPI, - pipx, Windows, Scorecard, release-check, casebook replay, and launch metrics - evidence. -- A public release rehearsal generated by `publish-kit` that records the ordered - preflight commands, expected artifacts, success signals, and stop conditions - before any announcement can claim external readiness. -- A structured `external-evidence` file and `external-check --evidence` path so - hosted demo, public PyPI package, PyPI JSON API response, pipx, and Windows - validation are auditable instead of only environment-variable declarations. -- GitHub Actions workflows for the public static demo, cross-platform - Linux/macOS/Windows and pipx smoke tests, public-package pipx smoke tests, - and PyPI trusted-publishing release builds. -- A 1k-star launch plan with release gates, distribution windows, stop - conditions, and article drafts so public growth work is tied to verifiable - release evidence instead of vague promotion. -- A reusable root `action.yml` so downstream repositories can run claim, - template, casebook, release, adoption, quickstart, or external-readiness gates - with one GitHub Actions `uses:` step. -- Release verification reports that are useful both to CI and to humans. -- Review artifact indexes in claim-check, bundle verification, release-check, - and template release verification reports so source manifests, dashboards, - bundles, and template-release artifacts stay connected for reviewers. -- Trusted `audit_review.json` and `audit_review.md` decision cards for fast - human review of claim readiness, blockers, next actions, and boundaries. -- Starter templates that demonstrate neural-materials, vendor evidence, - biointerface coating, wetware-support-hardware, AI claim evaluation, and - product metric launch use cases. -- A release-checked `template-gallery` command that turns that breadth into - Markdown and JSON evidence for users and CI. -- A release-checked `casebook-check` command that proves positive demos, - placeholder blockers, source provenance, and verified bundles across the - public starter casebook. -- Generated casebook reviewer replay artifacts for Bash and PowerShell so a - launch reviewer can rerun every positive demo and placeholder blocked-path - proof without manually copying commands. -- Release-checked adapter-profile docs for generic wide CSV, vendor - measurements, instrument exports, and plate-reader exports. -- A release-checked positioning and casebook document that explains where - Falsiflow fits relative to spreadsheets, CI suites, ELN/LIMS systems, ML eval - harnesses, materials databases, and workflow orchestrators. -- A release-checked generated CLI reference so users can scan every command, - nested command, option, and help string without reading the source. -- A release-checked `claim-check --project-dir` path that makes audit, source - provenance, bundle creation, and zip verification a single first-run claim - gate. -- A release-checked `quickstart` command that creates a starter project and - runs its claim gate in one first-run command, then records `next_commands` - for the doctor handoff. -- A release-checked `doctor` command that diagnoses a project config, evidence - file, claim gate, source provenance, bundle, and zip verification in one - project-health report with a command-oriented repair checklist. -- A release-checked `adoption-check` command that turns this priority order - into `adoption_check.json` and `adoption_check.md`, with `adoption_ready` - only when all five priorities have current evidence and `repair_checklist` - entries that point blocked priorities or ready rechecks to concrete commands. -- Full `release-check` coverage for package metadata, distribution artifacts, - build-cache hygiene, template supply-chain verification, and installed package - behavior. - -## Post-Launch Metrics Review - -Run this weekly maintainer review after each launch window. Start from the -generated `launch_metrics.json` structured source and `launch_metrics.md` -checklist, not from memory or scattered analytics screenshots. - -- Record traction signals: GitHub traffic, top referrers, stars, forks, clones, - demo visits, public install/download signals, repeated questions, and - docs/demo fixes shipped. -- Keep local/private validation separate: `release-check`, `adoption-check`, - `casebook-check`, private smoke runs, and placeholder external evidence prove - readiness work, but they are not public traction. -- Convert repeated questions into concrete follow-up issues. Each issue should - name the source signal, affected artifact, proposed fix, owner, label, - verification command, and launch window. -- Close the weekly review only after a docs/demo fix ships or a no-change - decision is recorded with evidence. diff --git a/docs/falsiflow_architecture.md b/docs/falsiflow_architecture.md deleted file mode 100644 index a39ecd8..0000000 --- a/docs/falsiflow_architecture.md +++ /dev/null @@ -1,111 +0,0 @@ -# Falsiflow Architecture - -Falsiflow is intentionally small: most commands are thin orchestration around a -shared evidence-gate contract. The architecture goal is to keep claims blocked -until project config, evidence rows, source provenance, templates, bundles, and -release artifacts all agree. - -## Core Data Model - -- `project.json` defines the claim, required gates, samples, evidence policy, - derived fields, and acceptance rules. -- Long-form evidence CSV rows provide `gate_id`, `candidate_id`, `sample_id`, - `field`, `value`, source-file metadata, operator/agent metadata, timestamps, - and notes. -- Source manifests record raw source files, byte sizes, SHA-256 hashes, and - missing/unmanifested file issues. -- Audit, claim-check, doctor, casebook-check, adoption-check, and release-check - summaries are machine-readable JSON with matching Markdown reports for human - review. -- Template packs, registries, lockfiles, attestations, policies, and release - bundles carry hashes and verification reports so starter workflows can move - between teams without losing provenance. - -## Command Flow - -1. `quickstart`, `init`, `template-install`, or `template-scaffold` creates a - project directory and evidence template. -2. `validate` and `doctor` check config shape, evidence CSV diagnostics, source - file presence, and repair actions. -3. `audit` and `claim-check` evaluate the same core gates and write ready or - blocked review artifacts. -4. `sources`, `bundle`, and `verify-bundle` attach source provenance and prove - bundle integrity. -5. `template-check`, `template-pack`, `template-registry`, `template-lock`, - `template-attest`, `template-policy`, `template-release`, and - `template-install` verify starter-template supply-chain artifacts. -6. `casebook-check` proves public starter positive and blocked paths. -7. `adoption-check` and `release-check` aggregate first-run, documentation, - packaging, template, casebook, bundle, demo, launch, external evidence, and - distribution readiness. - -## Module Map - -- `falsiflow.core`: schema constants, CSV diagnostics, project validation, - derived-field computation, and the core audit decision. -- `falsiflow.cli`: command routing and CLI argument handling. -- `falsiflow.claim_check`, `doctor`, `quickstart`, `demo`, `browser_demo`, and - `local_server`: first-run and review workflows built on the core contract. -- `falsiflow.bundle`: source manifests, bundle creation, bundle verification, - and report rendering. -- `falsiflow.casebook_check`: public starter casebook proof summaries. -- `falsiflow.template_*`: template discovery, gallery, authoring checks, - packaging, registries, lockfiles, attestations, policies, releases, and - verified installs. -- `falsiflow.adoption` and `falsiflow.release`: adoption priority checks, - distribution checks, package surface checks, and release report rendering. -- `falsiflow.public_release`: static demo, publish handoff, and external - evidence/readiness artifacts. - -## Release Invariants - -- `claim_ready` only appears when validation, evidence diagnostics, source - policy, required fields, derived metrics, and acceptance rules agree. -- Placeholder values, duplicate evidence keys, malformed CSV headers, missing - source files, failed acceptance rules, unsafe archive paths, hash mismatches, - and unmanifested files must block readiness. -- Project configs are data. They do not execute Python, shell commands, - notebooks, plugins, or arbitrary code. -- JSON output is the machine contract; Markdown and HTML are review surfaces - derived from the same summaries. -- The integration-facing contract is summarized in - [falsiflow_data_contract.md](falsiflow_data_contract.md). -- CSV adapter profiles are summarized in - [falsiflow_adapter_profiles.md](falsiflow_adapter_profiles.md). -- Public starter positive and blocked paths are summarized in - [falsiflow_casebook_check.md](falsiflow_casebook_check.md). -- Full `release-check` must clean local build caches, build wheel and sdist, - inspect sdist contents, install the wheel in isolation, and run - installed-package `release-check`. - -## Extension Points - -Good extension work usually fits one of these surfaces: - -- Add an import adapter profile that converts a vendor, lab, or instrument - export into long-form evidence rows while preserving raw source files. -- Add a starter template with passing and blocked demo evidence, source files, - responsible-use language, and template release verification. -- Improve local browser review surfaces without changing the JSON contracts. -- Add schema-backed commands only when they have stable JSON output, - documentation, release-check coverage, and regression tests. -- Add release or external evidence checks that produce explicit repair actions - instead of silent warnings. - -Avoid extensions that make configs executable, hide evidence provenance, mark -warnings as ready, weaken bundle/template hash checks, or present `claim_ready` -as scientific proof, regulatory approval, safety proof, or commercial readiness. - -## Contributor Checklist - -Before opening a substantial change: - -- Read [../CONTRIBUTING.md](../CONTRIBUTING.md), - [../GOVERNANCE.md](../GOVERNANCE.md), and - [falsiflow_security_posture.md](falsiflow_security_posture.md). -- Update [falsiflow_mvp.md](falsiflow_mvp.md), this architecture note, and - [falsiflow_cli_reference.md](falsiflow_cli_reference.md) when public commands, - schemas, modules, or release invariants change. -- Run `python3 scripts/falsiflow_tests/regress_falsiflow_core.py`. -- Run `python3 scripts/falsiflow.py release-check --out-dir - data/falsiflow/release_check --force` before release-facing changes. diff --git a/docs/falsiflow_casebook_check.md b/docs/falsiflow_casebook_check.md deleted file mode 100644 index 675b4b8..0000000 --- a/docs/falsiflow_casebook_check.md +++ /dev/null @@ -1,107 +0,0 @@ -# Falsiflow Casebook Check - -`falsiflow casebook-check` turns the public casebook into a machine-verifiable -proof artifact. It runs every bundled starter template through the same -positive and placeholder evidence paths that a reviewer sees in -[falsiflow_public_casebook.md](falsiflow_public_casebook.md). - -The command is meant for release reviewers, launch reviewers, and maintainers -who need one concise answer to: "Do the public examples actually prove the -workflow, and do the placeholder examples still block?" - -## What It Proves - -- Positive demo evidence reaches `claim_ready=true` for each starter template. -- Placeholder evidence stays blocked and does not become `claim_ready`. -- Source provenance reaches `sources_ready` for the positive demo path. -- Evidence bundles reach `bundle_ready`. -- Bundle zip verification reaches `bundle_verified`. -- Each template leaves a nested `template_check.json` and human-readable - `template_check.md` for deeper review. - -`casebook_check_ready` means all checked starters have positive demos, -placeholder blockers, source-ready provenance, and verified bundles. It is not -scientific proof, safety proof, regulatory approval, or a statement that the -demo evidence is real experimental evidence. - -## Run It - -```bash -falsiflow casebook-check --out-dir data/falsiflow/casebook_check --force -``` - -The command writes: - -- `casebook_check.json` -- `casebook_check.md` -- `casebook_reviewer_replay.md` -- `casebook_reviewer_replay.sh` -- `casebook_reviewer_replay.ps1` -- `templates/